[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.0.2-132-gc7321a7

Dan McGee dan at archlinux.org
Mon Feb 13 11:15:05 EST 2012


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  c7321a7b80aebeacb05ad5ab9d096779403b1758 (commit)
       via  115c0381c235100d7b05d9751767017a9ee325c4 (commit)
       via  48d63048f1b6f8e2ce2a3bd3a3fd08997a5562fc (commit)
       via  991be2867259ee58d43a5005eec466ef2b546af5 (commit)
       via  e530993392dc2ac54e566a45df6c974aa68aaa23 (commit)
       via  7a3f59cd66a4f70641b863ebaaf52674b921bf3c (commit)
       via  8741551dc94d506df72b5ae8453bca1e4d50dbab (commit)
       via  3ba5391839b34823e97574cba2952d732c2729e0 (commit)
       via  20a16f55b32da071d362c2fa3faf1f55285d13a9 (commit)
       via  b4f5a63e7fee5d04949e290bd63e5f0e94bd211e (commit)
       via  e7bc1e3c9a122e4daeb6dcf23eebdd55711138a5 (commit)
       via  f8ae60bc28644fd46810fbab7d5acf143586dfd4 (commit)
       via  294f0fdf4df361e0d553eb650e1aacdb83f7bdf5 (commit)
       via  31432edcbe484a5fca01abff77359061ae813fcc (commit)
       via  9b1ab3d76713d99a11d8da2204557856d59bd3a5 (commit)
       via  ea32924c626b828b3752c021362a6e0e7f79885c (commit)
       via  594524146906a2dfe1ea334a90f88aec24d8833a (commit)
      from  f55be4897799c5a6dcb454455ad9edcfc36f8495 (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 c7321a7b80aebeacb05ad5ab9d096779403b1758
Merge: 115c038 b4f5a63
Author: Dan McGee <dan at archlinux.org>
Date:   Mon Feb 13 10:12:39 2012 -0600

    Merge branch 'maint'
    
    Conflicts:
    	lib/libalpm/sync.c
    	src/util/pactree.c

commit 115c0381c235100d7b05d9751767017a9ee325c4
Author: Nathan Phillip Brink <binki at gentoo.org>
Date:   Tue Oct 18 03:42:17 2011 +0000

    Use AM_PATH_GPGME macro from gpgme instead of home-built gpgme detection.
    
    Fixes compilation on Gentoo, where CPPFLAGS=-I/usr/include/gpgme is
    necessary.
    
    The AC_SYS_LARGEFILE macro call has to be before the GPGME checks,
    otherwise the GPGME header gives an error about ABI incompatibilities.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 48d63048f1b6f8e2ce2a3bd3a3fd08997a5562fc
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Feb 12 11:59:52 2012 +1000

    Add gpgme m4 autoconf macro file
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 991be2867259ee58d43a5005eec466ef2b546af5
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Feb 12 09:50:34 2012 +1000

    Do not check for ALPM_ERR_PKG_INVALID_ARCH on remove operation
    
    alpm_trans_prepare can not return ALPM_ERR_PKG_INVALID_ARCH on a
    remove operation so there is no point in checking for it.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit e530993392dc2ac54e566a45df6c974aa68aaa23
Author: Allan McRae <allan at archlinux.org>
Date:   Sat Feb 11 16:56:02 2012 +1000

    testpkg: set gpgdir
    
    Without setting gpgdir, testpkg outputs:
    warning: Public keyring not found; have you run 'pacman-key --init'?
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 7a3f59cd66a4f70641b863ebaaf52674b921bf3c
Author: Allan McRae <allan at archlinux.org>
Date:   Sat Feb 11 16:17:59 2012 +1000

    Reset errno before opening archive
    
    Set errno to 0 at the start of _alpm_open_archive as it is not set when
    archive_read_open_fd fails.  This can result in _alpm_pkg_load_internal
    thinking errno == ENOENT and setting the wrong pm_errno. e.g.
    
    Before:
    > testpkg pacman-4.0.1-4-i686.pkg.tar.gz.sig
    error: could not open file pacman-4.0.1-4-i686.pkg.tar.gz.sig: Unrecognized archive format
    Cannot find the given file.
    
    After:
    > testpkg pacman-4.0.1-4-i686.pkg.tar.gz.sig
    error: could not open file pacman-4.0.1-4-i686.pkg.tar.gz.sig: Unrecognized archive format
    Cannot open the given file.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 8741551dc94d506df72b5ae8453bca1e4d50dbab
Author: Allan McRae <allan at archlinux.org>
Date:   Sat Feb 11 15:16:40 2012 +1000

    Move ROOTDIR definition into config.h
    
    This was the only variable of its kind when a define was done on the
    compiler command line.  Move it into config.h instead.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 3ba5391839b34823e97574cba2952d732c2729e0
Author: Allan McRae <allan at archlinux.org>
Date:   Fri Feb 10 16:26:37 2012 +1000

    Allow specifying shell for running scriptlets
    
    Some distributions insist on using bash specific commands in their
    install scripts under the assumption that "sh" is a symlink to bash.
    This can causes issues if (e.g.) their users what to change sh to
    point at another shell, such as dash, that does not support these
    features. Add a configure option to explicitly set the shell being
    used to run install scripts.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 20a16f55b32da071d362c2fa3faf1f55285d13a9
Author: Florian Pritz <bluewind at xinu.at>
Date:   Tue Feb 7 18:43:59 2012 +0100

    use _alpm_access in a few more places for increased debugging info
    
    pacman -U <pkg> returns a bogus "could not find or read package" if the
    file is on a fuse file system that doesn't allow root access. Debug
    output isn't very helpful here either so we should log why the access
    check failed.
    
    The other 2 checks already log something when failing so logging a more
    specific error won't hurt either.
    
    Signed-off-by: Florian Pritz <bluewind at xinu.at>
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Summary of changes:
 NEWS                          |   25 ++++
 configure.ac                  |   65 +++++++--
 doc/index.txt                 |    1 +
 lib/libalpm/alpm.h            |    6 +-
 lib/libalpm/be_package.c      |    2 +-
 lib/libalpm/be_sync.c         |    2 +-
 lib/libalpm/po/fr.po          |   25 ++--
 lib/libalpm/sync.c            |    2 +-
 lib/libalpm/trans.c           |    2 +-
 lib/libalpm/util.c            |    3 +-
 m4/gpgme.m4                   |  307 +++++++++++++++++++++++++++++++++++++++++
 scripts/makepkg.sh.in         |   13 ++-
 scripts/po/ca.po              |   90 ++++++-------
 scripts/po/cs.po              |   61 ++------
 scripts/po/da.po              |   35 ++---
 scripts/po/de.po              |   98 +++++++-------
 scripts/po/el.po              |   89 +++++-------
 scripts/po/en_GB.po           |    7 +-
 scripts/po/es.po              |   71 +++-------
 scripts/po/fi.po              |  217 ++++++++++++++---------------
 scripts/po/fr.po              |  179 ++++++++++++-------------
 scripts/po/hu.po              |   93 ++++++-------
 scripts/po/it.po              |   90 +++++-------
 scripts/po/kk.po              |   50 ++-----
 scripts/po/lt.po              |  306 ++++++++++++++++++++---------------------
 scripts/po/nb.po              |  110 +++++++---------
 scripts/po/pacman-scripts.pot |    5 +-
 scripts/po/pl.po              |   58 ++------
 scripts/po/pt.po              |  104 ++++++--------
 scripts/po/pt_BR.po           |  115 +++++++--------
 scripts/po/ro.po              |   91 +++++-------
 scripts/po/ru.po              |   57 ++------
 scripts/po/sk.po              |   96 ++++++-------
 scripts/po/sr.po              |   61 ++------
 scripts/po/sr at latin.po        |   61 ++------
 scripts/po/sv.po              |   36 ++----
 scripts/po/tr.po              |   90 +++++-------
 scripts/po/uk.po              |   65 ++-------
 scripts/po/zh_CN.po           |   92 +++++-------
 scripts/po/zh_TW.po           |    7 +-
 src/pacman/Makefile.am        |    1 -
 src/pacman/pacman.c           |   10 +-
 src/pacman/po/fi.po           |   34 +++---
 src/pacman/po/fr.po           |   61 ++++----
 src/pacman/po/hu.po           |    6 +-
 src/pacman/po/it.po           |   17 +--
 src/pacman/remove.c           |    6 -
 src/pacman/util.c             |    2 +-
 src/util/Makefile.am          |    3 +-
 src/util/pactree.c            |   12 +-
 src/util/testpkg.c            |    3 +
 51 files changed, 1504 insertions(+), 1538 deletions(-)
 create mode 100644 m4/gpgme.m4


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list