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

Dan McGee dan at archlinux.org
Sun Sep 18 18:42:51 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  41d8deff88ed7bdaf1820882687fb99107f60d2a (commit)
       via  86d9fcbfff6d806bcb6d0a19d73d09e1af4e1733 (commit)
       via  69a3558b75948e4b1592a060a58f6c1d58b7d459 (commit)
       via  49dff4c80b70f73f55cd8968e83d4ea3727c2ae3 (commit)
       via  83ee9708b1c0ed3c262e0148ea8cdc880f177d0d (commit)
       via  07e89c1e5db2769c1128f5d99fead151a4afc751 (commit)
       via  52c65fdfea7d174ad2f4d895c5783d936fdac7d7 (commit)
       via  c12fa4ab192da0a1cd5c61b2f70e154205401e6b (commit)
       via  b1a09b93ef626995a009ae3144fc130cc60a4078 (commit)
      from  223a92ca9da2efecefb200a828618747c0f5b03e (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 41d8deff88ed7bdaf1820882687fb99107f60d2a
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Sep 18 17:32:15 2011 -0500

    be_local: cope with a desc file without trailing newline
    
    We checked the (fgets == NULL and !feof) case, but never actually bailed
    out of the loop if we were at the end of the file, causing infinite
    looping.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 86d9fcbfff6d806bcb6d0a19d73d09e1af4e1733
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Sep 18 17:07:05 2011 -0500

    Remove const specifier from changelog_read() void parameter
    
    This shouldn't really be declared with const, and causes a compile error
    when -Wcast-qual is used. Remove the const specifier from the function
    specification and all implementations.
    
    Also fix one other trivial -Wcast-qual warning in _alpm_db_cmp().
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 69a3558b75948e4b1592a060a58f6c1d58b7d459
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Sep 18 17:03:54 2011 -0500

    Remove dead changelog_feof() code
    
    We never ended up using or really needing this; kill it for now knowing
    it is in git history if ever needed again.
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 49dff4c80b70f73f55cd8968e83d4ea3727c2ae3
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Sep 18 17:00:21 2011 -0500

    Add a random pactest
    
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 83ee9708b1c0ed3c262e0148ea8cdc880f177d0d
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Sep 18 16:22:38 2011 -0400

    src/util: provide strndup definitions where needed
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit 07e89c1e5db2769c1128f5d99fead151a4afc751
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Sep 18 17:22:18 2011 -0400

    dload: avoid using memrchr
    
    This function doesn't exist on OSX. Since there aren't any other
    candidates in alpm for which this function would make sense to use,
    simply replace the function call with a loop that does the equivalent.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>

commit 52c65fdfea7d174ad2f4d895c5783d936fdac7d7
Author: Dan McGee <dan at archlinux.org>
Date:   Sun Sep 18 16:55:23 2011 -0500

    Ensure entire struct is zeroed in _alpm_parsedate()
    
    Signed-off-by: Dan McGee <dan at archlinux.org>
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>

commit c12fa4ab192da0a1cd5c61b2f70e154205401e6b
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Sep 18 16:19:32 2011 -0400

    pactree: include missing ctype.h header
    
    needed for isspace() -- avoids warnings on OSX.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

commit b1a09b93ef626995a009ae3144fc130cc60a4078
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Sun Sep 18 16:35:00 2011 -0400

    configure: Fix quoting in SEDINPLACE on Darwin
    
    single quotes expanded to nothing, leaving us with a command that
    assumed the sed expression was the backup suffix. Use a pair of escaped
    double quotes, which survives automake and ends up properly in makepkg.
    
    Signed-off-by: Dave Reisner <dreisner at archlinux.org>
    Signed-off-by: Dan McGee <dan at archlinux.org>

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

Summary of changes:
 configure.ac                    |    2 +-
 lib/libalpm/alpm.h              |    4 +---
 lib/libalpm/be_local.c          |   10 +++++++---
 lib/libalpm/be_package.c        |    2 +-
 lib/libalpm/db.c                |    4 ++--
 lib/libalpm/dload.c             |   12 +++++++++---
 lib/libalpm/package.c           |   11 ++---------
 lib/libalpm/package.h           |    2 +-
 lib/libalpm/util.c              |    3 ++-
 src/util/pacsort.c              |   22 ++++++++++++++++++++++
 src/util/pactree.c              |   23 +++++++++++++++++++++++
 test/pacman/tests/replace104.py |   25 +++++++++++++++++++++++++
 12 files changed, 96 insertions(+), 24 deletions(-)
 create mode 100644 test/pacman/tests/replace104.py


hooks/post-receive
-- 
The official pacman repository


More information about the pacman-dev mailing list