[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.5.2-114-g4af6c72
Dan McGee
dan at archlinux.org
Wed Apr 20 20:52:28 EDT 2011
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 4af6c72d790e13fd28abc0d7b2eaaece51fd7862 (commit)
via 6760ec2b770e65f2aae9cfd39135cefd49961195 (commit)
via 2c8c763723b43ddcb865aab325afc9c76907cb64 (commit)
via 91594a1ef895a6e47ece299b762d5476f1bca348 (commit)
via fdcfcf28a28006a4239e54a34129d3b099d0df0d (commit)
via a6c05458d44afa27d0b8771e86bdb57facf66071 (commit)
via 4c31bc6e3f32d954a9a0f81555abe5b91db3a6d3 (commit)
via cb35affd1b2ac7bb489c8774685225672c5a3d9f (commit)
via e95be3379ab79ea24ad7ae5a4676388df27d0bbb (commit)
via 0152266dd3ce0393f5e9519aaa1d7da7e6051694 (commit)
from 50de7019c0bbd917b0a1717566ddad41c7c6db9e (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 4af6c72d790e13fd28abc0d7b2eaaece51fd7862
Author: Dan McGee <dan at archlinux.org>
Date: Wed Apr 20 19:45:16 2011 -0500
syntax: if/while statements should have no trailing space
This is the standard, and we have had a few of these introduced lately
that should not be here.
Done with:
find -name '*.c' | xargs sed -i -e 's#if (#if(#g'
find -name '*.c' | xargs sed -i -e 's#while (#while(#g'
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 6760ec2b770e65f2aae9cfd39135cefd49961195
Author: Dave Reisner <d at falconindy.com>
Date: Fri Mar 25 21:40:16 2011 -0400
Allow VerifySig to act as a default verification in [options]
* add _alpm_db_get_sigverify_level
* add alpm_option_{get,set}_default_sigverify
And set the default verification level to OPTIONAL if not set otherwise.
Signed-off-by: Dave Reisner <d at falconindy.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 2c8c763723b43ddcb865aab325afc9c76907cb64
Author: Dan McGee <dan at archlinux.org>
Date: Wed Apr 20 19:29:14 2011 -0500
alpm.h: forward-declare shared enumerations
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 91594a1ef895a6e47ece299b762d5476f1bca348
Author: Dave Reisner <d at falconindy.com>
Date: Fri Mar 25 11:57:20 2011 -0400
style cleanup: cast as (type *) not (type*)
Signed-off-by: Dave Reisner <d at falconindy.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit fdcfcf28a28006a4239e54a34129d3b099d0df0d
Author: Dave Reisner <d at falconindy.com>
Date: Fri Mar 25 11:58:16 2011 -0400
lib: remove dead code in be_local and be_package
Signed-off-by: Dave Reisner <d at falconindy.com>
commit a6c05458d44afa27d0b8771e86bdb57facf66071
Author: Dan McGee <dan at archlinux.org>
Date: Wed Apr 20 19:00:59 2011 -0500
Put comments on their own line
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 4c31bc6e3f32d954a9a0f81555abe5b91db3a6d3
Author: Allan McRae <allan at archlinux.org>
Date: Sun Apr 17 22:38:35 2011 +1000
Add configure option to specify package signing key
Add the "GPGKEY" option to makepkg.conf for specifying signing packages
with the non-default key from the keyring. Is overridded by makepkg's
--key option.
Signed-off-by: Allan McRae <allan at archlinux.org>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit cb35affd1b2ac7bb489c8774685225672c5a3d9f
Author: Allan McRae <allan at archlinux.org>
Date: Sun Apr 17 22:17:24 2011 +1000
Document makepkg package signing options
Dan: fix some grammar issues.
Signed-off-by: Allan McRae <allan at archlinux.org>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit e95be3379ab79ea24ad7ae5a4676388df27d0bbb
Author: Jakob Gruber <jakob.gruber at gmail.com>
Date: Sun Feb 20 15:00:26 2011 +0100
New VerbosePkgLists option
If enabled, displays package lists for upgrade, sync and remove
operations formatted as a table. Falls back to default list display if
insufficient terminal columns are available.
Example output:
:: Starting full system upgrade...
:: Replace libjpeg with testing/libjpeg-turbo? [Y/n]
resolving dependencies...
looking for inter-conflicts...
Remove (1):
Name Old Version Size
libjpeg 8.3.0-1 0.83 MB
Total Removed Size: 0.83 MB
Targets (5):
Name Old Version New Version Size
libjpeg-turbo 1.1.0-1 0.20 MB
linux-firmware 20110201-1 20110227-1 8.23 MB
ncurses 5.7-4 5.8-1 0.92 MB
ppl 0.11.1-1 0.11.2-1 2.74 MB
v4l-utils 0.8.1-1 0.8.3-1 0.23 MB
Total Download Size: 12.32 MB
Total Installed Size: 58.82 MB
Signed-off-by: Jakob Gruber <jakob.gruber at gmail.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 0152266dd3ce0393f5e9519aaa1d7da7e6051694
Author: Jakob Gruber <jakob.gruber at gmail.com>
Date: Sat Feb 19 23:23:42 2011 +0100
Table formatted output functions
table_display takes a list of lists of strings (representing the table
cells) and displays them formatted as a table.
The exact format depends on the longest string in each column.
Signed-off-by: Jakob Gruber <jakob.gruber at gmail.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
-----------------------------------------------------------------------
Summary of changes:
doc/makepkg.8.txt | 12 +++
doc/makepkg.conf.5.txt | 4 +
doc/pacman.conf.5.txt | 4 +
etc/makepkg.conf.in | 2 +
etc/pacman.conf.in | 1 +
lib/libalpm/add.c | 2 +-
lib/libalpm/alpm.h | 52 +++++++----
lib/libalpm/alpm_list.c | 26 +++---
lib/libalpm/be_local.c | 9 +--
lib/libalpm/be_package.c | 14 +---
lib/libalpm/db.c | 8 +-
lib/libalpm/deps.c | 12 ++--
lib/libalpm/diskspace.c | 6 +-
lib/libalpm/dload.c | 4 +-
lib/libalpm/handle.c | 55 ++++++++-----
lib/libalpm/handle.h | 9 +-
lib/libalpm/package.c | 4 +-
lib/libalpm/pkghash.c | 2 +-
lib/libalpm/remove.c | 4 +-
lib/libalpm/signing.c | 29 +++++--
lib/libalpm/signing.h | 1 +
lib/libalpm/sync.c | 34 +++++--
lib/libalpm/trans.c | 2 +-
lib/libalpm/util.c | 18 ++--
scripts/makepkg.sh.in | 14 ++--
src/pacman/callback.c | 8 +-
src/pacman/conf.h | 8 ++-
src/pacman/package.c | 4 +-
src/pacman/pacman.c | 65 +++++++++------
src/pacman/query.c | 16 ++--
src/pacman/sync.c | 8 +-
src/pacman/util.c | 211 +++++++++++++++++++++++++++++++++++++++++++---
src/pacman/util.h | 1 +
src/util/pactree.c | 4 +-
src/util/testdb.c | 2 +-
35 files changed, 468 insertions(+), 187 deletions(-)
hooks/post-receive
--
The official pacman repository
More information about the pacman-dev
mailing list