[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.4.2-223-g281a4c0

Dan McGee dan at archlinux.org
Sat Jan 8 11:35:43 EST 2011


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  281a4c0a4f2de217b5d23939fb78b3bbfccc34ca (commit)
       via  62f5da377920c4e7823c4f8b8fb3673c9c2739e9 (commit)
       via  f966f3a8344cd96bd675c79a5c470c66920b890c (commit)
       via  4bc6ed56aa48784c8caf56c3a6fb1a3c972d221c (commit)
       via  d288240426551e9d58a708e28fe0217e56d017d6 (commit)
      from  04dc87e01247ab2ba932af0911e77ca1d711cf0f (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 281a4c0a4f2de217b5d23939fb78b3bbfccc34ca
Author: Xavier Chantry <chantry.xavier at gmail.com>
Date:   Sun Oct 17 11:47:59 2010 +0200

    libalpm/be_package.c: fix small memleak
    
    file_pkg_ops can be a static struct like in other backends, we just need
    to initialize it at some point.
    
    Dan: add initialization flag.
    
    Signed-off-by: Xavier Chantry <chantry.xavier at gmail.com>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 62f5da377920c4e7823c4f8b8fb3673c9c2739e9
Author: Dan McGee <dan at archlinux.org>
Date:   Fri Jan 7 21:06:06 2011 -0600

    Fix some more simple conversion "errors"
    
    None of these warn at the normal "-Wall -Werror" level, but casts do occur
    that we are fine with. Make them explicit to silence some warnings when
    using "-Wconversion".
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit f966f3a8344cd96bd675c79a5c470c66920b890c
Author: Allan McRae <allan at archlinux.org>
Date:   Wed Dec 8 15:13:36 2010 +1000

    Use size_t for alpm_list sizes
    
    There is a lot of swtiching between size_t and int for alpm_list sizes
    in the codebase.   Start converting these to all be size_t by adjusting
    the return type of alpm_list_count and fixing all additional warnings
    given by -Wconversion that are generated by this change.
    
    Dan: a few more small changes to ensure things compile, adjusting some
    printf format string characters to accommodate the larger size on x86_64.
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 4bc6ed56aa48784c8caf56c3a6fb1a3c972d221c
Author: Dan McGee <dan at archlinux.org>
Date:   Fri Jan 7 20:35:43 2011 -0600

    Refactor old date parsing into single method
    
    We've managed to duplicate this four times at this point, so make it a
    method in util.c instead.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit d288240426551e9d58a708e28fe0217e56d017d6
Author: Allan McRae <allan at archlinux.org>
Date:   Thu Jan 6 14:45:15 2011 +1000

    Update copyright years for 2011
    
    Signed-off-by: Allan McRae <allan at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Summary of changes:
 doc/index.txt                   |    2 +-
 lib/libalpm/add.c               |    6 +++---
 lib/libalpm/add.h               |    2 +-
 lib/libalpm/alpm.c              |    2 +-
 lib/libalpm/alpm.h              |    4 ++--
 lib/libalpm/alpm_list.c         |   10 +++++-----
 lib/libalpm/alpm_list.h         |    8 ++++----
 lib/libalpm/backup.c            |    2 +-
 lib/libalpm/backup.h            |    2 +-
 lib/libalpm/be_local.c          |   29 ++++-------------------------
 lib/libalpm/be_package.c        |   38 ++++++++++++--------------------------
 lib/libalpm/be_sync.c           |   17 +++--------------
 lib/libalpm/conflict.c          |   10 +++++-----
 lib/libalpm/conflict.h          |    2 +-
 lib/libalpm/db.c                |    4 ++--
 lib/libalpm/db.h                |    2 +-
 lib/libalpm/delta.c             |    2 +-
 lib/libalpm/delta.h             |    2 +-
 lib/libalpm/deps.c              |    7 ++++---
 lib/libalpm/deps.h              |    2 +-
 lib/libalpm/diskspace.c         |   24 ++++++++++++------------
 lib/libalpm/diskspace.h         |    2 +-
 lib/libalpm/dload.c             |    4 ++--
 lib/libalpm/dload.h             |    2 +-
 lib/libalpm/error.c             |    2 +-
 lib/libalpm/graph.h             |    2 +-
 lib/libalpm/group.c             |    2 +-
 lib/libalpm/group.h             |    2 +-
 lib/libalpm/handle.c            |    2 +-
 lib/libalpm/handle.h            |    2 +-
 lib/libalpm/log.c               |    2 +-
 lib/libalpm/log.h               |    2 +-
 lib/libalpm/package.c           |    2 +-
 lib/libalpm/package.h           |    2 +-
 lib/libalpm/remove.c            |   12 ++++++------
 lib/libalpm/remove.h            |    2 +-
 lib/libalpm/sync.c              |    4 ++--
 lib/libalpm/sync.h              |    2 +-
 lib/libalpm/trans.c             |    2 +-
 lib/libalpm/trans.h             |    2 +-
 lib/libalpm/util.c              |   24 +++++++++++++++++++-----
 lib/libalpm/util.h              |    3 ++-
 lib/libalpm/version.c           |    2 +-
 scripts/makepkg.sh.in           |    4 ++--
 scripts/pacman-db-upgrade.sh.in |    4 ++--
 scripts/pacman-optimize.sh.in   |    4 ++--
 src/pacman/callback.c           |   13 +++++++------
 src/pacman/callback.h           |    4 ++--
 src/pacman/conf.c               |    2 +-
 src/pacman/conf.h               |    2 +-
 src/pacman/database.c           |    2 +-
 src/pacman/deptest.c            |    2 +-
 src/pacman/package.c            |    4 ++--
 src/pacman/package.h            |    2 +-
 src/pacman/pacman.c             |   10 +++++-----
 src/pacman/pacman.h             |    2 +-
 src/pacman/query.c              |   10 +++++-----
 src/pacman/remove.c             |    2 +-
 src/pacman/sync.c               |    4 ++--
 src/pacman/upgrade.c            |    2 +-
 src/pacman/util.c               |   17 ++++++++---------
 src/pacman/util.h               |    2 +-
 src/util/cleanupdelta.c         |    2 +-
 src/util/pactree.c              |    4 ++--
 src/util/vercmp.c               |    2 +-
 65 files changed, 164 insertions(+), 194 deletions(-)


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list