[pacman-dev] [GIT] The official pacman repository branch, master, updated. v5.2.1-25-g0428f621

2019-11-26 Thread Allan McRae
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, master has been updated via 0428f6213bcb5586d4ec9feb18af9a883c463793 (commit)

[pacman-dev] [PATCH 3/3] remove mention of file as dependency and from build system

2019-11-26 Thread Ethan Sommer
Signed-off-by: Ethan Sommer --- build-aux/edit-script.sh.in | 1 - configure.ac| 12 meson.build | 9 - scripts/makepkg.sh.in | 4 +--- 4 files changed, 1 insertion(+), 25 deletions(-) diff --git a/build-aux/edit-script.sh.in

[pacman-dev] [PATCH 1/3] libmakepkg: use extraction commands instead of file to find archive type

2019-11-26 Thread Ethan Sommer
Previously, to determine which command we should use to extract an archive, we would run file and match the output against our list of possible extraction commands Instead, run the archive through each extraction command's -t (--test) flag, if this succeeds then we know that the command is able

[pacman-dev] [PATCH 2/3] libmakepkg: use readelf instead of file for finding ELF file types

2019-11-26 Thread Ethan Sommer
Signed-off-by: Ethan Sommer --- scripts/libmakepkg/tidy/strip.sh.in | 26 -- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/scripts/libmakepkg/tidy/strip.sh.in b/scripts/libmakepkg/tidy/strip.sh.in index 1bd810f0..301d1989 100644 ---