- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
32 lines
924 B
Python
Executable File
32 lines
924 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
"""
|
|
Download the lockfile.yml produced by a CI pipeline, specified by the GitLab
|
|
server, full name of the meta-arm project, and the refspec that was executed.
|
|
|
|
For example,
|
|
$ ./download-lockfile.py https://gitlab.com/ rossburton/meta-arm master
|
|
|
|
SPDX-FileCopyrightText: Copyright 2023 Arm Limited and Contributors
|
|
SPDX-License-Identifier: GPL-2.0-only
|
|
"""
|
|
|
|
import argparse
|
|
import gitlab
|
|
import io
|
|
import zipfile
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("server", help="GitLab server name")
|
|
parser.add_argument("project", help="meta-arm project name")
|
|
parser.add_argument("refspec", help="Branch/commit")
|
|
args = parser.parse_args()
|
|
|
|
gl = gitlab.Gitlab(args.server)
|
|
project = gl.projects.get(args.project)
|
|
artefact = project.artifacts.download(ref_name=args.refspec, job="update-repos")
|
|
|
|
z = zipfile.ZipFile(io.BytesIO(artefact))
|
|
z.extract("lockfile.yml")
|
|
print("Fetched lockfile.yml")
|