diff options
author | David Runge <dave@sleepmap.de> | 2022-05-01 12:18:05 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-05-01 16:18:12 +0200 |
commit | 742147f3274c71294ee99f19305a15ee47be1ca4 (patch) | |
tree | 0978727f2b77f022e304b1c7729bc98266b4bac7 | |
parent | d1adc178f4cda7a955d7934234ff44526abe8cb3 (diff) | |
download | dotfiles-742147f3274c71294ee99f19305a15ee47be1ca4.tar.gz dotfiles-742147f3274c71294ee99f19305a15ee47be1ca4.tar.bz2 dotfiles-742147f3274c71294ee99f19305a15ee47be1ca4.tar.xz dotfiles-742147f3274c71294ee99f19305a15ee47be1ca4.zip |
nvchecker: Add packages for extra
.config/nvchecker/extra.toml:
Add archinstall, cyrus-sasl, libnitrokey, openmpi, vde2 and update confi
for vlc to use git repo.
-rw-r--r-- | .config/nvchecker/extra.toml | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/.config/nvchecker/extra.toml b/.config/nvchecker/extra.toml index 72c0b86..afec2b3 100644 --- a/.config/nvchecker/extra.toml +++ b/.config/nvchecker/extra.toml @@ -47,6 +47,11 @@ source = "git" git = "https://github.com/archlinux/arch-install-scripts" use_max_tag = true +[archinstall] +source = "git" +git = "https://gitlab.archlinux.org/archlinux/archinstall" +use_max_tag = true + [archiso] source = "git" git = "https://gitlab.archlinux.org/archlinux/archiso" @@ -74,6 +79,11 @@ source = "git" git = "https://github.com/acoustid/chromaprint" use_max_tag = true +[cyrus-sasl] +source = "git" +git = "https://github.com/cyrusimap/cyrus-sasl" +use_max_tag = true + [ddrescue] source = "regex" regex = "ddrescue-([\\d.]+)\\.tar\\.lz?" @@ -202,6 +212,11 @@ source = "git" git = "https://github.com/MusicPlayerDaemon/libmpdclient" use_max_tag = true +[libnitrokey] +source = "git" +git = "https://github.com/nitrokey/libnitrokey" +use_max_tag = true + [libopenmpt] source = "git" git = "https://github.com/OpenMPT/openmpt/" @@ -289,6 +304,12 @@ source = "git" git = "https://git.code.sf.net/p/opencore-amr/code" use_max_tag = true +[openmpi] +source = "git" +git = "https://github.com/open-mpi/ompi" +exclude_regex = "(v|)([\\d.]+)(-|)(rc|RC|alpha|beta)(-[\\d.]+|[\\d.]+|)" +use_max_tag = true + [ostree] source = "git" git = "https://github.com/ostreedev/ostree" @@ -386,10 +407,17 @@ source = "regex" regex = "tinycdb-([\\d.]+)\\.tar\\.gz?" url = "https://www.corpit.ru/mjt/tinycdb/" +[vde2] +# NOTE: blocked by https://github.com/virtualsquare/vde-2/issues/26 +# source = "git" +# git = "https://github.com/virtualsquare/vde-2" +# use_max_tag = true + [vlc] -source = "regex" -regex = "vlc-([\\d.]+)\\.tar\\.xz?" -url = "https://download.videolan.org/vlc/last/" +source = "git" +git = "https://code.videolan.org/videolan/vlc/" +exclude_regex = "(v|)([\\d.]+)(-|)(dev|rc|RC|alpha|beta|bp)(-[\\d.]+|[\\d.]+|)" +use_max_tag = true [webrtc-audio-processing] source = "git" @@ -416,3 +444,4 @@ source = "regex" regex = "zita-resampler-([\\d.]+)\\.tar\\.bz2?" url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html" + |