[pacman-dev] [GIT] The official pacman repository branch, master, updated. v3.2.2-73-gc794661

Dan McGee dan at archlinux.org
Sun Jan 18 14:49:46 EST 2009


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  c794661f1ea8c819d479948e92e5648de62787c5 (commit)
       via  8929769902597f109fc6b49609fb64121becb197 (commit)
       via  350c3eb6ec25b91b0402fa86422a7312ba7330d6 (commit)
       via  472e51b975b9cb8fe1f67c03ff72bbc067fa7f01 (commit)
      from  fba5771fa4c774457531a4bbbcd66340c7c3fb6a (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 c794661f1ea8c819d479948e92e5648de62787c5
Merge: 8929769902597f109fc6b49609fb64121becb197 472e51b975b9cb8fe1f67c03ff72bbc067fa7f01
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Jan 18 13:48:48 2009 -0600

    Merge branch 'maint'

commit 8929769902597f109fc6b49609fb64121becb197
Author: Dan McGee <dan at archlinux.org>
Date:   Sat Jan 17 09:51:48 2009 -0600

    makepkg: test fixes, part 2
    
    The goal of this fix was empty string comparisons:
    -  if [ "$pkgname" != "" ]; then
    +  if [ -n "$pkgname" ]; then
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 350c3eb6ec25b91b0402fa86422a7312ba7330d6
Author: Dan McGee <dan at archlinux.org>
Date:   Sat Jan 17 09:42:23 2009 -0600

    makepkg: clean up test usage
    
    In a lot of places, we had the following construct:
      [ "$foobar" = "0" ]
    which is better represented by using the integer tests:
      [ $foobar -eq 0 ]
    
    Attempt to unify makepkg to use the latter rather than the former in all
    places. From here on out we should ensure anything that is set to 0, 1, etc.
    uses the -eq format rather than =.
    
    In addition, fix a few other test anomalies including usage of double
    equals.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Summary of changes:
 lib/libalpm/add.c     |    4 +-
 lib/libalpm/util.c    |    4 +-
 scripts/makepkg.sh.in |  135 +++++++++++++++++++++++++------------------------
 3 files changed, 72 insertions(+), 71 deletions(-)


hooks/post-receive
--
The official pacman repository


More information about the pacman-dev mailing list