From 5022d91c9b4dad19dab9f1139bdea97a26617ebc Mon Sep 17 00:00:00 2001 From: Varac Date: Mon, 26 Jun 2017 14:31:26 +0200 Subject: Add show-versions-in-repo.sh --- debian/show-versions-in-repo.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 debian/show-versions-in-repo.sh (limited to 'debian') diff --git a/debian/show-versions-in-repo.sh b/debian/show-versions-in-repo.sh new file mode 100755 index 0000000..c33444d --- /dev/null +++ b/debian/show-versions-in-repo.sh @@ -0,0 +1,20 @@ +#!/bin/sh + + +usage() { + echo "$0 " + echo + echo "Show which package versions are included in which debian repo" + echo "Example: $0 platform jessie snapshots" + exit 1 +} + +repo="$1" +dist="$2" +component="$3" + +[ -z "$repo" ] && usage +[ -z "$dist" ] && usage +[ -z "$component" ] && usage + +curl -s "http://deb.leap.se/${repo}/dists/${dist}/${component}/binary-amd64/Packages" | grep -A2 '^Package' | egrep -v '^(Architecture|Source)' | tr '\n' ' ' | sed 's/--/\n/g' | sed 's/^ *//' -- cgit v1.2.3