[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.4.0-16-g59c47aa
Dan McGee
dan at archlinux.org
Sun Jun 20 21:46:09 EDT 2010
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 59c47aaf529df02ec1577fe727c3c84d13592666 (commit)
via d7dccd541962f0dd8bf323ae11633e595bfb4922 (commit)
via 3e4d2c3aa65416487939148828afb385de2ee146 (commit)
via f5f107674bd34b281681d73a32e4dde1f9d0856f (commit)
via 1b93a116e73050d2a037843647b961432b2a0dc8 (commit)
via 70418e48f6c0033a1bf942fec0bbc001d3d0d8f5 (commit)
via c7a37d039bc4361077fdf77180b35b81bd8b12a7 (commit)
via cd042640c66e73f3fe4f5299a36e4cca5384b34b (commit)
via 13748ca052975cbf6354cfc4554f49a3d8ff46fe (commit)
via 34229c562571d458446c9e4da197fcae251c2f6b (commit)
from 09aae4b7a5891ad738754a22f956c83911d1d9eb (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 59c47aaf529df02ec1577fe727c3c84d13592666
Author: Allan McRae <allan at archlinux.org>
Date: Sat Jun 19 18:55:08 2010 +1000
Clarify testing within conditional statements
Follow the HACKING guidelines and always use != 0 or == 0 rather
than negation within conditional statements to improve clarity.
Most of these are !strcmp usages which is the example of what not
to do in the HACKING document.
Signed-off-by: Allan McRae <allan at archlinux.org>
commit d7dccd541962f0dd8bf323ae11633e595bfb4922
Author: Andres P <aepd87 at gmail.com>
Date: Fri Jun 18 19:21:10 2010 -0430
makepkg: remove unnecessary use of sort
pacman -Qq output is sorted according to the users LC_COLLATE
setting as is needed for comm.
Signed-off-by: Andres P <aepd87 at gmail.com>
[Allan: adjust commit message]
Signed-off-by: Allan McRae <allan at archlinux.org>
commit 3e4d2c3aa65416487939148828afb385de2ee146
Author: Andres P <aepd87 at gmail.com>
Date: Sat Jun 19 01:25:15 2010 -0430
libalpm: compare pkgname with strcoll
Use strcoll to compare package names to provide output sorted
according to a users LC_COLLATE settings.
Signed-off-by: Andres P <aepd87 at gmail.com>
[Allan: added commit message]
Signed-off-by: Allan McRae <allan at archlinux.org>
commit f5f107674bd34b281681d73a32e4dde1f9d0856f
Author: Andres P <aepd87 at gmail.com>
Date: Fri Jun 18 19:21:09 2010 -0430
makepkg: use parameter expansion instead of basename
Signed-off-by: Andres P <aepd87 at gmail.com>
Signed-off-by: Allan McRae <allan at archlinux.org>
commit 1b93a116e73050d2a037843647b961432b2a0dc8
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:51 2010 -0430
makepkg: fix inconsistent output when checking dependencies
Instead of writing:
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Installing missing dependencies...
Just make it homogeneous:
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
Signed-off-by: Andres P <aepd87 at gmail.com>
Signed-off-by: Allan McRae <allan at archlinux.org>
commit 70418e48f6c0033a1bf942fec0bbc001d3d0d8f5
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:49 2010 -0430
makepkg: merge in-line splitpkg handling logic
Ease maintainace; the two parts that have been combined into a function were
identical.
Signed-off-by: Andres P <aepd87 at gmail.com>
[Allan: rename function]
Signed-off-by: Allan McRae <allan at archlinux.org>
commit c7a37d039bc4361077fdf77180b35b81bd8b12a7
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:48 2010 -0430
makepkg: add to variables without expanding them
Use foo+=" bar" instead of foo="${foo} bar"
Signed-off-by: Andres P <aepd87 at gmail.com>
Signed-off-by: Allan McRae <allan at archlinux.org>
commit cd042640c66e73f3fe4f5299a36e4cca5384b34b
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:46 2010 -0430
makepkg: less code repetition for empty variable checking
Signed-off-by: Andres P <aepd87 at gmail.com>
Signed-off-by: Allan McRae <allan at archlinux.org>
commit 13748ca052975cbf6354cfc4554f49a3d8ff46fe
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:42 2010 -0430
makepkg: use "declare -f" to test for function presence
Signed-off-by: Andres P <aepd87 at gmail.com>
Signed-off-by: Allan McRae <allan at archlinux.org>
commit 34229c562571d458446c9e4da197fcae251c2f6b
Author: Andres P <aepd87 at gmail.com>
Date: Thu Jun 17 08:14:41 2010 -0430
makepkg: fix variable checks when writing pkginfo
Regression caused by c71fe7db. Was checking for "optdepend" and "conflict"
rather than "optdepends" and "conflicts" when populating .PKGINFO.
Signed-off-by: Andres P <aepd87 at gmail.com>
[Allan: adjust commit message]
Signed-off-by: Allan McRae <allan at archlinux.org>
-----------------------------------------------------------------------
Summary of changes:
lib/libalpm/be_package.c | 34 +++++++-------
lib/libalpm/conflict.c | 4 +-
lib/libalpm/deps.c | 2 +-
lib/libalpm/package.c | 2 +-
lib/libalpm/trans.c | 4 +-
lib/libalpm/util.c | 2 +-
scripts/makepkg.sh.in | 107 ++++++++++++++++++++-------------------------
src/pacman/callback.c | 2 +-
src/pacman/package.c | 2 +-
src/pacman/sync.c | 8 ++--
src/pacman/upgrade.c | 2 +-
src/pacman/util.c | 6 +-
src/util/testdb.c | 2 +-
13 files changed, 83 insertions(+), 94 deletions(-)
hooks/post-receive
--
The official pacman repository
More information about the pacman-dev
mailing list