[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.3.3-134-g087be2f
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 087be2f1fbae2d7168732c7004d8963a3d9d21d8 (commit) via 6f0ffb23860e8d1b4593d60e970919ae7b31340d (commit) via 5fe41df8a9eaac288433a54e216f96b1fe729c01 (commit) via 22331fdadb1b055030a6f68e2bb9eed589187a10 (commit) via 65d43fbb843e035812dde4578afa98c4e7388374 (commit) via a4e3fd18474186ac81acca91adecbb905aee3357 (commit) via de5473c026ea1a8bf8fdb4218a6911b5d5e1f0b2 (commit) via eee61a0bbc2a11f0d2a52d7d22425faaa2aeaef1 (commit) via 7ea0a115db79405db46a38e785765ae968c46dee (commit) from 1a00ee5c276785aef70225c2cc951dbb15888ea5 (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 087be2f1fbae2d7168732c7004d8963a3d9d21d8 Author: Xavier Chantry <shiningxc@gmail.com> Date: Fri Sep 18 21:59:52 2009 +0200 delta : add external cleanup script Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org> commit 6f0ffb23860e8d1b4593d60e970919ae7b31340d Author: Allan McRae <allan@archlinux.org> Date: Fri Mar 5 14:17:57 2010 +1000 makepkg: always update symlinks to compressed man pages When a man page has both symbolic and hard links, any symlink pointing to other than the alphabetically first hardlink was not "compressed" and left dangling towards the uncompressed man page. Fixes FS#18569. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> commit 5fe41df8a9eaac288433a54e216f96b1fe729c01 Author: Cedric Staniewski <cedric@gmx.ca> Date: Mon Dec 21 20:26:28 2009 +0100 makepkg: make strip options configurable The newly added variables STRIP_BINARIES, STRIP_SHARED and STRIP_STATIC, that are set in makepkg.conf, specify the strip options used on binaries and shared and static libraries. In addition, files are now stripped more aggressively by default. Implements FS#13592 the way it was suggested by Allan in the comments. Signed-off-by: Cedric Staniewski <cedric@gmx.ca> Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> commit 22331fdadb1b055030a6f68e2bb9eed589187a10 Author: Dan McGee <dan@archlinux.org> Date: Sat Mar 6 22:02:36 2010 +1000 makepkg: Remove setgid bit on srcdir/pkgdir creation It was noted in FS#17533 that setgid bits are carried down into any created subdirectories, and thus could end up being in a built package if the original package directory was marked g+s. When we create src/ and pkg/, explicitly chmod them to remove any sticky bits. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org> commit 65d43fbb843e035812dde4578afa98c4e7388374 Author: Allan McRae <allan@archlinux.org> Date: Sun Mar 7 17:31:26 2010 +1000 makepkg: abort on missing or non-writable PKGDEST When PKGDEST pointed to a non-writable location, makepkg would fail after completing the build process. This patch makes it abort as soon as PKGDEST is parsed. Also, move the SRCDEST check to the same point rather than right before downloading sources (which was after dependency checks). Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> commit a4e3fd18474186ac81acca91adecbb905aee3357 Author: Allan McRae <allan@archlinux.org> Date: Tue Jan 26 23:29:31 2010 +1000 makepkg: only strip files that are writable TODO: http://mailman.archlinux.org/pipermail/pacman-dev/2010-January/010390.html Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> commit de5473c026ea1a8bf8fdb4218a6911b5d5e1f0b2 Author: Nezmer <git@nezmer.info> Date: Wed Jan 20 17:34:42 2010 +0200 makepkg: Add documentation for the new SRCPKGDEST variable Add SRCPKGDEST documentation to the makepkg.conf man page Signed-off-by: Nezmer <git@nezmer.info> Signed-off-by: Dan McGee <dan@archlinux.org> commit eee61a0bbc2a11f0d2a52d7d22425faaa2aeaef1 Author: Cedric Staniewski <cedric@gmx.ca> Date: Fri Dec 4 17:49:54 2009 +0100 makepkg: document environment variables PKGDEST and SRCDEST Signed-off-by: Cedric Staniewski <cedric@gmx.ca> Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> commit 7ea0a115db79405db46a38e785765ae968c46dee Author: Allan McRae <allan@archlinux.org> Date: Thu Feb 25 13:41:46 2010 +1000 makepkg: update required programs Remove getopt, add xz. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> ----------------------------------------------------------------------- Summary of changes: configure.ac | 9 +++ doc/Makefile.am | 13 ++++- doc/makepkg.8.txt | 8 +++ doc/makepkg.conf.5.txt | 17 ++++++ etc/Makefile.am | 3 + etc/makepkg.conf.in | 6 ++ lib/libalpm/alpm.h | 1 + lib/libalpm/delta.c | 46 +++++++++++++++- scripts/makepkg.sh.in | 59 +++++++++++++-------- src/util/.gitignore | 3 + src/util/Makefile.am | 6 ++- src/util/cleanupdelta.c | 134 +++++++++++++++++++++++++++++++++++++++++++++++ 12 files changed, 276 insertions(+), 29 deletions(-) create mode 100644 src/util/cleanupdelta.c hooks/post-receive -- The official pacman repository
On 15/03/10 09:36, Dan McGee wrote:
commit a4e3fd18474186ac81acca91adecbb905aee3357 Author: Allan McRae<allan@archlinux.org> Date: Tue Jan 26 23:29:31 2010 +1000
makepkg: only strip files that are writable
TODO: http://mailman.archlinux.org/pipermail/pacman-dev/2010-January/010390.html
Signed-off-by: Allan McRae<allan@archlinux.org> Signed-off-by: Dan McGee<dan@archlinux.org>
Hmmm.... that one was not quite finished yet which is why it was not on my working branch. (I put it on a wip = "work in progress" branch). Nevermind! Apart from a strange commit message, it is still an improvement on the pre-patch state. :P
On Sun, Mar 14, 2010 at 7:37 PM, Allan McRae <allan@archlinux.org> wrote:
On 15/03/10 09:36, Dan McGee wrote:
commit a4e3fd18474186ac81acca91adecbb905aee3357 Author: Allan McRae<allan@archlinux.org> Date: Tue Jan 26 23:29:31 2010 +1000
makepkg: only strip files that are writable
TODO: http://mailman.archlinux.org/pipermail/pacman-dev/2010-January/010390.html
Signed-off-by: Allan McRae<allan@archlinux.org> Signed-off-by: Dan McGee<dan@archlinux.org>
Hmmm.... that one was not quite finished yet which is why it was not on my working branch. (I put it on a wip = "work in progress" branch).
Nevermind! Apart from a strange commit message, it is still an improvement on the pre-patch state. :P
Haha, whoops! I went a little crazy cherry-picking and started grabbing stuff that looked good. -Dan
On Mon, Mar 15, 2010 at 1:44 AM, Dan McGee <dpmcgee@gmail.com> wrote:
Haha, whoops! I went a little crazy cherry-picking and started grabbing stuff that looked good.
Heh nice raid indeed :) I did not touch pacman for 4 months, maybe it's time to get back on track. I always have lots of new not-pacman things to work on though. Anyway I am guessing my git repo is empty now. I just checked nagy one, and there is still the -D patch dying there : http://repo.or.cz/w/pacman-ng.git/shortlog/refs/heads/working Too bad we did not come to an agreement last time it was sent to ML.
On Sun, Mar 14, 2010 at 8:06 PM, Xavier Chantry <chantry.xavier@gmail.com> wrote:
On Mon, Mar 15, 2010 at 1:44 AM, Dan McGee <dpmcgee@gmail.com> wrote:
Haha, whoops! I went a little crazy cherry-picking and started grabbing stuff that looked good.
Heh nice raid indeed :) I did not touch pacman for 4 months, maybe it's time to get back on track. I always have lots of new not-pacman things to work on though. Anyway I am guessing my git repo is empty now.
I just checked nagy one, and there is still the -D patch dying there : http://repo.or.cz/w/pacman-ng.git/shortlog/refs/heads/working Too bad we did not come to an agreement last time it was sent to ML.
Yeah, I'll try to look that over and see what I can remember. I do feel bad having work sit out there unused. I'm thinking a release of what we have in a month or so? That seems feasible given our normal slow pace and would at least let the 140 patches since 3.3.X get out there. Obviously some of the bigger changes I would like to do still haven't happened, but that shouldn't hold us up here. -Dan
participants (4)
-
Allan McRae
-
Dan McGee
-
dan@archlinux.org
-
Xavier Chantry