From 1dabf5a8d511db458dd529588e57a8ed8185787a Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 28 May 2020 16:45:43 +0300 Subject: added new utilities, changed repository structure --- kiss-cargo-urlgen | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 kiss-cargo-urlgen (limited to 'kiss-cargo-urlgen') diff --git a/kiss-cargo-urlgen b/kiss-cargo-urlgen deleted file mode 100755 index 2105329..0000000 --- a/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 -- cgit v1.2.3