-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish crate bob-nvim 2.9.0 from #1667
- Loading branch information
github-actions
committed
Apr 16, 2024
0 parents
commit 9c3aef1
Showing
11 changed files
with
1,024 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[target.x86_64-unknown-freebsd] | ||
image = "ghcr.io/cargo-prebuilt/cross-openssl:x86_64-unknown-freebsd" | ||
|
||
[target.x86_64-unknown-netbsd] | ||
image = "ghcr.io/cargo-prebuilt/cross-openssl:x86_64-unknown-netbsd" | ||
|
||
[target.x86_64-unknown-illumos] | ||
image = "ghcr.io/cargo-prebuilt/cross-openssl:x86_64-unknown-illumos" | ||
|
||
[target.powerpc64-unknown-linux-gnu] | ||
image = "ghcr.io/cargo-prebuilt/cross-openssl:powerpc64-unknown-linux-gnu" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[info] | ||
id = "bob-nvim" | ||
git = "https://github.com/MordechaiHadad/bob" | ||
unsupported = [ | ||
"x86_64-unknown-freebsd", | ||
"riscv64gc-unknown-linux-gnu", | ||
"s390x-unknown-linux-gnu", | ||
"aarch64-pc-windows-msvc", | ||
"x86_64-unknown-netbsd", | ||
"x86_64-unknown-illumos", | ||
"powerpc64-unknown-linux-gnu", | ||
"powerpc64le-unknown-linux-gnu", | ||
] | ||
bins = ["bob"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
untrusted comment: minisign public key 51FF575479E09402 | ||
RWQClOB5VFf/UXuhG+697EOSWlSyIPWjyehJpepjgQ7qsLnZxGQzDnqA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
RWQClOB5VFf/UXuhG+697EOSWlSyIPWjyehJpepjgQ7qsLnZxGQzDnqA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
import concurrent.futures | ||
import glob | ||
import json | ||
import sys | ||
import tomllib | ||
import urllib.request | ||
from typing import Any | ||
|
||
stable_index: str = "/releases/download/stable-index/" | ||
banned_index: str = "/releases/download/banned-index/" | ||
crates_io_index: str = "https://index.crates.io/" | ||
crates_io_cdn: str = "https://static.crates.io/crates/{CRATE}/{CRATE}-{VERSION}.crate" | ||
|
||
|
||
def get_index_url(crate: str) -> str: | ||
crate: str = crate.lower() | ||
length: int = len(crate) | ||
url: str = crates_io_index | ||
if 1 <= length <= 2: | ||
url += f"{length}/{crate}" | ||
elif length == 3: | ||
url += f"3/{crate[0]}/{crate}" | ||
else: | ||
url += f"{crate[0:2]}/{crate[2:4]}/{crate}" | ||
return url | ||
|
||
|
||
def get_newest_crate(versions: list[Any]) -> Any: | ||
latest: Any | None = None | ||
store = (-1, -1, -1) | ||
for v in versions: | ||
if "-" in v["vers"]: | ||
pass | ||
elif not v["yanked"]: | ||
semver = v["vers"].split(".") | ||
semver = (int(semver[0]), int(semver[1]), int(semver[2])) | ||
if semver[0] > store[0]: | ||
store = semver | ||
latest = v | ||
elif semver[0] == store[0]: | ||
if semver[1] > store[1]: | ||
store = semver | ||
latest = v | ||
elif semver[1] == store[1]: | ||
if semver[2] > store[2]: | ||
store = semver | ||
latest = v | ||
return latest | ||
|
||
|
||
def process( | ||
filename: str, pull_request: bool, allow: list[str], server_url: str, repo: str | ||
): | ||
with open(filename, "rb") as file: | ||
crate_toml = tomllib.load(file) | ||
crate: str = crate_toml["info"]["id"] | ||
|
||
if (not pull_request) or (len(allow) == 0 or crate in allow): | ||
if not pull_request: | ||
try: | ||
res = urllib.request.urlopen( | ||
f"{server_url}/{repo}{banned_index}{crate}" | ||
) | ||
if res.status == 200: | ||
return None | ||
except urllib.error.HTTPError: | ||
pass | ||
|
||
version: str = "" | ||
try: | ||
res = urllib.request.urlopen(f"{server_url}/{repo}{stable_index}{crate}") | ||
version = res.read().decode("utf-8").strip() | ||
except urllib.error.HTTPError: | ||
pass | ||
|
||
# Get from index.crates.io | ||
req = urllib.request.Request( | ||
get_index_url(crate), | ||
data=None, | ||
headers={"User-Agent": f"cargo-prebuilt_bot ({server_url}/{repo})"}, | ||
) | ||
res = urllib.request.urlopen(req) | ||
crate_infos_raw: str = ( | ||
res.read().decode("utf-8") if res and res.status == 200 else sys.exit(3) | ||
) | ||
crate_infos_raw: list[str] = crate_infos_raw.strip().split("\n") | ||
|
||
crate_infos: list[Any] = [] | ||
for c in crate_infos_raw: | ||
crate_infos.append(json.loads(c)) | ||
|
||
latest_crate: Any = get_newest_crate(crate_infos) | ||
|
||
if pull_request or version != latest_crate["vers"]: | ||
return { | ||
"crate": crate, | ||
"version": latest_crate["vers"], | ||
"dl": crates_io_cdn.replace("{CRATE}", crate).replace( | ||
"{VERSION}", latest_crate["vers"] | ||
), | ||
"checksum": latest_crate["cksum"], | ||
"file": filename, | ||
} | ||
|
||
return None | ||
|
||
|
||
def main(pull_request: str, duplicate: str, server_url: str, repo: str): | ||
pull_request: bool = True if pull_request.lower() == "true" else False | ||
duplicate: bool = True if duplicate.lower() == "true" else False | ||
|
||
if not pull_request and duplicate: | ||
print("{}") | ||
return | ||
|
||
if pull_request: | ||
with open("./pr/_allowlist") as file: | ||
allow: str = file.readline().strip() | ||
else: | ||
allow: str = "" | ||
allow: list[str] = allow.split(",") | ||
|
||
with concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor: | ||
to_update_raw = executor.map( | ||
lambda f: process(f, pull_request, allow, server_url, repo), | ||
glob.glob("./crates/*.toml"), | ||
) | ||
|
||
to_update = [] | ||
for i in to_update_raw: | ||
if i is not None: | ||
to_update.append(i) | ||
|
||
x = {"include": []} | ||
for c in to_update: | ||
x["include"].append(c) | ||
|
||
if len(x["include"]) == 0: | ||
print("{}") | ||
else: | ||
print(json.dumps(x)) | ||
|
||
|
||
if __name__ == "__main__": | ||
argv = sys.argv | ||
main(argv[1], argv[2], argv[3], argv[4]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import hashlib | ||
import json | ||
import os | ||
import stat | ||
import sys | ||
import tarfile | ||
|
||
|
||
def main(target, build_path, bins): | ||
bins = bins.split(",") | ||
|
||
hash_obj = { | ||
"bins": [], | ||
"archive": [], | ||
} | ||
|
||
ending = "" | ||
if "windows" in target: | ||
ending = ".exe" | ||
|
||
with tarfile.open(target + ".tar.gz", "w:gz") as archive: | ||
for b in bins: | ||
basename = b + ending | ||
path = build_path + "/" + basename | ||
|
||
# Permission Fix | ||
if "windows" not in target: | ||
st = os.stat(path) | ||
os.chmod(path, st.st_mode | stat.S_IEXEC) | ||
|
||
# Hashes | ||
with open(path, "rb") as file: | ||
file1 = file.read() | ||
h = hashlib.sha256(file1).hexdigest() | ||
hash_obj["bins"].append({"bin": basename, "hash": h, "type": "sha256"}) | ||
h = hashlib.sha512(file1).hexdigest() | ||
hash_obj["bins"].append({"bin": basename, "hash": h, "type": "sha512"}) | ||
h = hashlib.sha3_256(file1).hexdigest() | ||
hash_obj["bins"].append( | ||
{"bin": basename, "hash": h, "type": "sha3_256"} | ||
) | ||
h = hashlib.sha3_512(file1).hexdigest() | ||
hash_obj["bins"].append( | ||
{"bin": basename, "hash": h, "type": "sha3_512"} | ||
) | ||
|
||
# Add to archive | ||
archive.add(path, basename) | ||
|
||
with open(target + ".tar.gz", "rb") as file: | ||
file1 = file.read() | ||
h = hashlib.sha256(file1).hexdigest() | ||
hash_obj["archive"].append({"hash": h, "type": "sha256"}) | ||
h = hashlib.sha512(file1).hexdigest() | ||
hash_obj["archive"].append({"hash": h, "type": "sha512"}) | ||
h = hashlib.sha3_256(file1).hexdigest() | ||
hash_obj["archive"].append({"hash": h, "type": "sha3_256"}) | ||
h = hashlib.sha3_512(file1).hexdigest() | ||
hash_obj["archive"].append({"hash": h, "type": "sha3_512"}) | ||
|
||
with open(target + ".hashes.json", "w") as file: | ||
file.write(json.dumps(hash_obj)) | ||
|
||
|
||
if __name__ == "__main__": | ||
argv = sys.argv | ||
main(argv[1], argv[2], argv[3]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import sys | ||
import tomllib | ||
|
||
|
||
def main(item: str): | ||
with open("Cargo.toml", "rb") as file: | ||
cargo_toml = tomllib.load(file) | ||
package = cargo_toml["package"] | ||
|
||
if item in package: | ||
print(package[item].replace("'", "%%SINGLE_QUOTE%%")) | ||
else: | ||
print("") | ||
|
||
|
||
if __name__ == "__main__": | ||
argv = sys.argv | ||
main(argv[1]) |
Oops, something went wrong.