From 5d8522cf2e5c661fb9250fb261e36b00de5dbe42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 26 Jul 2021 22:21:03 +0200 Subject: Add whereispatch script --- bin/whereispatch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 bin/whereispatch (limited to 'bin/whereispatch') diff --git a/bin/whereispatch b/bin/whereispatch new file mode 100755 index 0000000..1eea64a --- /dev/null +++ b/bin/whereispatch @@ -0,0 +1,20 @@ +#!/bin/sh + +# whereispatch -- print corresponding patch directory + +root=/home/john/patches + +case "$PWD" in +/usr/pkgsrc/*) dir=$(pwd | cut -d/ -f4,5) || dir= ;; +/usr/*src/*) dir=${PWD#/usr/} ;; +*) dir= +esac + +if [ -z "$dir" ]; then + echo "${0##*/}: could not determine package" 1>&2 + [ x"$1" = x"-i" ] || exit 1 + printf "package: " 1>&2 + read dir