[pacman-dev] [GIT] The official pacman repository branch, master, updated. v5.0.1-84-gad27aa3
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 ad27aa30fbcac7a07586072d29d3db50009994e9 (commit) via e2b4e220bcb6d3770716fb000953aa729ed07989 (commit) via 0c99eabd50752310f42ec808c8734a338122ec86 (commit) via 2e76c184aac74c4848fa5ee092fe54c9954c4054 (commit) via d590a45795b30a14cdb697754749c85907053570 (commit) via 3190b87b65b038ce31a37f99fb058f3160007cbb (commit) via 87ee9693bd70ad5b17b9542fa67a1a58cd0f7c29 (commit) via 05e1b8de1a96526c4e59745e7e4dc4a83a6383dd (commit) from 0d2ba870c96d1b4b3d5fabfabe303bc6b1c989fd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ad27aa30fbcac7a07586072d29d3db50009994e9 Author: Allan McRae <allan@archlinux.org> Date: Tue Oct 11 15:37:13 2016 +1000 Ensure makepkg-wrapper is built after makepkg makepkg-wrapper did not get rebuilt if makepkg was regenerated due to library changes. Ensure makepkg-wrapper is always generated and linked any time makepkg changes. Signed-off-by: Allan McRae <allan@archlinux.org> commit e2b4e220bcb6d3770716fb000953aa729ed07989 Author: Christian Hesse <mail@eworm.de> Date: Tue Oct 4 10:21:11 2016 +0200 lint_pkgbuild/pkgname: pkgname is not allowed to be empty We checked for empty array elements, but did not catch empty array. Add a check for that case as well. Signed-off-by: Christian Hesse <mail@eworm.de> Signed-off-by: Allan McRae <allan@archlinux.org> commit 0c99eabd50752310f42ec808c8734a338122ec86 Author: Allan McRae <allan@archlinux.org> Date: Sun Oct 9 22:52:27 2016 +1000 Remove contrib The contrib directory takes too much of the pacman developer's limited time, which could be better spent developing and reviewing patches for the primary projects. The community can pick this up in a separate repository if wanted. Signed-off-by: Allan McRae <allan@archlinux.org> commit 2e76c184aac74c4848fa5ee092fe54c9954c4054 Author: Allan McRae <allan@archlinux.org> Date: Sun Oct 9 22:21:45 2016 +1000 Move bash/zsh completion out of contrib Signed-off-by: Allan McRae <allan@archlinux.org> commit d590a45795b30a14cdb697754749c85907053570 Author: Allan McRae <allan@archlinux.org> Date: Sat Oct 1 23:13:59 2016 +1000 Remove pacman-optimize The people who believe that pacman-optimize is actually doing something useful are the same people who are voting for Trump. Signed-off-by: Allan McRae <allan@archlinux.org> commit 3190b87b65b038ce31a37f99fb058f3160007cbb Author: Levente Polyak <anthraxx@archlinux.org> Date: Fri Sep 30 00:57:34 2016 +0200 fix --printsrcinfo unify arch and non-arch specific variables This fixes the issue with --printsrcinfo that all arch specific variants of a variable get merged into their non arch specific variant. The .SRCINFO file ends up having $depends containing $depends_x86_64 and omitting the latter. Signed-off-by: Allan McRae <allan@archlinux.org> commit 87ee9693bd70ad5b17b9542fa67a1a58cd0f7c29 Author: Allan McRae <allan@archlinux.org> Date: Sun Sep 25 19:30:51 2016 +1000 Remove SHA224 support This was included due to use of PolarSSL's implementation for our internal SHA2 support. As our internal checksum calculations are now removed, we can also remove this unused code path. Signed-off-by: Allan McRae <allan@archlinux.org> commit 05e1b8de1a96526c4e59745e7e4dc4a83a6383dd Author: Allan McRae <allan@archlinux.org> Date: Sun Sep 25 19:10:03 2016 +1000 Remove internal md5 and sha2 implementations The internal implementations for md5 and sha256 checksums have not been merged from upstream sources for a long time. Instead of us carrying copies of code from other projects, we should just support building against multiple libraries that provide such functionality. This patch removes the md5 and sha2 code (originally obtained from PolarSSL) from our repository. The configure script will now error unless at least one library supporting checksum generation is present, with the only library currently supported being openssl. It will be relatively simple for other such libraries (e.g. nettle) to be supported if anyone wishes to add them. Signed-off-by: Allan McRae <allan@archlinux.org> ----------------------------------------------------------------------- Summary of changes: Makefile.am | 2 +- configure.ac | 7 +- contrib/.gitignore | 12 - contrib/Makefile.am | 113 ------ contrib/PKGBUILD.vim | 320 ----------------- contrib/README | 41 --- contrib/bacman.sh.in | 391 --------------------- contrib/checkupdates.sh.in | 59 ---- contrib/doc/.gitignore | 2 - contrib/doc/Makefile.am | 60 ---- contrib/doc/asciidoc.conf | 1 - contrib/doc/bacman.8.txt | 67 ---- contrib/doc/footer.txt | 1 - contrib/doc/verify-pacman-repo-db.1.txt | 60 ---- contrib/paccache.sh.in | 366 ------------------- contrib/pacdiff.sh.in | 194 ---------- contrib/paclist.sh.in | 68 ---- contrib/paclog-pkglist.sh.in | 99 ------ contrib/pacscripts.sh.in | 140 -------- contrib/pacsearch.in | 125 ------- contrib/rankmirrors.sh.in | 234 ------------ contrib/updpkgsums.sh.in | 115 ------ contrib/verify-pacman-repo-db.pl | 259 -------------- contrib/vimprojects | 25 -- lib/libalpm/Makefile.am | 6 - lib/libalpm/md5.c | 333 ------------------ lib/libalpm/md5.h | 60 ---- lib/libalpm/sha2.c | 370 ------------------- lib/libalpm/sha2.h | 65 ---- lib/libalpm/util.c | 35 +- scripts/.gitignore | 1 - scripts/Makefile.am | 42 ++- scripts/completion/.gitignore | 2 + {contrib => scripts/completion}/bash_completion.in | 0 {contrib => scripts/completion}/zsh_completion.in | 0 scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in | 5 + scripts/makepkg.sh.in | 2 +- scripts/pacman-optimize.sh.in | 189 ---------- scripts/po/POTFILES.in | 1 - 39 files changed, 52 insertions(+), 3820 deletions(-) delete mode 100644 contrib/.gitignore delete mode 100644 contrib/Makefile.am delete mode 100644 contrib/PKGBUILD.vim delete mode 100644 contrib/README delete mode 100644 contrib/bacman.sh.in delete mode 100644 contrib/checkupdates.sh.in delete mode 100644 contrib/doc/.gitignore delete mode 100644 contrib/doc/Makefile.am delete mode 120000 contrib/doc/asciidoc.conf delete mode 100644 contrib/doc/bacman.8.txt delete mode 120000 contrib/doc/footer.txt delete mode 100644 contrib/doc/verify-pacman-repo-db.1.txt delete mode 100644 contrib/paccache.sh.in delete mode 100644 contrib/pacdiff.sh.in delete mode 100644 contrib/paclist.sh.in delete mode 100644 contrib/paclog-pkglist.sh.in delete mode 100644 contrib/pacscripts.sh.in delete mode 100644 contrib/pacsearch.in delete mode 100644 contrib/rankmirrors.sh.in delete mode 100644 contrib/updpkgsums.sh.in delete mode 100755 contrib/verify-pacman-repo-db.pl delete mode 100644 contrib/vimprojects delete mode 100644 lib/libalpm/md5.c delete mode 100644 lib/libalpm/md5.h delete mode 100644 lib/libalpm/sha2.c delete mode 100644 lib/libalpm/sha2.h create mode 100644 scripts/completion/.gitignore rename {contrib => scripts/completion}/bash_completion.in (100%) rename {contrib => scripts/completion}/zsh_completion.in (100%) delete mode 100644 scripts/pacman-optimize.sh.in hooks/post-receive -- The official pacman repository
participants (1)
-
allan@archlinux.org