diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-30 05:48:56 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2019-12-30 05:48:56 -0500 |
commit | a2cc7e065abd8024392a60b00110073b11e019f1 (patch) | |
tree | 65fcf68d869c36156fecde391895b4f22b529017 /elvi/repology | |
parent | 107d068ea14529fdec7d9c0183fb094dd39952a1 (diff) | |
download | elvi-impersonators-a2cc7e065abd8024392a60b00110073b11e019f1.tar.gz |
Do-over...
Diffstat (limited to 'elvi/repology')
-rwxr-xr-x | elvi/repology | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/elvi/repology b/elvi/repology deleted file mode 100755 index 7e78c26..0000000 --- a/elvi/repology +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -# elvis: repology -- Search Linux distro package metadata with repology.org - -. surfraw || exit 1 - -w3_usage_hook() { - cat <<EOF -Usage: $w3_argv0 [options] [search words]... -Description: - Surfraw search Linux distro package metadata -Local options: - -p,-pkg,-package Search package names - -m,-maint Search maintainers by email address -By default, if there's an @ in the search term, a maintainer search is done, -otherwise a package search. -EOF - w3_global_usage -} - -w3_parse_option_hook() { - opt="$1" - optarg="$2" - case "$opt" in - -p|-pkg|-pac*) repo_target="/projects/" ;; - -m|-main*) repo_target="/maintainers/" ;; - *) return 1 ;; - esac - return 0 -} - -w3_config -w3_parse_args "$@" - -[ -z "$repo_target" ] && case "$w3_args" in - *@*) repo_target="/maintainers/" ;; - *) repo_target="/projects/" ;; -esac - -url="https://repology.org/${repo_target}?search=$( w3_url_of_arg $w3_args )"; -w3_browse_url "$url" |