diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-10-05 19:48:34 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2020-10-05 19:48:34 -0400 |
commit | 1c9c11572269278d4f5c318bbf0d65217ba52475 (patch) | |
tree | d2cf4fecc218ee53ed117761c2e9c098f24f1e3d | |
parent | 3e2df207cd83a4c5444db2eb0a1b807badecfa0d (diff) | |
download | pacman-static-1c9c11572269278d4f5c318bbf0d65217ba52475.tar.xz |
pacman-static: nvchecker port over to v2
Which for inexplicable reasons decided to inflict the ugliness of *.toml
on me. So yay for pointlessly reformatting every line in the file, and
making it twice as verbose and half as readable.
This would be livable if there were any rationale offered for why the
switch was made, but @lilydjwg has merely noted in the documentation "it
has been changed because I said so, here's a script to migrate your
config file and totally fail to produce something usable".
This limited config is so simple it doesn't actually break, fortunately.
-rw-r--r-- | nvchecker-deps.ini | 40 |
1 files changed, 26 insertions, 14 deletions
diff --git a/nvchecker-deps.ini b/nvchecker-deps.ini index 207311d..88f3d02 100644 --- a/nvchecker-deps.ini +++ b/nvchecker-deps.ini @@ -1,39 +1,51 @@ [__config__] -oldver = nvchecker-old.txt -newver = nvchecker-new.txt +oldver = "nvchecker-old.txt" +newver = "nvchecker-new.txt" [c-ares] -archpkg = c-ares +source = "archpkg" +archpkg = "c-ares" [nghttp2] -archpkg = libnghttp2 +source = "archpkg" +archpkg = "libnghttp2" [curl] -archpkg = curl +source = "archpkg" +archpkg = "curl" [ssl] -archpkg = openssl +source = "archpkg" +archpkg = "openssl" [zlib] -archpkg = zlib +source = "archpkg" +archpkg = "zlib" [xz] -archpkg = xz +source = "archpkg" +archpkg = "xz" [bzip] -archpkg = bzip2 +source = "archpkg" +archpkg = "bzip2" [zstd] -archpkg = zstd +source = "archpkg" +archpkg = "zstd" [libarchive] -archpkg = libarchive +source = "archpkg" +archpkg = "libarchive" [gpgerror] -archpkg = libgpg-error +source = "archpkg" +archpkg = "libgpg-error" [libassuan] -archpkg = libassuan +source = "archpkg" +archpkg = "libassuan" [gpgme] -archpkg = gpgme +source = "archpkg" +archpkg = "gpgme" |