From 8cfa2ef5cdda08c99c06410d0f1865cbe56c2d17 Mon Sep 17 00:00:00 2001 From: fsLeg Date: Wed, 1 Jan 2025 22:51:39 +0300 Subject: [PATCH] shadowsocks-rust: removed stray file from the master branch --- shadowsocks-rust/mkvendor.py | 65 ------------------------------------ 1 file changed, 65 deletions(-) delete mode 100755 shadowsocks-rust/mkvendor.py diff --git a/shadowsocks-rust/mkvendor.py b/shadowsocks-rust/mkvendor.py deleted file mode 100755 index 0786bd0..0000000 --- a/shadowsocks-rust/mkvendor.py +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env python3 - -""" -A script to vendor Rust crates - -Copyright 2024 Vladislav 'fsLeg' Borisov, Moscow, Russia -All rights reserved. - -Redistribution and use of this script, with or without modification, is -permitted provided that the following conditions are met: - -1. Redistributions of this script must retain the above copyright - notice, this list of conditions and the following disclaimer. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO - EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -""" - -from os import makedirs, walk -from os.path import join -from hashlib import sha256 -from glob import glob -import json -import tarfile - -def createVendor(vendordir, cratedir): - "We extract each crate, create an empty .cargo-ok file, calculate sha256 sum for every file inside the crate and crate file itself and put it into .cargo-checksum.json" - crate_path = "" - crate_files, crate_checksums = [], [] - makedirs(vendordir, exist_ok=True) - for crate in glob(f"{cratedir}/*.crate"): - with tarfile.open(crate, 'r:*') as archive: - archive.extractall(path=vendordir, filter='data') - crate_path = f"{vendordir}/{crate[crate.rfind('/')+1:].replace('.crate', '')}" - open(f"{crate_path}/.cargo-ok", "a").close() - for root, dirs, files in walk(f"{crate_path}"): - crate_files.extend(join(root, name) for name in files) - for file in crate_files: - with open(file, "rb") as opened_file: - crate_checksums.append(sha256(opened_file.read()).hexdigest()) - with open(f"{crate_path}/.cargo-checksum.json", "w") as crate_json: - with open(crate, 'rb') as crate_file: - json.dump({"files": dict(zip([file.replace(f"{crate_path}/", "") for file in crate_files], crate_checksums)), "package": sha256(crate_file.read()).hexdigest()}, crate_json) - crate_files, crate_checksums = [], [] - -if __name__ == "__main__": - import argparse - - parser = argparse.ArgumentParser( - prog="mkvendor.py", - description="This scripts properly vendors downloaded crates for offline builds" - ) - parser.add_argument("-d", "--directory", help="Directory of a Rust program to vendor crates for") - parser.add_argument("-c", "--crates", help="Directory with downloaded .crate files to vendor") - args = parser.parse_args() - - createVendor(f"{args.directory}/vendor", args.crates) -- 2.46.3