[pacman-dev] [GIT] pacman branch, master now at v3.0.0-208-g35a794c

Dan McGee dan at archlinux.org
Sat Jun 9 13:04:57 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  35a794c2ed4da7da44d3a04794fc90615e7c52e7 (commit)
       via  b6f3fe6957d0206485eac98fb2120578b75d0058 (commit)
       via  dfc85cb5f516ffbcff557522e9703c5c7d88b047 (commit)
       via  25c5b39d05cdb8856098429d0fa6f8da595d5af6 (commit)
       via  a32ca90192ea2b2df2fadb820c9e47bbaec93151 (commit)
       via  fc93601b9887ec42cd71339099eadc6fb7b775e5 (commit)
       via  a7f417f35c66e967fb4701f4722a54aa183595ef (commit)
       via  d317acaee8e9c20056a84ee0fc0089cc6610a412 (commit)
       via  430a19c604e474e90451e6421448a04abe348e6d (commit)
       via  564d779c2ccad4883abd002421045884444576c7 (commit)
      from  f7912e9dc6be71b177d546da0f8d005e7b4af9e8 (commit)

- Log -----------------------------------------------------------------
commit 35a794c2ed4da7da44d3a04794fc90615e7c52e7
Author: Dan McGee <dan at archlinux.org>
Date:   Mon Jun 4 14:50:16 2007 -0400

    Allow multiple CacheDirs to be specified
    
    This should hopefully allow multiple cache dirs to be specified in
    pacman.conf and/or on the command line, and allow pacman to test
    each one for the package file. The first one found to be writeable is
    used as the download cache.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit b6f3fe6957d0206485eac98fb2120578b75d0058
Author: Dan McGee <dan at archlinux.org>
Date:   Thu May 31 15:48:16 2007 -0400

    Implement a -Qt operation in frontend to test the database
    
    After adding a alpm_db_check() operation in the back end, we can call it
    in the front end and present a user-friendly interface to it.
    
    Inspired-by: VMiklos <vmiklos at frugalware.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit dfc85cb5f516ffbcff557522e9703c5c7d88b047
Author: VMiklos <vmiklos at frugalware.org>
Date:   Thu May 31 15:18:24 2007 -0400

    Add a alpm_db_test() function to the backend for checking DB consistency
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 25c5b39d05cdb8856098429d0fa6f8da595d5af6
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Jun 7 22:20:40 2007 -0400

    Fix up things after the last few changes
    
    * Readd default logmask of ERROR and WARNING
    * Remove DOWNLOAD log level as it no longer applies
    * Add 'no targets' logic back in where it applies
    * Switch some prints in parseconfig to ERROR
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit a32ca90192ea2b2df2fadb820c9e47bbaec93151
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Jun 7 20:55:13 2007 -0400

    Remove logmask stuff from backend; switch logging callback to new pm_printf
    
    Remove the logmask functionality from the backend as it has been moved to
    the frontend, and change the logging callback function to use pm_printf.
    
    In addition, make much better use of va_list- use the args list instead
    of a arbitrarily chosen string to print to in the logging functions.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit fc93601b9887ec42cd71339099eadc6fb7b775e5
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Jun 7 20:49:31 2007 -0400

    Revamp pacman.c main function ordering, switch some output to pm_printf
    
    Reorder some of the initilization stuff in pacman.c, as well as remove
    some code that should be reimplemented elsewhere- checking the target
    list to see if it is NULL.
    
    Change the temp printf statements in parseconfig to pm_printf as well.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit a7f417f35c66e967fb4701f4722a54aa183595ef
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Jun 7 15:46:06 2007 -0400

    Update configure.ac with a few new functions to check for
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit d317acaee8e9c20056a84ee0fc0089cc6610a412
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Jun 7 15:42:26 2007 -0400

    Add a series of pm_printf functions to pacman frontend
    
    Add pm_printf, pm_fprintf, and pm_vfprintf to the pacman frontend for use by
    debug printing and other output messages from pacman. These will be
    incorporated into the log callback functions in the next iteration of
    changes.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 430a19c604e474e90451e6421448a04abe348e6d
Author: Roman Kyrylych <roman at archlinux.org>
Date:   Sat Jun 9 12:26:43 2007 -0400

    makepkg: Make it possible to create an empty package
    
    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 564d779c2ccad4883abd002421045884444576c7
Author: Dan McGee <dan at archlinux.org>
Date:   Sat Jun 9 12:21:11 2007 -0400

    mirrorlist: Add Brazilian mirror
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Diffstat:
 configure.ac               |    5 +-
 doc/pacman.8               |    4 +
 etc/pacman.d/mirrorlist.in |    4 +
 lib/libalpm/alpm.h         |   15 ++--
 lib/libalpm/be_files.c     |   31 +++++++
 lib/libalpm/db.c           |   13 +++
 lib/libalpm/db.h           |    1 +
 lib/libalpm/handle.c       |   40 ++++++----
 lib/libalpm/handle.h       |    3 +-
 lib/libalpm/log.c          |   21 ++---
 lib/libalpm/log.h          |    2 -
 lib/libalpm/package.c      |   27 ++++++-
 lib/libalpm/server.c       |   10 +--
 lib/libalpm/sync.c         |  101 ++++++++++++++++-------
 lib/libalpm/util.c         |   15 ++--
 lib/libalpm/util.h         |    2 +-
 scripts/makepkg.in         |    4 +-
 src/pacman/add.c           |    3 +-
 src/pacman/callback.c      |   47 +----------
 src/pacman/callback.h      |    2 +-
 src/pacman/conf.c          |    2 +
 src/pacman/conf.h          |   15 ++++
 src/pacman/pacman.c        |  188 ++++++++++++++++++++------------------------
 src/pacman/query.c         |   20 +++++
 src/pacman/remove.c        |    3 +-
 src/pacman/sync.c          |    4 +-
 src/pacman/util.c          |   87 +++++++++++++++++++--
 src/pacman/util.h          |    3 +
 src/util/testpkg.c         |    7 +-
 29 files changed, 423 insertions(+), 256 deletions(-)

hooks/update
---
Git Source Code Management System
hooks/update refs/heads/master \
  f7912e9dc6be71b177d546da0f8d005e7b4af9e8 \
  35a794c2ed4da7da44d3a04794fc90615e7c52e7




More information about the pacman-dev mailing list