aboutsummaryrefslogtreecommitdiff
path: root/repo/kiss-cargo-urlgen
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-07-25 11:20:55 +0300
committerCem Keylan <cem@ckyln.com>2020-07-25 11:20:55 +0300
commit47a3723632b82a0d3caf79dbe8ada1eae60dd976 (patch)
tree2c41b08502e35378af35fcda7622d3eaab776420 /repo/kiss-cargo-urlgen
parenta80ec35b458ad1616758aff8257d42b3b51ed17e (diff)
downloadcpt-extra-47a3723632b82a0d3caf79dbe8ada1eae60dd976.tar.gz
rename to cpt-extra
Diffstat (limited to 'repo/kiss-cargo-urlgen')
-rwxr-xr-xrepo/kiss-cargo-urlgen17
1 files changed, 0 insertions, 17 deletions
diff --git a/repo/kiss-cargo-urlgen b/repo/kiss-cargo-urlgen
deleted file mode 100755
index 2105329..0000000
--- a/repo/kiss-cargo-urlgen
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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