aboutsummaryrefslogtreecommitdiff
path: root/repo/kiss-cargo-urlgen
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-28 16:45:43 +0300
committerCem Keylan <cem@ckyln.com>2020-05-28 16:45:43 +0300
commit1dabf5a8d511db458dd529588e57a8ed8185787a (patch)
treec5905caa9b93fa4c63ee5e8e8dbdccd53d5aca53 /repo/kiss-cargo-urlgen
parent7bfa97d6fa2452d0517c4f820e44033b5a50cd50 (diff)
downloadcpt-extra-1dabf5a8d511db458dd529588e57a8ed8185787a.tar.gz
added new utilities, changed repository structure20200528
Diffstat (limited to 'repo/kiss-cargo-urlgen')
-rwxr-xr-xrepo/kiss-cargo-urlgen17
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/kiss-cargo-urlgen b/repo/kiss-cargo-urlgen
new file mode 100755
index 0000000..2105329
--- /dev/null
+++ b/repo/kiss-cargo-urlgen
@@ -0,0 +1,17 @@
+#!/bin/sh
+# Create static cargo sources for Rust packages
+
+# Copyright (C) 2020 - Dylan Araps.
+# Copyright (C) 2020 - Cem Keylan.
+# Distributed under the terms of the MIT License
+
+case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [crate+ver] [crate+ver]"; exit 0 ; esac
+
+# We convert the name-version seperator from '+' to '-' to
+# avoid issues that may arise from version numbers that include
+# a '-'.
+
+for crate in "$@"; do
+ printf 'https://static.crates.io/crates/%s/%s.crate vendor\n' \
+ "${crate%+*}" "$(echo "$crate" | sed 's/+/-/')"
+done