diff options
author | David Runge <dave@sleepmap.de> | 2022-05-01 12:01:19 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-05-01 16:18:09 +0200 |
commit | 3557341ad20d3c80c62436277fca5ef505ed2c33 (patch) | |
tree | 652bd50b1cf7504ea728573620f6aae4904e89f5 | |
parent | 21dc84753eae17d48029c8aa8579da2c62c48bbb (diff) | |
download | dotfiles-3557341ad20d3c80c62436277fca5ef505ed2c33.tar.gz dotfiles-3557341ad20d3c80c62436277fca5ef505ed2c33.tar.bz2 dotfiles-3557341ad20d3c80c62436277fca5ef505ed2c33.tar.xz dotfiles-3557341ad20d3c80c62436277fca5ef505ed2c33.zip |
nvchecker: Add packages for core
.config/nvchecker/core.toml:
Add audit, gnupg, libaio and libsasl
-rw-r--r-- | .config/nvchecker/core.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.config/nvchecker/core.toml b/.config/nvchecker/core.toml index ff8f87c..6912fb8 100644 --- a/.config/nvchecker/core.toml +++ b/.config/nvchecker/core.toml @@ -2,6 +2,11 @@ oldver = "core.old.json" newver = "core.new.json" +[audit] +source = "git" +git = "https://github.com/linux-audit/audit-userspace" +use_max_tag = true + [efibootmgr] source = "git" git = "https://github.com/rhboot/efibootmgr" @@ -28,6 +33,19 @@ source = "regex" regex = "gdbm-([\\d.]+)\\.tar\\.gz?" url = "https://www.gnu.org.ua/software/gdbm/download.html" +[gnupg] +source = "git" +git = "https://dev.gnupg.org/source/gnupg.git" +# NOTE: stuck on gnupg < 2.3 until https://gitlab.archlinux.org/archlinux/archlinux-keyring/-/issues/163 is resolved +include_regex = "(gnupg)-(2.2.[\\d.*]+)" +use_max_tag = true + +[libaio] +source = "git" +git = "https://pagure.io/libaio" +include_regex = "(libaio)-([\\d.*]+)" +use_max_tag = true + [libassuan] source = "git" git = "https://dev.gnupg.org/source/libassuan.git" @@ -61,6 +79,11 @@ source = "git" git = "https://github.com/the-tcpdump-group/libpcap" use_max_tag = true +[libsasl] +source = "git" +git = "https://github.com/cyrusimap/cyrus-sasl" +use_max_tag = true + [libusb] source = "git" git = "https://github.com/libusb/libusb" |