[pacman-dev] [GIT] The official pacman repository branch, master, updated. v4.0.0rc1-98-ge1dce07

Dan McGee dan at archlinux.org
Thu Aug 25 17:15:55 EDT 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  e1dce078b247142f7db80bf2d338e431df34691e (commit)
       via  6aa9fdce5ac59f4137567c17043fdd9e73b03518 (commit)
       via  0ee3ce70a88a42387d19f0d58901fda21b0161b7 (commit)
       via  73fcf17041cf00e0b6c3082bd354b8eaab412dab (commit)
       via  30cad47fb91dec0748551cb7d8607871b95785e5 (commit)
       via  f7a3c4c8df95ad99e05dfd29c61d6877b13b09da (commit)
       via  2e7d002315066400ccb1e62dacb3500fa3aa6015 (commit)
       via  f0357e415c10c10e691c1ed881b1c1ebe32e3084 (commit)
       via  5c48ca3239f56dfdae1d82ce03140bc310a6213e (commit)
      from  268d0bbcbed29b684af7478467bab4bdc2785636 (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 e1dce078b247142f7db80bf2d338e431df34691e
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 23:19:06 2011 -0500

    Remove argument from check_pgp_helper
    
    This one wasn't all that necessary as we only used it in one place in
    the function, which can be checked easily enough at the call site.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 6aa9fdce5ac59f4137567c17043fdd9e73b03518
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Aug 25 00:07:03 2011 -0500

    Remove trans is NULL check in QUESTION/EVENT/PROGRESS macros
    
    trans cannot (and better not) be NULL at any point when these are being
    called.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 0ee3ce70a88a42387d19f0d58901fda21b0161b7
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 22:13:26 2011 -0500

    Remove short/long label distinction
    
    We only used short labels in one place, and the short label is always
    the first character of the long label anyway.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 73fcf17041cf00e0b6c3082bd354b8eaab412dab
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 21:55:56 2011 -0500

    Slight refresh of the download progress callback
    
    This cleans up some of the mess we have here.
    
    * switch to long units for the download size
    * omit the .0 decimal part from the download rate
    * omit the almost always zero HH: from estimated time if eta_h == 0
    * Display --:-- if eta_h > 99; formatting was screwed up before
    
    The net result of this is we usually have 1 more character to use for
    filename display.
    
    Before:
     extra                   500.9K 1242.4K/s 00:00:00 [######################] 100%
     community-testing       947.0B   28.2M/s 00:00:00 [######################] 100%
     multilib                 26.5K  405.1K/s 00:00:00 [######################] 100%
     community               450.6K 1238.3K/s 00:00:00 [######################] 100%
    
    After:
     extra                    500.9 KiB  1118K/s 00:00 [######################] 100%
     community-testing        947.0   B    23M/s 00:00 [######################] 100%
     multilib                  26.5 KiB   255K/s 00:00 [######################] 100%
     community                450.6 KiB  1211K/s 00:00 [######################] 100%
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 30cad47fb91dec0748551cb7d8607871b95785e5
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 21:52:32 2011 -0500

    Add a few more sizes to humanize_sizes()
    
    Because why the hell not? Exbibyte, zebibyte, and yobibyte are going in,
    even though nothing bigger than the 2^60 exbibyte can be represented
    using an off_t variable anyway.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit f7a3c4c8df95ad99e05dfd29c61d6877b13b09da
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 19:58:14 2011 -0500

    Finish large file download attack prevention
    
    This handles the no Content-Length header problem as stated in the
    comments of FS#23413. We add a quick check to the callback that will
    force an abort if the downloaded data exceeds the payload size, and then
    check for this error in the post-download cleanup code.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 2e7d002315066400ccb1e62dacb3500fa3aa6015
Author: Dan McGee <dan at archlinux.org>
Date:   Wed Aug 24 19:48:03 2011 -0500

    Use off_t rather than double where possible
    
    Beautiful of libcurl to use floating point types for what are never
    fractional values. We can do better, and we usually want these values in
    their integer form anyway.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit f0357e415c10c10e691c1ed881b1c1ebe32e3084
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Aug 25 16:04:09 2011 -0500

    Add new 'lt' and 'zh_TW' translations from transifex
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 5c48ca3239f56dfdae1d82ce03140bc310a6213e
Author: Dan McGee <dan at archlinux.org>
Date:   Thu Aug 25 15:53:25 2011 -0500

    Update existing translations from Transifex
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Summary of changes:
 lib/libalpm/be_package.c                    |    3 +-
 lib/libalpm/be_sync.c                       |    3 +-
 lib/libalpm/dload.c                         |   39 +-
 lib/libalpm/dload.h                         |    4 +-
 lib/libalpm/po/LINGUAS                      |    2 +
 lib/libalpm/po/{sr at latin.po => lt.po}       |  297 ++++++------
 lib/libalpm/po/sv.po                        |   11 +-
 lib/libalpm/po/uk.po                        |  186 ++++----
 lib/libalpm/po/{zh_CN.po => zh_TW.po}       |  290 ++++++------
 lib/libalpm/signing.c                       |    7 +-
 lib/libalpm/signing.h                       |    3 +-
 lib/libalpm/trans.h                         |    6 +-
 scripts/po/LINGUAS                          |    2 +
 scripts/po/ca.po                            |   10 +-
 scripts/po/cs.po                            |   10 +-
 scripts/po/da.po                            |   10 +-
 scripts/po/de.po                            |   91 +++-
 scripts/po/el.po                            |   10 +-
 scripts/po/en_GB.po                         |   10 +-
 scripts/po/es.po                            |   10 +-
 scripts/po/fi.po                            |   10 +-
 scripts/po/fr.po                            |   10 +-
 scripts/po/hu.po                            |   10 +-
 scripts/po/it.po                            |   10 +-
 scripts/po/kk.po                            |   10 +-
 scripts/po/{it.po => lt.po}                 |  728 ++++++++++++++-------------
 scripts/po/nb.po                            |   10 +-
 scripts/po/pl.po                            |   10 +-
 scripts/po/pt.po                            |   10 +-
 scripts/po/pt_BR.po                         |   10 +-
 scripts/po/ro.po                            |   10 +-
 scripts/po/ru.po                            |   10 +-
 scripts/po/sk.po                            |   10 +-
 scripts/po/sr.po                            |   10 +-
 scripts/po/sr at latin.po                      |   10 +-
 scripts/po/sv.po                            |   25 +-
 scripts/po/tr.po                            |   10 +-
 scripts/po/uk.po                            |   10 +-
 scripts/po/zh_CN.po                         |   10 +-
 scripts/po/{pacman-scripts.pot => zh_TW.po} |   14 +-
 src/pacman/callback.c                       |   32 +-
 src/pacman/package.c                        |    4 +-
 src/pacman/po/LINGUAS                       |    2 +
 src/pacman/po/ca.po                         |   36 +-
 src/pacman/po/cs.po                         |   36 +-
 src/pacman/po/da.po                         |   40 +-
 src/pacman/po/de.po                         |   43 +-
 src/pacman/po/el.po                         |   42 +-
 src/pacman/po/en_GB.po                      |   42 +-
 src/pacman/po/es.po                         |   36 +-
 src/pacman/po/fi.po                         |   36 +-
 src/pacman/po/fr.po                         |   42 +-
 src/pacman/po/hu.po                         |   36 +-
 src/pacman/po/it.po                         |   42 +-
 src/pacman/po/kk.po                         |   36 +-
 src/pacman/po/{pacman.pot => lt.po}         |  547 +++++++++++---------
 src/pacman/po/nb.po                         |   36 +-
 src/pacman/po/pl.po                         |   36 +-
 src/pacman/po/pt.po                         |   36 +-
 src/pacman/po/pt_BR.po                      |   36 +-
 src/pacman/po/ro.po                         |   42 +-
 src/pacman/po/ru.po                         |   36 +-
 src/pacman/po/sk.po                         |   42 +-
 src/pacman/po/sr.po                         |   36 +-
 src/pacman/po/sr at latin.po                   |   36 +-
 src/pacman/po/sv.po                         |  166 ++++---
 src/pacman/po/tr.po                         |   36 +-
 src/pacman/po/uk.po                         |  351 +++++++------
 src/pacman/po/zh_CN.po                      |   36 +-
 src/pacman/po/{zh_CN.po => zh_TW.po}        |  530 ++++++++++----------
 src/pacman/util.c                           |   22 +-
 src/pacman/util.h                           |    2 +-
 72 files changed, 2466 insertions(+), 2006 deletions(-)
 copy lib/libalpm/po/{sr at latin.po => lt.po} (54%)
 copy lib/libalpm/po/{zh_CN.po => zh_TW.po} (57%)
 copy scripts/po/{it.po => lt.po} (50%)
 copy scripts/po/{pacman-scripts.pot => zh_TW.po} (98%)
 copy src/pacman/po/{pacman.pot => lt.po} (54%)
 copy src/pacman/po/{zh_CN.po => zh_TW.po} (58%)


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list