From be96172e98b7289b032e1a87f13259c560920996 Mon Sep 17 00:00:00 2001 From: merakor Date: Fri, 24 Jul 2020 14:04:47 +0000 Subject: cpt: keep the file structure simpler FossilOrigin-Name: b548c2cdb7abfada1c7527565e5a58b2de5bbb6d620682454828cee7ae15b5db --- cpt | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 cpt (limited to 'cpt') diff --git a/cpt b/cpt deleted file mode 100755 index 9585330..0000000 --- a/cpt +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -ef -# shellcheck disable=1091 - -if command -v cpt-lib >/dev/null; then . cpt-lib; else . ./lib.sh; fi - -[ "$1" ] && { arg=$1; shift; } -case "$arg" in - --help|-h|'') - log "Carbs Packaging Tool" - set -- - for path in $(SEARCH_PATH=$PATH pkg_find cpt-* all -x); do - set -- "${path#*/cpt-}" "$@" - max=$((${#1} > max ? ${#1} : max)) - done - - for path; do - # These are the files to be ignored. - contains "lib readlink stat" "$path" && continue - - printf "%b->%b %-${max}s " "${color:+\033[1;31m}" "${color:+\033[m}" "${path#*/cpt-}" - sed -n 's/^# *//;2p' "$(command -v "cpt-$path")" - done | sort -uk1 >&2 - exit - ;; - - --version|-v|version) version ;; - - # Reserve these arguments for the following tools. - a) arg=alternatives ;; - b) arg=build ;; - c) arg=checksum ;; - d) arg=download ;; - f) arg=fetch ;; - i) arg=install ;; - l) arg=list ;; - r) arg=remove ;; - s) arg=search ;; - u) arg=update ;; -esac - -util=$(SEARCH_PATH=$PATH pkg_find "cpt-$arg"* "" -x 2>/dev/null) || - die "'cpt $arg' is not a valid command" - -"$util" "$@" -- cgit v1.2.3