[libdbd-mysql-perl] branch master updated (ee00b94 -> 3192963)

Xavier Guimard xguimard-guest at alioth.debian.org
Tue Oct 1 19:14:32 UTC 2013


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

xguimard-guest pushed a change to branch master
in repository libdbd-mysql-perl.

      from  ee00b94   debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg-copyright"
      adds  2d284e8   Imported Upstream version 4.024
       new  980eccf   Merge tag 'upstream/4.024'
       new  32b98a7   Update lintian-overrides offset
       new  ad4942d   Remove patches now included in upstream
       new  3192963   Update d/ch (+version 4.024-1)

The 4 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:
 ChangeLog                                  |   16 +
 INSTALL.html                               |   51 +-
 MANIFEST                                   |   65 +-
 MANIFEST.SKIP                              |    5 +-
 META.yml                                   |    7 +-
 MYMETA.yml                                 |   28 +
 Makefile.PL                                |   10 +-
 README                                     |    9 +-
 dbdimp.c                                   |   28 +-
 dbdimp.o                                   |  Bin 0 -> 318976 bytes
 debian/changelog                           |   10 +-
 debian/libdbd-mysql-perl.lintian-overrides |    2 +-
 debian/patches/fix_pod_for_manpage         |   36 -
 debian/patches/fix_spelling                |   27 -
 debian/patches/series                      |    2 -
 eg/bigint_quotes.pl                        |   38 +
 lib/DBD/mysql.pm                           |   57 +-
 lib/DBD/mysql/GetInfo.pm                   |    2 +-
 lib/DBD/mysql/INSTALL.pod                  |   51 +-
 mysql.c                                    | 2728 ++++++++++++++++++++++++++++
 mysql.o                                    |  Bin 0 -> 292056 bytes
 mysql.xsi                                  |  776 ++++++++
 pod2htmd.tmp                               |    2 +
 pod2htmi.tmp                               |    2 +
 t/15reconnect.t                            |   44 +
 t/43count_params.t                         |   70 +
 t/50chopblanks.t                           |   32 +-
 t/65segfault.t                             |   50 +
 t/70takeimp.t                              |    2 +-
 t/80procs.t                                |    2 +-
 t/{80procs.t => 81procs.t}                 |    8 +-
 t/87async.t                                |  242 +++
 t/88async-multi-stmts.t                    |   49 +
 t/89async-method-check.t                   |  180 ++
 t/90no-async.t                             |   49 +
 t/99_bug_server_prepare_blob_null.t        |   66 +
 t/mysql.mtest                              |   11 +-
 t/pod.t                                    |    4 +
 38 files changed, 4538 insertions(+), 223 deletions(-)
 mode change 100755 => 100644 ChangeLog
 mode change 100755 => 100644 INSTALL.html
 mode change 100755 => 100644 MANIFEST
 mode change 100755 => 100644 MANIFEST.SKIP
 create mode 100644 MYMETA.yml
 mode change 100755 => 100644 Makefile.PL
 mode change 100755 => 100644 README
 mode change 100755 => 100644 constants.h
 mode change 100755 => 100644 dbdimp.c
 mode change 100755 => 100644 dbdimp.h
 create mode 100644 dbdimp.o
 delete mode 100644 debian/patches/fix_pod_for_manpage
 delete mode 100644 debian/patches/fix_spelling
 delete mode 100644 debian/patches/series
 create mode 100644 eg/bigint_quotes.pl
 mode change 100755 => 100644 eg/bug14979.pl
 mode change 100755 => 100644 eg/bug21028.pl
 mode change 100755 => 100644 eg/bug30033.pl
 mode change 100755 => 100644 eg/bug30033pg.pl
 mode change 100755 => 100644 eg/decimal_test.pl
 mode change 100755 => 100644 eg/prepare_memory_usage.pl
 mode change 100755 => 100644 eg/proc_example1.pl
 mode change 100755 => 100644 eg/proc_example2.pl
 mode change 100755 => 100644 eg/proc_example2a.pl
 mode change 100755 => 100644 eg/proc_example2b.pl
 mode change 100755 => 100644 eg/proc_example3.pl
 mode change 100755 => 100644 eg/proc_example4.pl
 mode change 100755 => 100644 lib/Bundle/DBD/mysql.pm
 mode change 100755 => 100644 lib/DBD/mysql.pm
 mode change 100755 => 100644 lib/DBD/mysql/INSTALL.pod
 mode change 100755 => 100644 myld
 create mode 100644 mysql.bs
 create mode 100644 mysql.c
 create mode 100644 mysql.o
 mode change 100755 => 100644 mysql.xs
 create mode 100644 mysql.xsi
 create mode 100644 pm_to_blib
 create mode 100644 pod2htmd.tmp
 create mode 100644 pod2htmi.tmp
 mode change 100755 => 100644 t/00base.t
 mode change 100755 => 100644 t/10connect.t
 create mode 100644 t/15reconnect.t
 mode change 100755 => 100644 t/20createdrop.t
 mode change 100755 => 100644 t/25lockunlock.t
 mode change 100755 => 100644 t/30insertfetch.t
 mode change 100755 => 100644 t/31insertid.t
 mode change 100755 => 100644 t/32insert_error.t
 mode change 100755 => 100644 t/40bindparam.t
 mode change 100755 => 100644 t/40bindparam2.t
 mode change 100755 => 100644 t/40blobs.t
 mode change 100755 => 100644 t/40listfields.t
 mode change 100755 => 100644 t/40nulls.t
 mode change 100755 => 100644 t/40numrows.t
 mode change 100755 => 100644 t/41bindparam.t
 mode change 100755 => 100644 t/41blobs_prepare.t
 mode change 100755 => 100644 t/42bindparam.t
 create mode 100644 t/43count_params.t
 mode change 100755 => 100644 t/50chopblanks.t
 mode change 100755 => 100644 t/50commit.t
 mode change 100755 => 100644 t/51bind_type_guessing.t
 mode change 100755 => 100644 t/52comment.t
 mode change 100755 => 100644 t/53comment.t
 mode change 100755 => 100644 t/60leaks.t
 create mode 100644 t/65segfault.t
 mode change 100755 => 100644 t/65types.t
 mode change 100755 => 100644 t/75supported_sql.t
 mode change 100755 => 100644 t/80procs.t
 copy t/{80procs.t => 81procs.t} (93%)
 mode change 100755 => 100644
 create mode 100644 t/87async.t
 create mode 100644 t/88async-multi-stmts.t
 create mode 100644 t/89async-method-check.t
 create mode 100644 t/90no-async.t
 create mode 100644 t/99_bug_server_prepare_blob_null.t
 mode change 100755 => 100644 t/lib.pl
 mode change 100755 => 100644 t/mem_leak.pl
 mode change 100755 => 100644 t/mysql.dbtest
 create mode 100644 t/pod.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbd-mysql-perl.git



More information about the Pkg-perl-cvs-commits mailing list