diff options
author | David Runge <dave@sleepmap.de> | 2021-02-09 00:21:54 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2021-02-09 00:21:54 +0100 |
commit | b1f6197d77e5d6790275b16b66626cf42469aa41 (patch) | |
tree | 0367a48d1c7a3c56b5fc4ec6be875769bf09f2c4 | |
parent | a2870794442c49162fe4b5cc4db6391c1f783a8a (diff) | |
download | dotfiles-b1f6197d77e5d6790275b16b66626cf42469aa41.tar.gz dotfiles-b1f6197d77e5d6790275b16b66626cf42469aa41.tar.bz2 dotfiles-b1f6197d77e5d6790275b16b66626cf42469aa41.tar.xz dotfiles-b1f6197d77e5d6790275b16b66626cf42469aa41.zip |
nvchecker: Add core repo config
.config/nvchecker/core.toml:
Add nvchecker config for Arch Linux' core repo.
-rw-r--r-- | .config/nvchecker/core.toml | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/.config/nvchecker/core.toml b/.config/nvchecker/core.toml new file mode 100644 index 0000000..52fcd2d --- /dev/null +++ b/.config/nvchecker/core.toml @@ -0,0 +1,70 @@ +[__config__] +oldver = "core.old.json" +newver = "core.new.json" + +[efibootmgr] +source = "git" +git = "https://github.com/rhboot/efibootmgr" +use_max_tag = true + +[efivar] +source = "git" +git = "https://github.com/rhboot/efivar" +use_max_tag = true + +[elfutils] +source = "git" +git = "https://sourceware.org/git/elfutils.git" +use_max_tag = true + +[expat] +source = "git" +git = "https://github.com/libexpat/libexpat/" +include_regex = "(R_)([\\d.*][_].*)" +use_max_tag = true + +[gdbm] +source = "regex" +regex = "gdbm-([\\d.]+)\\.tar\\.gz?" +url = "https://www.gnu.org.ua/software/gdbm/download.html" + +[libassuan] +source = "git" +git = "https://dev.gnupg.org/source/libassuan.git" +use_max_tag = true + +[libcap] +source = "git" +git = "https://git.kernel.org/pub/scm/libs/libcap/libcap.git" +use_max_tag = true + +[libcap-ng] +source = "git" +git = "https://github.com/stevegrubb/libcap-ng" +use_max_tag = true + +[libusb] +source = "git" +git = "https://github.com/libusb/libusb" +exclude_regex = "(v|)([\\d.]+)(-|)(dev|rc|RC|alpha|beta|bp)(-[\\d.]+|[\\d.]+|)" +use_max_tag = true + +[licenses] + +[ncurses] +source = "regex" +regex = "ncurses-([\\d.]+)\\.tar\\.gz?" +url = "https://ftp.gnu.org/pub/gnu/ncurses/" + +[npth] +source = "git" +git = "https://dev.gnupg.org/source/npth.git" +use_max_tag = true + +[pambase] + +[usbutils] +source = "git" +git = "https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git" +use_max_tag = true + |