forked from kiss-community/kiss
kiss-outdated: updates (#68)
* kiss-outdated: log if no remote version is found * kiss-outdated: update package names
This commit is contained in:
parent
031179e1b1
commit
af2335c55e
@ -26,14 +26,27 @@ EOF
|
||||
)
|
||||
|
||||
case $remote in
|
||||
age)
|
||||
remote=age-encryption
|
||||
;;
|
||||
|
||||
baseinit|baselayout|kiss)
|
||||
remote=-
|
||||
;;
|
||||
|
||||
|
||||
bat)
|
||||
remote=bat-cat
|
||||
;;
|
||||
|
||||
clang)
|
||||
remote=llvm
|
||||
;;
|
||||
|
||||
ctags)
|
||||
remote=ctags-unclassified
|
||||
;;
|
||||
|
||||
dash)
|
||||
remote=dash-shell
|
||||
;;
|
||||
@ -46,11 +59,19 @@ EOF
|
||||
remote=dsp-audio-processing
|
||||
;;
|
||||
|
||||
dust)
|
||||
remote=du-dust
|
||||
;;
|
||||
|
||||
emacs-nox)
|
||||
# TODO [community]: Make default emacs no x11?
|
||||
remote=emacs
|
||||
;;
|
||||
|
||||
go-ipfs)
|
||||
remote=ipfs
|
||||
;;
|
||||
|
||||
fd)
|
||||
remote=fd-find
|
||||
;;
|
||||
@ -124,15 +145,31 @@ EOF
|
||||
remote=fonts:liberation
|
||||
;;
|
||||
|
||||
libjpeg)
|
||||
remote=ijg-libjpeg
|
||||
;;
|
||||
|
||||
libmupdf | libxaw3d)
|
||||
# TODO [community]: Rename packages?
|
||||
remote=${remote##lib}
|
||||
;;
|
||||
|
||||
libnghttp2)
|
||||
remote=nghttp2
|
||||
;;
|
||||
|
||||
libportaudio2)
|
||||
remote=portaudio
|
||||
;;
|
||||
|
||||
libseat)
|
||||
remote=seatd
|
||||
;;
|
||||
|
||||
libzmq)
|
||||
remote=zeromq
|
||||
;;
|
||||
|
||||
links2)
|
||||
# TODO [community]: Rename package?
|
||||
remote=links
|
||||
@ -142,6 +179,10 @@ EOF
|
||||
remote=linux
|
||||
;;
|
||||
|
||||
lpeg)
|
||||
remote=lua:lpeg
|
||||
;;
|
||||
|
||||
lux)
|
||||
remote=lux-brightness-ventto
|
||||
;;
|
||||
@ -157,6 +198,10 @@ EOF
|
||||
remote=netsurf
|
||||
;;
|
||||
|
||||
noto-emoji)
|
||||
remote=fonts:noto-emoji
|
||||
;;
|
||||
|
||||
openjpeg2)
|
||||
# TODO [community]: Rename package?
|
||||
remote=openjpeg
|
||||
@ -166,10 +211,22 @@ EOF
|
||||
remote=oil-shell
|
||||
;;
|
||||
|
||||
pass)
|
||||
remote=password-store
|
||||
;;
|
||||
|
||||
pinentry-dmenu)
|
||||
remote=pinentry-dmenu-cemkeylan
|
||||
;;
|
||||
|
||||
pybind11)
|
||||
remote=python:pybind11
|
||||
;;
|
||||
|
||||
python-psutil)
|
||||
remote=python:psutil
|
||||
;;
|
||||
|
||||
pyqt5)
|
||||
# TODO [community]: Rename package?
|
||||
remote=python-qt
|
||||
@ -184,7 +241,7 @@ EOF
|
||||
;;
|
||||
|
||||
rage)
|
||||
remote=rage-encryption-tool
|
||||
remote=rage-encryption
|
||||
;;
|
||||
|
||||
sane)
|
||||
@ -199,6 +256,10 @@ EOF
|
||||
remote=fusefs:sshfs
|
||||
;;
|
||||
|
||||
slides)
|
||||
remote=slides-presentation-tool
|
||||
;;
|
||||
|
||||
surf)
|
||||
remote=surf-browser
|
||||
;;
|
||||
@ -211,18 +272,34 @@ EOF
|
||||
remote=sway
|
||||
;;
|
||||
|
||||
tea)
|
||||
remote=gitea-tea
|
||||
;;
|
||||
|
||||
terminus-font)
|
||||
remote=fonts:terminus
|
||||
;;
|
||||
|
||||
tiv)
|
||||
remote=tiv-unclassified
|
||||
remote=tiv-terminalimageviewer
|
||||
;;
|
||||
|
||||
tree)
|
||||
remote=tree-steve-baker
|
||||
;;
|
||||
|
||||
ttf-font-awesome)
|
||||
remote=font-awesome6
|
||||
;;
|
||||
|
||||
unifont)
|
||||
remote=fonts:unifont
|
||||
;;
|
||||
|
||||
vis)
|
||||
remote=vis-editor
|
||||
;;
|
||||
|
||||
webkit2gtk)
|
||||
# TODO [community]: Rename package?
|
||||
remote=webkitgtk
|
||||
@ -281,8 +358,9 @@ get_outdated() {
|
||||
repology_name "$pkg"
|
||||
repology_version "$remote" || continue
|
||||
|
||||
case $remote_ver in *", $ver"* | *"$ver,"* | "$ver" | - | '')
|
||||
continue
|
||||
case $remote_ver in
|
||||
*", $ver"* | *"$ver,"* | "$ver" | '') continue ;;
|
||||
-) printf '%-30s no remote version found\n' "$pkg" >&2; continue ;;
|
||||
esac
|
||||
|
||||
printf '%-30s %s -> %s\n' "$pkg" "$ver" "$remote_ver"
|
||||
|
Loading…
Reference in New Issue
Block a user