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

Allan McRae allan at archlinux.org
Wed Sep 18 00:48:33 EDT 2013


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  2379eb1fa629eebd9de8c1a542734243ff2ef471 (commit)
       via  028490ddcf2dcf4130da6d50ce1adbc8dba17c03 (commit)
       via  5ef0c3caa56f696f32384a7bc90555bc369cd68a (commit)
       via  8561ad225672f57336fee357fa5d1f4f5a172870 (commit)
       via  ec15e859a4e69681cf6d1a5808ecc8a619e91a55 (commit)
       via  3b3152fc501a1561d733c33557ff2f7be8376067 (commit)
       via  3f99cfba1b6ef1c5665488b651a3d6409730fa98 (commit)
       via  93888089643b017390538d1f6f3a2d2aa9918851 (commit)
       via  de570d1a65a24dfc53797d4a53e2ff82ec814ab3 (commit)
       via  2091f7ab163926cdc6e6d5bfb1195ff36a6119a4 (commit)
       via  cfbc4fe8098dd992258648470b76d2dce081af01 (commit)
      from  61e806b96a8828152e78ab9eff03c490a23b22e9 (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 2379eb1fa629eebd9de8c1a542734243ff2ef471
Author: Xyne <xyne at archlinux.ca>
Date:   Wed Sep 18 03:01:23 2013 +0000

    makepkg: redirect downloader output to STDERR
    
    This allows scripts to safely capture the output of "makepkg -g".
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 028490ddcf2dcf4130da6d50ce1adbc8dba17c03
Author: Xyne <xyne at archlinux.ca>
Date:   Tue Sep 17 15:31:17 2013 +0000

    makepkg: include all hash types in integlist
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 5ef0c3caa56f696f32384a7bc90555bc369cd68a
Author: Xyne <xyne at archlinux.ca>
Date:   Tue Sep 17 09:19:26 2013 +0000

    bacman: optionally include unmodified backup files when available
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 8561ad225672f57336fee357fa5d1f4f5a172870
Author: Xyne <xyne at archlinux.ca>
Date:   Tue Sep 17 09:19:25 2013 +0000

    bacman: update copyright information in version function
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit ec15e859a4e69681cf6d1a5808ecc8a619e91a55
Author: Xyne <xyne at archlinux.ca>
Date:   Tue Sep 17 09:19:24 2013 +0000

    bacman: pass unshifted arguments to fakeroot
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 3b3152fc501a1561d733c33557ff2f7be8376067
Author: Christian Hesse <mail at eworm.de>
Date:   Thu Sep 5 16:08:23 2013 +0200

    dload: avoid renaming files downloaded via sync operations
    
    If the server redirects from ${repo}.db to ${repo}.db.tar.gz pacman gets
    this wrong: It saves to new filename and fails when accessing
    ${repo}.db.
    
    We need the remote filename only when downloading remote files with
    pacman's -U operation. This introduces a new field 'trust_remote_name'
    to payload. If set pacman downloads to the filename given by the server.
    
    The field trust_remote_name is set in alpm_fetch_pkgurl().
    
    Fixes FS#36791 ([pacman] downloads to wrong filename with redirect).
    
    [dave: remove redundant assignment leading to memory leak]
    
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 3f99cfba1b6ef1c5665488b651a3d6409730fa98
Author: Aaron Lindsay <aaron at aclindsay.com>
Date:   Thu Sep 5 14:46:29 2013 -0400

    contrib: Unify quoting in error messages
    
    This fixes error messages to display the contents of variables rather
    than the variable name by replacing backticks with single quotes (m4
    eats backticks). It also removes $"" localization from error messages to
    eliminate security holes.
    
    For instance, `rankmirrors nonexistent_file' will now display:
    	'nonexistent_file' does not exist.
    rather than:
    	$1 does not exist.
    
    Signed-off-by: Aaron Lindsay <aaron at aclindsay.com>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 93888089643b017390538d1f6f3a2d2aa9918851
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Tue Sep 3 20:03:04 2013 -0400

    makepkg: use c-style for loops for integrity checks
    
    These loops already maintain an independent loop counter, so cut out
    the middle man. While this change doesn't necessarily require that we
    drop support for sparse arrays, we do via this patch. A new lint check
    is added in check_sanity to abort when a sparse array is encountered.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit de570d1a65a24dfc53797d4a53e2ff82ec814ab3
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Tue Sep 3 18:12:53 2013 -0400

    makepkg: always use read's -r flag with filenames
    
    These are all cases where we're reading filenames -- any backslashes
    are intentional and should not be interpreted.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit 2091f7ab163926cdc6e6d5bfb1195ff36a6119a4
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Tue Sep 3 15:47:10 2013 -0400

    makepkg: inline creation of checksum indenting
    
    With some simple math and printf formatting tokens, we can create the
    whitespace necessary for this without the need for a loop and string
    concatentation.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Allan McRae <allan at archlinux.org>

commit cfbc4fe8098dd992258648470b76d2dce081af01
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Mon Sep 2 16:50:08 2013 -0400

    makepkg: cleanup a few format string injections
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Allan McRae <allan at archlinux.org>

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

Summary of changes:
 contrib/bacman.sh.in      | 87 ++++++++++++++++++++++++++++++++++-------------
 contrib/rankmirrors.sh.in | 10 +++---
 contrib/updpkgsums.sh.in  |  2 +-
 lib/libalpm/dload.c       | 38 ++++++++++++---------
 lib/libalpm/dload.h       |  1 +
 scripts/makepkg.sh.in     | 86 +++++++++++++++++++++-------------------------
 6 files changed, 131 insertions(+), 93 deletions(-)


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list