[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.1.2-516-g14dc338

Allan McRae allan at archlinux.org
Fri Dec 19 03:48:13 UTC 2014


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  14dc3389fdaf520b0d9adb8e6b5d441163889519 (commit)
       via  c9e9c1ccfda919146a7f456a240e2287d9fc63fe (commit)
       via  3af0268fdbafbeb0a2e45d3555ef9d224d89c29d (commit)
       via  df36fe2e79d5a5490b89c259bef7a1f150cff575 (commit)
       via  768b65e93472914c52cc1159c4932d4fc1438c14 (commit)
       via  16259d728e87c10533cd24f88aa7127fff48db2b (commit)
       via  0cd174efd5065dca26fcce180d853fe6323d3e12 (commit)
       via  a4b23417f9868e14fddf0e6f35e57ba05f029623 (commit)
       via  c54af84180d76c1d5c9febdae930dfe5379d7db5 (commit)
      from  ed4032a90813ba29ee11c71ac6af3090d96789ce (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 14dc3389fdaf520b0d9adb8e6b5d441163889519
Author: Allan McRae <allan at archlinux.org>
Date:   Thu Dec 18 21:54:43 2014 +1000

    Update NEWS for pacman-4.2 release
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit c9e9c1ccfda919146a7f456a240e2287d9fc63fe
Author: Allan McRae <allan at archlinux.org>
Date:   Thu Dec 18 17:20:58 2014 +1000

    Update README for pacman-4.2
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 3af0268fdbafbeb0a2e45d3555ef9d224d89c29d
Author: Andrew Gregory <andrew.gregory.8 at gmail.com>
Date:   Sat Nov 29 18:02:56 2014 -0500

    remove.c: honor inverted patterns in noupgrade
    
    Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit df36fe2e79d5a5490b89c259bef7a1f150cff575
Author: Andrew Gregory <andrew.gregory.8 at gmail.com>
Date:   Sat Nov 29 18:02:55 2014 -0500

    add alpm_option_match_noupgrade
    
    For parity with alpm_option_match_noextract.
    
    Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 768b65e93472914c52cc1159c4932d4fc1438c14
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Dec 14 13:45:06 2014 -0500

    updpkgsums: drop in-place rewrite hack, use a tempfile
    
    This apparently exposes (what I think is) a subtle bug in cygwin's
    handling of subst'd drives. Let's just drop the hackery and use a
    tempfile, which should always work.
    
    Also, introduce a proper die() function which replaces previous
    hand-rolled error+exit pattern, but which wrote to stdout.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 16259d728e87c10533cd24f88aa7127fff48db2b
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Dec 14 12:35:00 2014 -0500

    shut up GCC on -Wmaybe-initialized warnings
    
    Admittedly, these are totally bogus, but a clean build is a happy build.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 0cd174efd5065dca26fcce180d853fe6323d3e12
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Dec 14 12:35:01 2014 -0500

    makepkg: correctly add changelog files
    
    Before this, we'd see bizzare behavior of:
    
      -> Adding changelog file (systemd.install)...
    
    And, changelog files in the global section would not be added at all.
    
    The code is clearly wrong here, as it references 'install' within a
    loop of 'changelog' and 'install'. Let's use parameter indirection to
    ensure that the proper file is identified and added.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit a4b23417f9868e14fddf0e6f35e57ba05f029623
Author: Micah Saint Germain <micah at lexme.org>
Date:   Sun Dec 14 21:01:22 2014 -0500

    Fix pointer declarations to be globally consistent
    
    Refactored inconsistent pointer declarations to better improve consistency
    throughout the pacman codebase which will, in turn, increase readability to
    the user.
    
    Expected format of a pointer declaration:
    `typename *varname`
    
    Signed-off-by: Micah Saint Germain <micah at lexme.org>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit c54af84180d76c1d5c9febdae930dfe5379d7db5
Author: Miguel de Val-Borro <miguel at archlinux.net>
Date:   Sat Nov 29 19:32:55 2014 -0500

    doc/translation-help.txt: Transifex example usage
    
    Replace harcoded language code in example
    
    Signed-off-by: Miguel de Val-Borro <miguel at archlinux.net>
    Signed-off-by: Allan McRae <allan at archlinux.org>

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

Summary of changes:
 NEWS                                    | 81 +++++++++++++++++++++++++++++++++
 README                                  | 53 +++++++++++++++++++++
 contrib/updpkgsums.sh.in                | 37 +++++++++------
 doc/translation-help.txt                |  4 +-
 lib/libalpm/alpm.h                      |  1 +
 lib/libalpm/handle.c                    |  5 ++
 lib/libalpm/remove.c                    |  4 +-
 scripts/makepkg.sh.in                   |  2 +-
 src/pacman/callback.h                   |  2 +-
 src/pacman/conf.c                       |  2 +-
 src/pacman/pacman.c                     | 13 +++---
 src/pacman/sync.c                       |  2 +-
 src/util/pactree.c                      |  2 +-
 test/pacman/tests/TESTS                 |  1 +
 test/pacman/tests/noupgrade-inverted.py | 19 ++++++++
 15 files changed, 198 insertions(+), 30 deletions(-)
 create mode 100644 test/pacman/tests/noupgrade-inverted.py


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list