This is an automated email from the git hooks/post-receive script.

guillem pushed a change to branch master
in repository dpkg.

      from  9f7e58a   Use internerr() or BUG() instead of assert()
       new  94728ea   Revert "Dpkg::Deps: Accept $archqual for 
add_provided_package() method"
       new  5cc92fc   Dpkg: Fix default DATADIR
       new  9999d4b   build: Make PERL_MIN_VERSION also a configure output 
variable
       new  22685bc   build: Add CPAN distribution machinery
       new  c72f539   build: Add an autogen script
       new  114121d   debian: Add libncurses-dev as the first Build-Depends 
alternative
       new  d6c8af7   dpkg-checkbuilddeps: Fix indentation
       new  2c765a3   src: Fix database modules to not depend unnecessarily on 
main.h
       new  64fca5b   dpkg: Add new fsys_hash_entries() function to abstract 
nfiles access
       new  ca90fbf   dpkg-divert: Add new --no-rename option
       new  599e3c1   dpkg-divert: Warn when using --add or --remove w/o 
--rename or --no-rename
       new  c271507   dpkg-divert: Warn when using --rename on a file from an 
Essential package
       new  f1cc66e   libdpkg: Move filesystem nodename hash implementation 
into a new module
       new  2d75661   libdpkg: Use a single struct filenamenode definition
       new  0615492   libdpkg: Introduce frontend locking
       new  542885e   libdpkg: Move control database code into db-ctrl modules
       new  9dab03c   dpkg-source: Do not emit perl warnings on source formats 
w/o options
       new  b9090a0   Dpkg::Shlibs::Objdump: Remove duplicate assignment in 
reset() method
       new  c972dfd   Dpkg::Shlibs::Objdump: Fix ELF program detection
       new  fd8f838   scripts: Refresh test data and update code to match
       new  981a18c   Dpkg::Version: Fix bool overload behavior
       new  6f903af   dpkg-buildpackage: Validate OpenPGP signing key IDs
       new  80556f6   dpkg: Fix a short-lived file descriptor leak
       new  6675001   dpkg: Print the environment variables setup for the 
conffile shell

The 24 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile.am                                        |   4 +-
 README                                             |   2 +-
 autogen                                            |   5 +
 configure.ac                                       |   9 +-
 cpan.am                                            |  48 ++
 debian/changelog                                   |  26 +-
 debian/control                                     |   2 +-
 debian/rules                                       |   2 +-
 doc/frontend.txt                                   |  22 +-
 lib/dpkg/Makefile.am                               |   7 +
 src/infodb-access.c => lib/dpkg/db-ctrl-access.c   |   5 +-
 src/infodb-format.c => lib/dpkg/db-ctrl-format.c   |   3 +-
 src/infodb-upgrade.c => lib/dpkg/db-ctrl-upgrade.c |   5 +-
 src/infodb.h => lib/dpkg/db-ctrl.h                 |  10 +-
 lib/dpkg/dbmodify.c                                |  21 +
 lib/dpkg/dpkg.h                                    |   1 +
 lib/dpkg/fsys-hash.c                               | 169 +++++
 lib/dpkg/fsys-iter.c                               | 126 ++++
 src/filesdb.h => lib/dpkg/fsys.h                   | 163 ++---
 lib/dpkg/libdpkg.map                               |  18 +
 lib/dpkg/triglib.c                                 |  32 +-
 lib/dpkg/triglib.h                                 |   3 +
 m4/dpkg-progs.m4                                   |   9 +-
 man/dpkg-divert.man                                |  14 +-
 man/dpkg.man                                       |   4 +
 po/POTFILES.in                                     |   5 +
 scripts/.gitignore                                 |   1 +
 scripts/Build.PL.in                                |  74 ++
 scripts/Dpkg.pm                                    |   2 +-
 scripts/Dpkg/Deps.pm                               |  14 +-
 scripts/Dpkg/Shlibs/Objdump.pm                     |  11 +-
 scripts/Dpkg/Version.pm                            |  20 +-
 scripts/Test/Dpkg.pm                               |  20 +-
 scripts/dpkg-buildpackage.pl                       |  17 +
 scripts/dpkg-checkbuilddeps.pl                     |  69 +-
 scripts/dpkg-genbuildinfo.pl                       |   3 +-
 scripts/dpkg-gencontrol.pl                         |   3 +-
 scripts/dpkg-shlibdeps.pl                          |   3 +-
 scripts/dpkg-source.pl                             |   1 +
 scripts/t/Dpkg_Shlibs.t                            |   9 +-
 scripts/t/Dpkg_Shlibs/objdump.basictags-amd64      |  89 ++-
 scripts/t/Dpkg_Shlibs/objdump.basictags-i386       |  93 ++-
 scripts/t/Dpkg_Shlibs/objdump.basictags-mips       |  91 ++-
 scripts/t/Dpkg_Shlibs/objdump.ls                   | 771 ++++++++++++++-------
 scripts/t/Dpkg_Shlibs/objdump.patterns             | 377 +++++-----
 scripts/t/Dpkg_Shlibs/objdump.spacesyms            | 151 ++--
 scripts/t/Dpkg_Version.t                           |  17 +-
 src/Makefile.am                                    |   9 +-
 src/archives.c                                     |   2 +-
 src/configure.c                                    |   4 +
 src/depcon.c                                       |   2 +-
 src/divertcmd.c                                    |  50 +-
 src/divertdb.c                                     |   2 +-
 src/enquiry.c                                      |   2 +-
 src/filesdb-hash.c                                 |   2 +-
 src/filesdb.c                                      | 210 +-----
 src/filesdb.h                                      | 121 +---
 src/main.c                                         |   2 +
 src/packages.c                                     |   2 +-
 src/querycmd.c                                     |   2 +-
 src/remove.c                                       |   2 +-
 src/script.c                                       |   2 +-
 src/select.c                                       |   2 +-
 src/statdb.c                                       |   2 +-
 src/t/dpkg_divert.t                                |   9 +-
 src/trigcmd.c                                      |   2 +
 src/trigproc.c                                     |  10 +-
 src/unpack.c                                       |   2 +-
 src/verify.c                                       |   2 +-
 t/pod-spell.t                                      |   1 +
 70 files changed, 1746 insertions(+), 1249 deletions(-)
 create mode 100755 autogen
 create mode 100644 cpan.am
 rename src/infodb-access.c => lib/dpkg/db-ctrl-access.c (98%)
 rename src/infodb-format.c => lib/dpkg/db-ctrl-format.c (99%)
 rename src/infodb-upgrade.c => lib/dpkg/db-ctrl-upgrade.c (99%)
 rename src/infodb.h => lib/dpkg/db-ctrl.h (89%)
 create mode 100644 lib/dpkg/fsys-hash.c
 create mode 100644 lib/dpkg/fsys-iter.c
 copy src/filesdb.h => lib/dpkg/fsys.h (61%)
 create mode 100644 scripts/Build.PL.in

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/dpkg/dpkg.git

Reply via email to