about summary refs log tree commit diff
path: root/xmypkgs
blob: 3ffae189c2ba13f66627c2aa30a0b7dd94ad4fa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# xmypkgs [EMAIL] - list all pkgs maintained by you (or EMAIL)

XDISTDIR="$(xdistdir)" || exit 1
EMAIL=${1-$(git -C "$XDISTDIR" config user.email)}
if [ -z "$EMAIL" ]; then
	echo "who are you? tell your email address." 2>&1
	exit 1
fi

git -C "$XDISTDIR" grep -l -F "<$EMAIL>" -- 'srcpkgs/*/template' |
	cut -d/ -f2 |
	sort