From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 08/10] rust: Add script to automatically generate packages
Date: Tue, 01 Feb 2022 13:52:44 +0000 [thread overview]
Message-ID: <20220201135246.4096955-8-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20220201135246.4096955-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2489 bytes --]
This is a very tiring and repetitive process which is now automated in
this script which will find the latest version and create a LFS file for
it.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
tools/download-rust-crate | 82 +++++++++++++++++++++++++++++++++++++++
1 file changed, 82 insertions(+)
create mode 100755 tools/download-rust-crate
diff --git a/tools/download-rust-crate b/tools/download-rust-crate
new file mode 100755
index 000000000..bae6b60be
--- /dev/null
+++ b/tools/download-rust-crate
@@ -0,0 +1,82 @@
+#!/bin/bash
+
+set -o pipefail
+
+RUST_TEMPLATE="lfs/rust-rand"
+
+fetch_latest_version() {
+ local name="${1}"
+
+ if ! curl --silent "https://crates.io/api/v1/crates/${name}" | \
+ jq --raw-output .crate.max_stable_version; then
+ echo "${0}: Could not find the latest stable version of ${name}" >&2
+ return 1
+ fi
+}
+
+main() {
+ local name="${1}"
+ local version="${2}"
+
+ if [ -z "${name}" ]; then
+ echo "${0}: You need to pass a name of a crate" >&2
+ return 2
+ fi
+
+ if [ -z "${version}" ]; then
+ version="$(fetch_latest_version "${name}")"
+ if [ -z "${version}" ]; then
+ # error message has already been printed
+ return 1
+ fi
+ fi
+
+ # Compose download URL
+ local url="https://crates.io/api/v1/crates/${name}/${version}/download"
+ local download="$(mktemp)"
+
+ # Perform download
+ if ! curl -L "${url}" -o "${download}"; then
+ echo "${0}: Could not download ${name}-${version}" >&2
+ unlink "${download}"
+ return 1
+ fi
+
+ # Check if download is an orderly tar file
+ if ! tar tvf "${download}" &>/dev/null; then
+ echo "${0}: Download is not a tar file" >&2
+ unlink "${download}"
+ return 1
+ fi
+
+ # Hash the downloaded file
+ local md5sum="$(md5sum "${download}" | awk '{ print $1 }')"
+ if [ -z "${md5sum}" ]; then
+ echo "${0}: Could not hash download" >&2
+ unlink "${download}"
+ return 1
+ fi
+
+ local filename="cache/${name}-${version}.tar.gz"
+
+ # Move to final destination
+ if ! install -m 644 "${download}" "${filename}"; then
+ echo "${0}: Could not move downloaded file to ${filename}" >&2
+ unlink "${download}"
+ return 1
+ fi
+
+ # Remove download
+ unlink "${download}"
+
+ # Create a new LFS file
+ sed < "${RUST_TEMPLATE}" > "lfs/rust-${name}" \
+ -e "s/^VER.*/VER = ${version}/" \
+ -e "s/^THISAPP.*/THISAPP = ${name}-\$(VER)/" \
+ -e "s/^\$(DL_FILE)_MD5.*/\$(DL_FILE)_MD5 = ${md5sum}/"
+
+ echo "Done"
+ return 0
+}
+
+main "$@" || exit $?
--
2.30.2
next prev parent reply other threads:[~2022-02-01 13:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-01 13:52 [PATCH 01/10] make.sh: Set a good default for rustc flags Michael Tremer
2022-02-01 13:52 ` [PATCH 02/10] jq: New package Michael Tremer
2022-02-01 13:52 ` [PATCH 03/10] make.sh: Add some commands to build Rust packages Michael Tremer
2022-02-01 13:52 ` [PATCH 04/10] rust: List all files copied Michael Tremer
2022-02-01 13:52 ` [PATCH 05/10] rust: Avoid requiring development dependencies Michael Tremer
2022-02-01 13:52 ` [PATCH 06/10] rust: Add switch to skip bin check Michael Tremer
2022-02-01 13:52 ` [PATCH 07/10] rust: Enable more checks for when to install package files Michael Tremer
2022-02-01 13:52 ` Michael Tremer [this message]
2022-02-01 13:52 ` [PATCH 09/10] rust: Upgrade to nightly build from today Michael Tremer
2022-02-01 13:52 ` [PATCH 10/10] Config: Remove /root/.cargo Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220201135246.4096955-8-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox