[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.0.0-595-ge289731
Dan McGee
dan at archlinux.org
Sat Nov 17 11:17:42 EST 2007
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 e28973169d2e5eda8b64ebdda11ece0dc761d978 (commit)
via c8be7540a50583194e971918099006a1736cfab7 (commit)
via d311ad067f47608252b9276df90087db98b1100f (commit)
via 04b7d2ad140058a7cab911fb77ec0285bf76b059 (commit)
via 3d10786394f5b2a65104fdff3d31d70022dfd68d (commit)
via cfcc550e2ac55616c81d2347c2467aec9d56d25e (commit)
via 2322909703eb2f30ac0ef7273420f13c5f61410b (commit)
via 3cd684b41dd606d42da76fcc3911be446dd3b78b (commit)
via 6f2b43624915e3e1928cad2bbe14fd8b1ab21e12 (commit)
via 4ce13e2398a8ec3f960fbf544a17507ffc17eca1 (commit)
from 2f55733be35e7ec4188ddab17a92ed67faa7210d (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 e28973169d2e5eda8b64ebdda11ece0dc761d978
Author: Chantry Xavier <shiningxc at gmail.com>
Date: Sat Nov 17 14:05:48 2007 +0100
pacman/sync.c : remove duplicated fallback on providers.
The fallback on providers when a target is not found was already made in the backend :
libalpm/sync.c , _alpm_sync_addtarget .
So I removed it from the frontend.
The sync500 pactest proves this fallback still works correctly.
Signed-off-by: Chantry Xavier <shiningxc at gmail.com>
Signed-off-by: Dan McGee <dan at archlinux.org>
commit c8be7540a50583194e971918099006a1736cfab7
Author: Chantry Xavier <shiningxc at gmail.com>
Date: Sat Nov 17 13:06:44 2007 +0100
Remove provide.c and provide.h .
This file only contained one private function : _alpm_db_whatprovides .
And the public alpm_db_whatprovides was in db.c , so I moved everything there.
Signed-off-by: Chantry Xavier <shiningxc at gmail.com>
[Dan: updated POTFILES.in as well]
Signed-off-by: Dan McGee <dan at archlinux.org>
commit d311ad067f47608252b9276df90087db98b1100f
Author: Nagy Gabor <ngaba at bibl.u-szeged.hu>
Date: Fri Nov 16 20:50:58 2007 +0100
Generalized alpm_list_find.
The old alpm_list_find was renamed to alpm_list_find_ptr, and a new
alpm_list_find was introduced, which uses the fn comparison-function
parameter in its decision.
Now both alpm_list_find_ptr (a new ptrcmp helper function was also
added) and alpm_list_find_str are just an alpm_list_find call.
Signed-off-by: Nagy Gabor <ngaba at bibl.u-szeged.hu>
Signed-off-by: Chantry Xavier <shiningxc at gmail.com>
[Dan: made ptrcmp a static function]
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 04b7d2ad140058a7cab911fb77ec0285bf76b059
Author: Nagy Gabor <ngaba at bibl.u-szeged.hu>
Date: Fri Nov 16 22:48:29 2007 +0100
Two memleak fixes in pacman.
Both memleak was an unfreed alpm_db_whatprovides list.
Signed-off-by: Nagy Gabor <ngaba at bibl.u-szeged.hu>
commit 3d10786394f5b2a65104fdff3d31d70022dfd68d
Author: Dan McGee <dan at archlinux.org>
Date: Sat Nov 17 09:39:00 2007 -0600
Fix memleak in _alpm_trans_free with package lists
Signed-off-by: Dan McGee <dan at archlinux.org>
commit cfcc550e2ac55616c81d2347c2467aec9d56d25e
Author: Dan McGee <dan at archlinux.org>
Date: Fri Nov 16 21:15:49 2007 -0600
libalpm: use FREELIST when possible
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 2322909703eb2f30ac0ef7273420f13c5f61410b
Author: Dan McGee <dan at archlinux.org>
Date: Fri Nov 16 20:18:45 2007 -0600
War on whitespace
Run the kernel's cleanfile script on all of our source files.
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 3cd684b41dd606d42da76fcc3911be446dd3b78b
Author: Dan McGee <dan at archlinux.org>
Date: Fri Nov 16 11:51:26 2007 -0600
libalpm: simplify sync db lastupdate
Legacy code is hitting the trash here. Remove unnecessary _alpm_time2string
time storage abstraction in favor of just writing the time_t value to the
disk.
The only drawback is that everyone's sync DBs will have to be updated at
least once so that the lastupdate values are stored right. :)
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 6f2b43624915e3e1928cad2bbe14fd8b1ab21e12
Author: Dan McGee <dan at archlinux.org>
Date: Thu Nov 15 08:07:45 2007 -0600
Add new mirror (FS#8638)
Signed-off-by: Dan McGee <dan at archlinux.org>
commit 4ce13e2398a8ec3f960fbf544a17507ffc17eca1
Author: Dan McGee <dan at archlinux.org>
Date: Thu Nov 15 08:05:10 2007 -0600
Fix a would-be memleak with the new compute requiredby stuff
Signed-off-by: Dan McGee <dan at archlinux.org>
-----------------------------------------------------------------------
Summary of changes:
etc/pacman.d/mirrorlist.in | 1 +
lib/libalpm/Makefile.am | 1 -
lib/libalpm/add.c | 14 ++++------
lib/libalpm/add.h | 6 ++--
lib/libalpm/alpm.c | 6 ++--
lib/libalpm/alpm.h | 8 +++---
lib/libalpm/alpm_list.c | 59 ++++++++++++++++++++++++++-----------------
lib/libalpm/alpm_list.h | 11 ++++---
lib/libalpm/backup.c | 8 +++---
lib/libalpm/backup.h | 6 ++--
lib/libalpm/be_files.c | 52 +++++++++++++++++--------------------
lib/libalpm/cache.c | 6 ++--
lib/libalpm/cache.h | 6 ++--
lib/libalpm/conflict.c | 12 +++-----
lib/libalpm/conflict.h | 6 ++--
lib/libalpm/db.c | 55 +++++++++++++++++++++++++++++-----------
lib/libalpm/db.h | 14 ++++++---
lib/libalpm/delta.c | 6 ++--
lib/libalpm/delta.h | 6 ++--
lib/libalpm/deps.c | 25 +++++++++---------
lib/libalpm/deps.h | 6 ++--
lib/libalpm/error.c | 6 ++--
lib/libalpm/error.h | 6 ++--
lib/libalpm/group.h | 6 ++--
lib/libalpm/handle.c | 6 ++--
lib/libalpm/handle.h | 10 +++---
lib/libalpm/log.c | 6 ++--
lib/libalpm/log.h | 6 ++--
lib/libalpm/md5.c | 1 -
lib/libalpm/package.c | 14 ++++------
lib/libalpm/package.h | 6 ++--
lib/libalpm/po/POTFILES.in | 4 +-
lib/libalpm/provide.c | 58 ------------------------------------------
lib/libalpm/provide.h | 32 -----------------------
lib/libalpm/remove.c | 15 +++++------
lib/libalpm/remove.h | 6 ++--
lib/libalpm/server.c | 60 ++++++++++++++++++++-----------------------
lib/libalpm/server.h | 10 +++---
lib/libalpm/sync.c | 11 +++----
lib/libalpm/sync.h | 6 ++--
lib/libalpm/trans.c | 18 +++++--------
lib/libalpm/trans.h | 6 ++--
lib/libalpm/util.c | 22 +++-------------
lib/libalpm/util.h | 7 ++---
src/pacman/add.c | 8 +++---
src/pacman/callback.c | 10 +++---
src/pacman/conf.c | 6 ++--
src/pacman/conf.h | 6 ++--
src/pacman/deptest.c | 9 +++---
src/pacman/package.c | 14 +++++-----
src/pacman/package.h | 6 ++--
src/pacman/remove.c | 8 +++---
src/pacman/sync.c | 22 ++--------------
src/pacman/util.c | 14 +++++-----
src/util/testdb.c | 6 ++--
src/util/testpkg.c | 6 ++--
src/util/vercmp.c | 8 +++---
57 files changed, 330 insertions(+), 429 deletions(-)
delete mode 100644 lib/libalpm/provide.c
delete mode 100644 lib/libalpm/provide.h
hooks/post-receive
--
The official pacman repository
More information about the pacman-dev
mailing list