[pacman-dev] [GIT] The official pacman repository branch, master, updated. v5.1.1-57-gde915c4f

2018-11-03 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 de915c4f145d6e985c3c0fdf8fe121b5066d711c (commit) vi

[pacman-dev] [PATCH 1/1] Split prepare_buildenv() to libmakepkg scripts

2018-11-03 Thread Que Quotion
From: Que Quotion As Eli Schwartz has pointed out: https://lists.archlinux.org/pipermail/pacman-dev/2018-May/022501.html It would be beneficial to makepkg to have this function ported to libmakepkg and split into individual scripts. Supersedes: https://patchwork.archlinux.org/patch/540/ Signed

Re: [pacman-dev] [PATCH 1/1] Split prepare_buildenv() to libmakepkg scripts

2018-11-03 Thread Eli Schwartz
On 11/3/18 12:54 PM, Que Quotion wrote: > From: Que Quotion > > As Eli Schwartz has pointed out: > https://lists.archlinux.org/pipermail/pacman-dev/2018-May/022501.html > > It would be beneficial to makepkg to have this function ported > to libmakepkg and split into individual scripts. > > Supe

[pacman-dev] [PATCH 2/2] buildsys: remove size_to_human

2018-11-03 Thread Dave Reisner
This was only ever used by paccache, and paccache has since been moved to pacman-contrib. --- scripts/Makefile.am | 3 +-- scripts/library/README | 4 scripts/library/size_to_human.sh | 22 -- scripts/meson.build | 1 - scripts/po/POT

[pacman-dev] [PATCH 1/2] meson: separate out wrapped from non-wrapped scripts

2018-11-03 Thread Dave Reisner
makepkg-template is a perl script and doesn't get wrapped by our shell wrapper. It (wrongly) reads from the host machine rather than the build root, but this is working as implemented. --- wohoo first bug that affects one buildsys and not the other! scripts/meson.build | 20 ++--

[pacman-dev] [PATCH] scripts: fix some inaccurate Makefile targets

2018-11-03 Thread Eli Schwartz
Since commit b5d62d2c91a2caf5c18945921cdf12af6f36b2d4, all scripts depend on libmakepkg, not just makepkg itself. Additionally, repo-remove and repo-elephant don't care whether repo-add.sh.in is updated... but they do require the repo-add target to be up to date, so use that instead. Signed-off-b