blob: 9d3571ce0ca633c17247b72f04ed80a5f237ae8c (
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
|
#!/bin/sh
# xrecent [REPOURL|XBPS_ARCH] - list packages in repo ordered by build date
case "$(xbps-uhelper arch)" in
*-musl)
repo=http://muslrepo.voidlinux.eu/current/;;
*)
repo=http://repo.voidlinux.eu/current/;;
esac
case "$1" in
*/*)
repo=$1;;
*-musl)
repo=http://muslrepo.voidlinux.eu/current/
export "XBPS_ARCH=$1";;
?*)
repo=http://repo.voidlinux.eu/current/
export "XBPS_ARCH=$1";;
esac
xbps-query -M -i -R --repository=$repo -p build-date -s '' |
sed 's/: / /' |
sort -t ' ' -k 2 |
column -s ' ' -t
|