Merge pull request #287812 from thiagokokada/improve-update-core-script
libretro: improve update_cores.py script
This commit is contained in:
commit
18d9aeed7d
3 changed files with 748 additions and 497 deletions
|
@ -48,13 +48,15 @@ let
|
||||||
getCore = repo: (lib.getAttr repo hashesFile);
|
getCore = repo: (lib.getAttr repo hashesFile);
|
||||||
|
|
||||||
getCoreSrc = repo:
|
getCoreSrc = repo:
|
||||||
(lib.pipe repo [
|
let
|
||||||
getCore
|
inherit (getCore repo) src fetcher;
|
||||||
(x: builtins.removeAttrs x [ "date" ])
|
fetcherFn = {
|
||||||
fetchFromGitHub
|
inherit fetchFromGitHub;
|
||||||
]);
|
}.${fetcher} or (throw "Unknown fetcher: ${fetcher}");
|
||||||
|
in
|
||||||
|
fetcherFn src;
|
||||||
|
|
||||||
getCoreDate = repo: (getCore repo).date or "unstable-1970-01-01";
|
getCoreVersion = repo: (getCore repo).version;
|
||||||
|
|
||||||
mkLibretroCore =
|
mkLibretroCore =
|
||||||
# Sometimes core name != repo name, so you may need to set them differently
|
# Sometimes core name != repo name, so you may need to set them differently
|
||||||
|
@ -67,7 +69,7 @@ let
|
||||||
{ core
|
{ core
|
||||||
, repo ? core
|
, repo ? core
|
||||||
, src ? (getCoreSrc repo)
|
, src ? (getCoreSrc repo)
|
||||||
, version ? (getCoreDate repo)
|
, version ? (getCoreVersion repo)
|
||||||
, ...
|
, ...
|
||||||
}@args:
|
}@args:
|
||||||
import ./mkLibretroCore.nix ({
|
import ./mkLibretroCore.nix ({
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#!nix-shell -I nixpkgs=./ -i python3 -p "python3.withPackages (ps: with ps; [ requests ])" -p git -p nix-prefetch-github
|
#!nix-shell -I nixpkgs=./ -i python3 -p "python3.withPackages (ps: with ps; [ ])" -p git -p nix-prefetch-github -p nix-prefetch-scripts
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
@ -8,8 +8,6 @@ import sys
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
import requests
|
|
||||||
|
|
||||||
SCRIPT_PATH = Path(__file__).absolute().parent
|
SCRIPT_PATH = Path(__file__).absolute().parent
|
||||||
HASHES_PATH = SCRIPT_PATH / "hashes.json"
|
HASHES_PATH = SCRIPT_PATH / "hashes.json"
|
||||||
GET_REPO_THREADS = int(os.environ.get("GET_REPO_THREADS", 8))
|
GET_REPO_THREADS = int(os.environ.get("GET_REPO_THREADS", 8))
|
||||||
|
@ -19,10 +17,13 @@ GET_REPO_THREADS = int(os.environ.get("GET_REPO_THREADS", 8))
|
||||||
# You may set `deep_clone`, `fetch_submodules` or `leave_dot_git` options to
|
# You may set `deep_clone`, `fetch_submodules` or `leave_dot_git` options to
|
||||||
# `True` and they're similar to `fetchgit` options. Also if for some reason you
|
# `True` and they're similar to `fetchgit` options. Also if for some reason you
|
||||||
# need to pin a specific revision, set `rev` to a commit.
|
# need to pin a specific revision, set `rev` to a commit.
|
||||||
# To generate the hash file for your new core, you can run `update_cores.py
|
# There is also a `fetcher` option that for now only supports `fetchFromGitHub`
|
||||||
# <core>`. The script needs to be run from the root of your `nixpkgs` clone.
|
# (see `get_repo_hash()`), but it may be extended in the future if there is a
|
||||||
# Do not forget to add your core to `cores.nix` file with the proper overrides
|
# need to support fetchers from other source hubs.
|
||||||
# so the core can be build.
|
# To generate the hash file for your new core, you can run
|
||||||
|
# `<nixpkgs>/pkgs/applications/emulators/retroarch/update_cores.py <core>`. Do
|
||||||
|
# not forget to add your core to `cores.nix` file with the proper overrides so
|
||||||
|
# the core can be build.
|
||||||
CORES = {
|
CORES = {
|
||||||
"2048": {"repo": "libretro-2048"},
|
"2048": {"repo": "libretro-2048"},
|
||||||
"atari800": {"repo": "libretro-atari800"},
|
"atari800": {"repo": "libretro-atari800"},
|
||||||
|
@ -128,30 +129,6 @@ def info(*msg):
|
||||||
print(*msg, file=sys.stderr)
|
print(*msg, file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
def get_rev_date_fetchFromGitHub(repo, owner, rev):
|
|
||||||
# https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#get-a-commit
|
|
||||||
url = f"https://api.github.com/repos/{owner}/{repo}/commits/{rev}"
|
|
||||||
headers = {
|
|
||||||
"Accept": "application/vnd.github+json",
|
|
||||||
"X-GitHub-Api-Version": "2022-11-28",
|
|
||||||
}
|
|
||||||
if token := os.environ.get("GITHUB_TOKEN"):
|
|
||||||
headers["Authorization"] = f"Bearer {token}"
|
|
||||||
r = requests.get(url, headers=headers)
|
|
||||||
|
|
||||||
try:
|
|
||||||
j = r.json()
|
|
||||||
except requests.exceptions.JSONDecodeError:
|
|
||||||
return None
|
|
||||||
|
|
||||||
date = j.get("commit", {}).get("committer", {}).get("date")
|
|
||||||
if date:
|
|
||||||
# Date format returned by API: 2023-01-30T06:29:13Z
|
|
||||||
return f"unstable-{date[:10]}"
|
|
||||||
else:
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def get_repo_hash_fetchFromGitHub(
|
def get_repo_hash_fetchFromGitHub(
|
||||||
repo,
|
repo,
|
||||||
owner="libretro",
|
owner="libretro",
|
||||||
|
@ -176,18 +153,24 @@ def get_repo_hash_fetchFromGitHub(
|
||||||
if rev:
|
if rev:
|
||||||
extra_args.append("--rev")
|
extra_args.append("--rev")
|
||||||
extra_args.append(rev)
|
extra_args.append(rev)
|
||||||
result = subprocess.run(
|
try:
|
||||||
["nix-prefetch-github", owner, repo, *extra_args],
|
result = subprocess.run(
|
||||||
check=True,
|
["nix-prefetch-github", owner, repo, "--meta", *extra_args],
|
||||||
capture_output=True,
|
check=True,
|
||||||
text=True,
|
capture_output=True,
|
||||||
)
|
text=True,
|
||||||
|
)
|
||||||
|
except subprocess.CalledProcessError as ex:
|
||||||
|
info(f"Error while updating {owner}/{repo}:", ex.stderr)
|
||||||
|
raise ex
|
||||||
|
|
||||||
j = json.loads(result.stdout)
|
j = json.loads(result.stdout)
|
||||||
date = get_rev_date_fetchFromGitHub(repo, owner, j["rev"])
|
return {
|
||||||
if date:
|
"fetcher": "fetchFromGitHub",
|
||||||
j["date"] = date
|
# Remove False values
|
||||||
# Remove False values
|
"src": {k: v for k, v in j["src"].items() if v},
|
||||||
return {k: v for k, v in j.items() if v}
|
"version": f"unstable-{j['meta']['commitDate']}",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def get_repo_hash(fetcher="fetchFromGitHub", **kwargs):
|
def get_repo_hash(fetcher="fetchFromGitHub", **kwargs):
|
||||||
|
@ -229,6 +212,7 @@ def main():
|
||||||
|
|
||||||
cores = {core: repo for core, repo in CORES.items() if core in cores_to_update}
|
cores = {core: repo for core, repo in CORES.items() if core in cores_to_update}
|
||||||
repo_hashes = get_repo_hashes(cores)
|
repo_hashes = get_repo_hashes(cores)
|
||||||
|
repo_hashes["!comment"] = "Generated with update_cores.py script, do not edit!"
|
||||||
info(f"Generating '{HASHES_PATH}'...")
|
info(f"Generating '{HASHES_PATH}'...")
|
||||||
with open(HASHES_PATH, "w") as f:
|
with open(HASHES_PATH, "w") as f:
|
||||||
f.write(json.dumps(dict(sorted(repo_hashes.items())), indent=4))
|
f.write(json.dumps(dict(sorted(repo_hashes.items())), indent=4))
|
||||||
|
|
Loading…
Reference in a new issue