blob: 94609a5f30064917a4f9386201429b2323ee1100 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
# xq [-R] PKGS... - query information about XBPS package
totop() {
sed -n 's/^'"$1"'/&/p;tk;H;:k;${x;s/\n//;p};d'
}
BRANCH=$(git symbolic-ref -q --short HEAD 2>/dev/null)
XBPS_DISTDIR="$(xdistdir 2>/dev/null)" || XBPS_DISTDIR=.
ADDREPO="
--repository=$XBPS_DISTDIR/hostdir/binpkgs/$BRANCH
--repository=$XBPS_DISTDIR/hostdir/binpkgs/$BRANCH/nonfree
--repository=$XBPS_DISTDIR/hostdir/binpkgs/$BRANCH/multilib
--repository=$XBPS_DISTDIR/hostdir/binpkgs/$BRANCH/multilib/nonfree
--repository=$XBPS_DISTDIR/hostdir/binpkgs/$BRANCH/debug
--repository=$XBPS_DISTDIR/hostdir/binpkgs
--repository=$XBPS_DISTDIR/hostdir/binpkgs/nonfree
--repository=$XBPS_DISTDIR/hostdir/binpkgs/multilib
--repository=$XBPS_DISTDIR/hostdir/binpkgs/multilib/nonfree
--repository=$XBPS_DISTDIR/hostdir/binpkgs/debug
"
R=
if [ "$1" = -R ]; then
R=-R
shift
fi
for pkg; do
xbps-query $ADDREPO -S "$pkg" |
totop short_desc |
totop pkgver
xbps-query $ADDREPO $R -x "$pkg" | sed 's/^/ /;1s/^/depends:\n/'
REVDEP=$(xbps-query $R -X "$pkg" | sed 's/^/ /' )
if [ "$REVDEP" ]; then
printf "%s\n" "required-by:" "$REVDEP"
fi
done
|