[pacman-dev] [GIT] The official pacman repository branch, master now at v3.0.0-505-gccdf29f
Dan McGee
dan at archlinux.org
Tue Oct 30 21:27:30 EDT 2007
Hello,
This is an automated email from the git hooks/update script, it was
generated because a ref change was pushed to the repository.
Updating branch, master,
via ccdf29ffa8436d3cd5409b0d02287207716cf397 (commit)
via ac79135b94b1cd2c3fc4818bdfbe8ec63a6166b6 (commit)
via 6aeda5fbff1969befa322ef7b79664f13dea1d18 (commit)
via be387148c95ee5ed4e45dc841cd12fee010b998a (commit)
via 6af7dbcf72b0e95f7c36b17fac88fd2658c2a8e4 (commit)
via aea45a8b20c786358cfe782b4e3ac37c7d9dbe37 (commit)
via dede5371e7c11ceb6ea36ba770672d61aa9b9002 (commit)
via 74aa54a1f6db109311e9bdc8cae64a2a26a2b860 (commit)
via 014306eb99c90c5c5c6d19d50aa47e29c25e8e14 (commit)
via c50a7c6026e491771f0607d5e3fed737b3b5e8f3 (commit)
via 6cf8a5137e9e0a8fcdf5287187935ffc505a2132 (commit)
via cc754bc6e3be0f37ca0eaca4b6b90f033433fb1a (commit)
via fe3a461703a5d90937c0c6f1ce0c3d802c0f8630 (commit)
from 671224b64c9478644125deec1496a27e8f579da9 (commit)
- Log -----------------------------------------------------------------
commit ccdf29ffa8436d3cd5409b0d02287207716cf397
Author: Dan McGee <dan at archlinux.org>
Date: Tue Oct 30 08:12:09 2007 -0500
abs: prefer csup to cvsup
Signed-off-by: Dan McGee <dan at archlinux.org>
commit ac79135b94b1cd2c3fc4818bdfbe8ec63a6166b6
Author: Dan McGee <dan at archlinux.org>
Date: Tue Oct 30 00:20:18 2007 -0500
Pick best python program available for 'make check'
Use an autoconf macro to find us a python executable, preferring python2.5
if we can find it. From there, fall back to python2.4 and then python.
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 6aeda5fbff1969befa322ef7b79664f13dea1d18
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 23:32:58 2007 -0500
When printing size_t, use %zd
%d was used, which worked for Linux and FreeBSD. Not so for Darwin. The
warning was probably spat out when compiling on x68_64 as well, but no
developers use this architecture as their primary one.
Signed-off-by: Dan McGee <dan at archlinux.org>
commit be387148c95ee5ed4e45dc841cd12fee010b998a
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 23:12:37 2007 -0500
libalpm/handle.c: make realpath() call portable
BSD didn't support the NULL second argument GNU extension, so do it the
old fashioned way.
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 6af7dbcf72b0e95f7c36b17fac88fd2658c2a8e4
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 23:11:49 2007 -0500
pacman/query.c: add missing free()
Signed-off-by: Dan McGee <dan at archlinux.org>
commit aea45a8b20c786358cfe782b4e3ac37c7d9dbe37
Author: Scott Horowitz <stonecrest at gmail.com>
Date: Mon Oct 29 21:25:30 2007 -0600
Small updates to documentation.
Signed-off-by: Scott Horowitz <stonecrest at gmail.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit dede5371e7c11ceb6ea36ba770672d61aa9b9002
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 21:06:13 2007 -0500
Copy pmdelta_t objects in _alpm_pkg_dup()
This was forgotten in the original set of patches.
CC: Nathan Jones <nathanj at insightbb.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 74aa54a1f6db109311e9bdc8cae64a2a26a2b860
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 21:03:41 2007 -0500
Make general list copy function
Package dup needs to copy all members. Nathan had his implementation, but
I generalized it to this new alpm_list function (and will use it in the
next commit).
CC: Nathan Jones <nathanj at insightbb.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 014306eb99c90c5c5c6d19d50aa47e29c25e8e14
Author: Chantry Xavier <shiningxc at gmail.com>
Date: Sun Oct 28 13:39:12 2007 +0100
simple pactest renaming : split conflict* into depconflict* and fileconflict*.
Signed-off-by: Chantry Xavier <shiningxc at gmail.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit c50a7c6026e491771f0607d5e3fed737b3b5e8f3
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 07:13:58 2007 -0500
doxygen: preprocess SYMHIDDEN/SYMEXPORT macros so they don't show in docs
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 6cf8a5137e9e0a8fcdf5287187935ffc505a2132
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 01:28:13 2007 -0500
libalpm/delta: add const to most methods
Signed-off-by: Dan McGee <dan at archlinux.org>
commit cc754bc6e3be0f37ca0eaca4b6b90f033433fb1a
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 01:00:52 2007 -0500
libalpm: introduce MALLOC and CALLOC macros
These macros take the place of the common 4 or 5 line blocks of code we had
in most places that called malloc or calloc. This should reduce some code
duplication and make memory allocation more standard in libalpm.
Highlights:
* Note that the MALLOC macro actually uses calloc, this is just for safety
so that memory is initialized to 0. This can be easily changed in one
place.
* One malloc call was completely eliminated- it made more sense to do it
on the stack.
* The use of RET_ERR in public functions (mainly the alpm_*_new functions)
was standardized, this makes sense so pm_errno is set.
Signed-off-by: Dan McGee <dan at archlinux.org>
commit fe3a461703a5d90937c0c6f1ce0c3d802c0f8630
Author: Dan McGee <dan at archlinux.org>
Date: Mon Oct 29 00:01:17 2007 -0500
Add some more debugging output to dep checking code
Signed-off-by: Dan McGee <dan at archlinux.org>
-----------------------------------------------------------------------
Diffstat:
Makefile.am | 2 +-
configure.ac | 3 +-
doc/Doxyfile | 6 +-
doc/PKGBUILD.5.txt | 76 +++++++++++++++++--
doc/makepkg.8.txt | 18 ++++--
lib/libalpm/alpm.h | 8 +-
lib/libalpm/alpm_list.c | 26 ++++++-
lib/libalpm/alpm_list.h | 1 +
lib/libalpm/conflict.c | 9 +--
lib/libalpm/db.c | 13 +---
lib/libalpm/delta.c | 11 ++--
lib/libalpm/deps.c | 33 ++++-----
lib/libalpm/group.c | 7 +--
lib/libalpm/handle.c | 14 +---
lib/libalpm/package.c | 21 ++----
lib/libalpm/server.c | 12 +---
lib/libalpm/sync.c | 20 +++---
lib/libalpm/trans.c | 5 +-
lib/libalpm/util.h | 7 ++-
.../tests/{conflict004.py => depconflict100.py} | 0
.../tests/{conflict002.py => depconflict110.py} | 0
.../tests/{conflict003.py => depconflict111.py} | 2 +-
.../tests/{conflict001.py => depconflict120.py} | 0
.../tests/{conflict005.py => fileconflict001.py} | 0
.../tests/{conflict006.py => fileconflict002.py} | 1 -
scripts/abs.sh.in | 10 ++--
src/pacman/callback.c | 3 +-
src/pacman/conf.c | 3 +-
src/pacman/query.c | 3 +-
29 files changed, 182 insertions(+), 132 deletions(-)
hooks/update
---
Git Source Code Management System
hooks/update refs/heads/master \
671224b64c9478644125deec1496a27e8f579da9 \
ccdf29ffa8436d3cd5409b0d02287207716cf397
More information about the pacman-dev
mailing list