[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.4.3-310-g111e07d
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 111e07d0be44b76b910c6a004421ede4f6f6fb49 (commit) via b6ec9019d77c41edd86094a867fbb3970c6b4ebe (commit) via b8d01dace84a379d9104ae35f98c94b96103b6bc (commit) via 09f9f2433173477c0b0d269203e0f40df0907aa9 (commit) via 986edb8bd4308b73ef225a554f13a07c232ead91 (commit) via d6a9436143920f794d785423ac35eb351d791776 (commit) via 2d5ec02d7c82bdef1a9fb0565dcb67564968a8c0 (commit) via ed1aef7bc5caac95358c4827f162a845230051a2 (commit) via 2e1b5c96a639e4196c018dff0ad05ba0027f303c (commit) from e263cf7231c5d6ec41a15cd6230dbd794b58287a (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 111e07d0be44b76b910c6a004421ede4f6f6fb49 Author: Florian Pritz <bluewind@xssn.at> Date: Fri Oct 1 16:42:09 2010 +0200 make -d less strict; add -dd option -d skips checking the version of a dependency. -dd skips the whole dependency check. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Florian Pritz <bluewind@server-speed.net> Signed-off-by: Dan McGee <dan@archlinux.org> commit b6ec9019d77c41edd86094a867fbb3970c6b4ebe Author: Xavier Chantry <chantry.xavier@gmail.com> Date: Thu Oct 14 11:28:25 2010 +0200 alpm/depcmp: new NODEPVERSION flag This flag allows to disable version checking in dependency resolving code. depcmp_tolerant respects the NODEPVERSION flag but we still keep the original strict depcmp. The idea is to reduce the impact of the NODEPVERSION flag by using it in fewer places. I replaced almost all depcmp calls by depcmp_tolerant in deps.c (except in the public find_satisfier used by deptest / pacman -T), but I kept depcmp in sync.c and conflict.c Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org> commit b8d01dace84a379d9104ae35f98c94b96103b6bc Author: Xavier Chantry <chantry.xavier@gmail.com> Date: Sun Oct 10 19:51:07 2010 +0200 add pactests for -Sdd Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org> commit 09f9f2433173477c0b0d269203e0f40df0907aa9 Author: Dan McGee <dan@archlinux.org> Date: Sat Jan 29 12:10:05 2011 -0600 Allow both cleanmethod values to be specified at the same time No reason to disallow this- it allows keeping even more packages around in the cache. Test cases included for this case and to ensure the default behavior is preserved. Signed-off-by: Dan McGee <dan@archlinux.org> commit 986edb8bd4308b73ef225a554f13a07c232ead91 Author: Dan McGee <dan@archlinux.org> Date: Sat Jan 29 11:30:01 2011 -0600 Style cleanups in clean cache code Signed-off-by: Dan McGee <dan@archlinux.org> commit d6a9436143920f794d785423ac35eb351d791776 Author: Dan McGee <dan@archlinux.org> Date: Sat Jan 29 11:26:48 2011 -0600 Add three clean cache tests The first two are rather standard tests of our two available clean options, and the third is attempting to test a reported bug (and failing to make the given case fail). Signed-off-by: Dan McGee <dan@archlinux.org> commit 2d5ec02d7c82bdef1a9fb0565dcb67564968a8c0 Author: Dan McGee <dan@archlinux.org> Date: Sat Jan 29 11:25:56 2011 -0600 pactest: allow checking for cache file existence This will allow some tests to be added for cache cleaning. Signed-off-by: Dan McGee <dan@archlinux.org> commit ed1aef7bc5caac95358c4827f162a845230051a2 Author: Xavier Chantry <chantry.xavier@gmail.com> Date: Sun Jan 30 13:09:11 2011 +0100 libalpm: fix db_update documentation return codes were mixed up Signed-off-by: Dan McGee <dan@archlinux.org> commit 2e1b5c96a639e4196c018dff0ad05ba0027f303c Author: Dan McGee <dan@archlinux.org> Date: Sat Jan 29 13:34:51 2011 -0600 Call count() once in callback Signed-off-by: Dan McGee <dan@archlinux.org> ----------------------------------------------------------------------- Summary of changes: doc/pacman.8.txt | 7 +- doc/pacman.conf.5.txt | 6 +- lib/libalpm/alpm.h | 2 +- lib/libalpm/be_sync.c | 25 ++++---- lib/libalpm/deps.c | 43 +++++++++++--- lib/libalpm/deps.h | 1 + src/pacman/callback.c | 5 +- src/pacman/conf.h | 4 +- src/pacman/pacman.c | 30 +++++++--- src/pacman/sync.c | 92 +++++++++++++++-------------- test/pacman/pmrule.py | 7 ++ test/pacman/pmtest.py | 19 ++++++- test/pacman/tests/clean001.py | 26 ++++++++ test/pacman/tests/clean002.py | 26 ++++++++ test/pacman/tests/clean003.py | 16 +++++ test/pacman/tests/clean004.py | 30 ++++++++++ test/pacman/tests/clean005.py | 29 +++++++++ test/pacman/tests/sync-nodepversion01.py | 16 +++++ test/pacman/tests/sync-nodepversion02.py | 15 +++++ test/pacman/tests/sync-nodepversion03.py | 15 +++++ test/pacman/tests/sync-nodepversion04.py | 15 +++++ test/pacman/tests/sync-nodepversion05.py | 19 ++++++ test/pacman/tests/sync-nodepversion06.py | 19 ++++++ test/pacman/tests/sync045.py | 4 +- test/pacman/tests/upgrade072.py | 2 +- 25 files changed, 385 insertions(+), 88 deletions(-) create mode 100644 test/pacman/tests/clean001.py create mode 100644 test/pacman/tests/clean002.py create mode 100644 test/pacman/tests/clean003.py create mode 100644 test/pacman/tests/clean004.py create mode 100644 test/pacman/tests/clean005.py create mode 100644 test/pacman/tests/sync-nodepversion01.py create mode 100644 test/pacman/tests/sync-nodepversion02.py create mode 100644 test/pacman/tests/sync-nodepversion03.py create mode 100644 test/pacman/tests/sync-nodepversion04.py create mode 100644 test/pacman/tests/sync-nodepversion05.py create mode 100644 test/pacman/tests/sync-nodepversion06.py hooks/post-receive -- The official pacman repository
participants (1)
-
dan@archlinux.org