[pacman-dev] [GIT] pacman branch, master now at v3.0.0-290-gcb164c3

Dan McGee dan at archlinux.org
Wed Jul 11 00:53:55 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  cb164c3130f15b22dbf16991c28ba609cd2f79de (commit)
       via  37736a56f9c5e4819a8f132a51bc0784c4b288ec (commit)
       via  39b654965580bfb7dc0ab72b8c901fbf7729a568 (commit)
       via  1646fcc5bdb71dc4d27204de88da952d95d5902c (commit)
       via  64e45a36f868ca0386393d6b6cf05ffff09b5439 (commit)
       via  d12c4f4b29458ff04671bf7b9686735ad988c775 (commit)
       via  ea1fef69add040b9e5b1de6e9238eda4576ccd3f (commit)
      from  9a9928f1b88f4fa08826aa83ff16e6ef38bd4e6c (commit)

- Log -----------------------------------------------------------------
commit cb164c3130f15b22dbf16991c28ba609cd2f79de
Author: Chantry Xavier <shiningxc at gmail.com>
Date:   Thu Jun 21 12:46:37 2007 +0200

    conflict.c: start cleaning conflict check functions
    
    The three chk_ functions overlap for packages both in targets and in the
    database. This caused the same conflict to be found in both direction
    (A conflicts with B, and B conflicts with A).
    
    This patch avoids this duplication. which shouldn't be needed, but other
    changes might be required for that to work correctly.
    
    This also has the unexpected side effect to hide the failure of sync022
    pactest, for FS #7415. That's maybe not a good thing though..
    
    Note from Dan: sync022 does succeed, but a sync023 pactest added to check
    regressions also seems to pass. This may be a valid fix to this 'problem'
    sync022 was meant to find.
    
    Signed-off-by: Chantry Xavier <shiningxc at gmail.com>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 37736a56f9c5e4819a8f132a51bc0784c4b288ec
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Jul 11 00:45:15 2007 -0400

    Add new pactest that is backwards of sync022
    
    sync022 was added here:
    39b654965580bfb7dc0ab72b8c901fbf7729a568
    
    This pactest reverses the installed package to see if it is correctly
    picked, in order to test some further changes to this depcheck code that
    currently makes sync022 fail.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 39b654965580bfb7dc0ab72b8c901fbf7729a568
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Jul 11 00:31:27 2007 -0400

    Update translation files on libalpm side after gettext change
    
    Because of this commit:
    ea1fef69add040b9e5b1de6e9238eda4576ccd3f
    we lost a lot of gettext-ized messages on the libalpm side. Remove them
    in order to clean out these files a bit.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 1646fcc5bdb71dc4d27204de88da952d95d5902c
Author: Sergej Pupykin <ps at lx-ltd.ru>
Date:   Tue Jul 10 23:36:15 2007 -0400

    Use mbstowcs instead of strlen where applicable
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 64e45a36f868ca0386393d6b6cf05ffff09b5439
Author: Dan McGee <dan at archlinux.org>
Date:   Tue Jul 10 14:58:45 2007 -0400

    Create the pacman DB and cachedir directories upon install
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit d12c4f4b29458ff04671bf7b9686735ad988c775
Author: Dan McGee <dan at archlinux.org>
Date:   Tue Jul 10 14:31:39 2007 -0400

    Fix issue with <dbpath>/db.lck being truncated
    
    snprintf takes a length including the '\0' character, this wasn't accounted
    for originally. Fix it.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit ea1fef69add040b9e5b1de6e9238eda4576ccd3f
Author: Dan McGee <dan at archlinux.org>
Date:   Tue Jul 10 14:24:58 2007 -0400

    Remove gettext calls from all PM_LOG_DEBUG messages
    
    There is no real reason to burden our translators with these messages, as
    anyone helping to debug these will probably want them in English.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

-----------------------------------------------------------------------

Diffstat:
 Makefile.am                              |    7 +
 lib/libalpm/add.c                        |   83 +-
 lib/libalpm/alpm.c                       |    3 +-
 lib/libalpm/be_files.c                   |   22 +-
 lib/libalpm/cache.c                      |   18 +-
 lib/libalpm/conflict.c                   |   41 +-
 lib/libalpm/db.c                         |   41 +-
 lib/libalpm/deps.c                       |   47 +-
 lib/libalpm/error.h                      |    2 +-
 lib/libalpm/handle.c                     |    9 +-
 lib/libalpm/md5driver.c                  |    2 +-
 lib/libalpm/package.c                    |   10 +-
 lib/libalpm/po/de.po                     | 1259 ++++----------------------
 lib/libalpm/po/en_GB.po                  | 1252 ++++----------------------
 lib/libalpm/po/es.po                     | 1267 ++++-----------------------
 lib/libalpm/po/fr.po                     | 1415 ++++--------------------------
 lib/libalpm/po/hu.po                     | 1257 ++++----------------------
 lib/libalpm/po/it.po                     | 1314 ++++------------------------
 lib/libalpm/po/libalpm.pot               | 1201 ++++----------------------
 lib/libalpm/po/pl_PL.po                  | 1263 ++++-----------------------
 lib/libalpm/po/pt_BR.po                  | 1235 ++++----------------------
 lib/libalpm/po/ru_RU.po                  | 1238 ++++----------------------
 lib/libalpm/remove.c                     |   39 +-
 lib/libalpm/server.c                     |   19 +-
 lib/libalpm/sha1.c                       |    2 +-
 lib/libalpm/sync.c                       |   82 +-
 lib/libalpm/trans.c                      |   16 +-
 lib/libalpm/util.c                       |    2 +-
 lib/libalpm/versioncmp.c                 |    4 +-
 pactest/tests/sync022.py                 |    2 +-
 pactest/tests/{sync022.py => sync023.py} |   12 +-
 src/pacman/pacman.c                      |   44 +-
 src/pacman/util.c                        |    6 +-
 33 files changed, 2076 insertions(+), 11138 deletions(-)

hooks/update
---
Git Source Code Management System
hooks/update refs/heads/master \
  9a9928f1b88f4fa08826aa83ff16e6ef38bd4e6c \
  cb164c3130f15b22dbf16991c28ba609cd2f79de




More information about the pacman-dev mailing list