[arch-projects] [dbscripts] [PATCH 1/2] db-move: Don't store filepaths as a string with whitespace splitting

2018-07-02 Thread Eli Schwartz via arch-projects
Use arrays via nameref, since makepkg does not support multidimensional arrays, and assigning to/retrieving from an array variable with an unknown name requires this. Requires bash 4.3, requires that architectures never contain chars that are invalid in a variable name -- which makepkg explicitly

[arch-projects] [dbscripts] [PATCH 2/2] hoist $tarch handling above $pkgname, since it is more efficient

2018-07-02 Thread Eli Schwartz via arch-projects
Signed-off-by: Eli Schwartz --- db-move | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db-move b/db-move index c4da5bf9..b6448898 100755 --- a/db-move +++ b/db-move @@ -95,10 +95,10 @@ for pkgbase in "${args[@]:2}"; do arch_svn rm --force -q

[arch-projects] [namcap] [PATCH] tests: pacman 5.1

2018-07-02 Thread Michael Straube via arch-projects
Signed-off-by: Michael Straube --- Namcap/tests/package/test_sodepends.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Namcap/tests/package/test_sodepends.py b/Namcap/tests/package/test_sodepends.py index 3a3d7b6..4188c35 100644 ---

[arch-projects] [namcap] [PATCH] Add missing support for sha224 sums

2018-07-02 Thread Michael Straube via arch-projects
Namcap does not support sha224 checksums but makepkg does. Add sha224 support. Signed-off-by: Michael Straube --- Namcap/rules/arrays.py | 2 +- Namcap/rules/extravars.py | 4 ++-- Namcap/rules/missingvars.py | 2 +- parsepkgbuild.sh| 5 + 4 files changed, 9