[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.2.0-64-g95da285

Allan McRae allan at archlinux.org
Fri Jan 2 11:49:08 UTC 2015


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  95da285f5670a56faf3bac0d999a6ba6d7153fab (commit)
       via  8da9be0955fc759f43c40dab8985f9d17ac8462a (commit)
       via  4060c5c77f41f69b26597dcc6d9285cf546000cf (commit)
       via  0acd794226e50bae1c776aba863baee400279410 (commit)
       via  62d5a71fba691e73b216036aa8fc16e5ea07a874 (commit)
       via  aa4c61f9993cf634e610a98643304bd6978c61d1 (commit)
       via  e8a3e3d81a4aee62db24f66b71c01d8a996d41d5 (commit)
       via  194dea2de10c3507608e4f826c66802671a719a8 (commit)
       via  fafcbdeb8c7af439f2f3b85fa82f27b1dd4a3f79 (commit)
       via  89b9e9d1dced68587b704cb9e9a2aab55fb60b06 (commit)
       via  80e6d8a6fe3c94e9a385322494b27885837b7b3a (commit)
       via  ca5a2771aeb0babca8270b83b0cb0172db4cebe5 (commit)
       via  39fe2d0e39956961bdcb9c4bd78ca11247f044bd (commit)
      from  f1e010a5a7c562da02a74ffb043520760db49ba3 (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 95da285f5670a56faf3bac0d999a6ba6d7153fab
Author: Mohammad Alsaleh <ce.mohammad.alsaleh at gmail.com>
Date:   Tue Dec 30 17:14:08 2014 +0200

    pkgdelta: Use high compression options offered by xdelta3
    
     * Add -9 which is the highest compression level.
     * Use lzma for secondary compression.
    
     Decompression speed is largely unaffected as most cycles are consumed
     by xz for re-compression.
    
     Some numbers:
    
     clang x86_64 [3.5.0-2.1 to 3.5.0-3]
     17.21MiB      default      (0.73)
     15.67MiB      -9           (0.67)
     13.59MiB      -9 -S djw    (0.58)
     12.01MiB      -9 -S lzma   (0.51)
    
     inkscape x86_64 [0.48.5-3 to 0.48.5-4]
     02.69MiB      default      (0.21)
     01.64MiB      -9           (0.13)
     01.30MiB      -9 -S djw    (0.10)
     01.01MiB      -9 -S lzma   (0.08)
    
    Signed-off-by: Mohammad Alsaleh <CE.Mohammad.AlSaleh at gmail.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 8da9be0955fc759f43c40dab8985f9d17ac8462a
Author: Andrew Gregory <andrew.gregory.8 at gmail.com>
Date:   Thu Jan 1 19:00:23 2015 -0500

    initialize pointers passed to _alpm_pkg_dup
    
    _alpm_pkg_dup leaves the destination pointer unaltered in case of fatal
    errors, so when commits 2f0ca00e and be4198b3 freed the pointer, they
    fixed a memory leak on non-fatal errors by replacing it with
    a segmentation fault on fatal errors.
    
    Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 4060c5c77f41f69b26597dcc6d9285cf546000cf
Author: Andrew Gregory <andrew.gregory.8 at gmail.com>
Date:   Thu Jan 1 19:00:22 2015 -0500

    be_package.c: fix style violation
    
    Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 0acd794226e50bae1c776aba863baee400279410
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Dec 28 21:48:07 2014 +1000

    add alpm_pkg_get_base() to README
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 62d5a71fba691e73b216036aa8fc16e5ea07a874
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Dec 28 21:33:16 2014 +1000

    Remove testdb
    
    Replaced by pacman -Dk / -Dkk
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit aa4c61f9993cf634e610a98643304bd6978c61d1
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Dec 28 22:00:57 2014 +1000

    Document database checking options
    
    The required adding a Database Option section to the pacman man page
    and adding more complete documentation for --asdeps and --asexplicit
    as well.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit e8a3e3d81a4aee62db24f66b71c01d8a996d41d5
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Dec 28 21:28:59 2014 +1000

    Integrate testdb into pacman
    
    The functionality of testdb is now available in pacman. pacman -Dk will
    check the local database for consistency, and pacman -Dkk will check the
    sync databases.
    
    Note that unlike testdb, you can not specify individual sync databases to
    check as sync databases act as a whole and not individually. A single database
    can be checked using an alternative pacman.conf file.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 194dea2de10c3507608e4f826c66802671a719a8
Author: Allan McRae <allan at archlinux.org>
Date:   Sun Dec 28 19:08:59 2014 +1000

    Split install reason changing into its own function
    
    Prepare for other functions to be added to the --database option.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit fafcbdeb8c7af439f2f3b85fa82f27b1dd4a3f79
Merge: f1e010a 89b9e9d
Author: Allan McRae <allan at archlinux.org>
Date:   Fri Jan 2 21:43:56 2015 +1000

    Merge branch 'maint'

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

Summary of changes:
 NEWS                     |   3 +
 README                   |   8 ++
 contrib/updpkgsums.sh.in |   8 +-
 doc/PKGBUILD.5.txt       |   9 +-
 doc/pacman.8.txt         |  29 ++++-
 etc/makepkg.conf.in      |   2 +-
 lib/libalpm/be_package.c |   3 +-
 lib/libalpm/db.c         |   2 +-
 lib/libalpm/deps.c       |   2 +-
 scripts/makepkg.sh.in    |   2 +-
 scripts/pkgdelta.sh.in   |   2 +-
 src/pacman/database.c    | 218 +++++++++++++++++++++++++++++++++-
 src/pacman/pacman.c      |  23 +++-
 src/pacman/util.c        |   2 +-
 src/util/.gitignore      |   2 -
 src/util/Makefile.am     |   5 +-
 src/util/testdb.c        | 297 -----------------------------------------------
 17 files changed, 286 insertions(+), 331 deletions(-)
 delete mode 100644 src/util/testdb.c


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list