[libmongodb-perl] branch master updated (8b7c8b6 -> bead2e0)

gregor herrmann gregoa at debian.org
Sat Jun 21 23:13:09 UTC 2014


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

gregoa pushed a change to branch master
in repository libmongodb-perl.

      from  8b7c8b6   prepare release
       new  52760f2   Remove repackaging framework. The dubios directory is gone.
       new  12104c1   update changelog
       new  0a77d64   Imported Upstream version 0.704.1.0
       new  46e3564   New upstream release.
       new  2c9e78d   Update upstream and packaging copyright years; add new third-party files.
       new  a32acda   Update build and runtime dependencies.
       new  f9a9369   Drop patch fix-utf8-in-pod, fixed upstream.
       new  a3dd50b   Drop patch fix-manpage-spelling.patch, merged upstream.
       new  772f8bf   Drop patch fix-db-test, fixed upstream.
       new  d07f7df   Drop patch 5.14-ccflags.patch, not needed anymore.
       new  727a371   Add patch to fix a spelling mistake in the POD.
       new  dcc7d4c   debian/rules: override_dh_clean: upstream backup file was removed.
       new  2335454   debian/rules: wrap override_dh_auto_test in check for nocheck in DEB_BUILD_OPTIONS.
       new  a6d8485   Install CONTRIBUTING.md documentation.
       new  bead2e0   releasing package libmongodb-perl version 0.704.1.0-1

The 15 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:
 CONTRIBUTING.md                                 |   15 +-
 Changes                                         |  284 ++-
 INSTALL.md                                      |  142 ++
 MANIFEST                                        |  115 +-
 META.json                                       |  146 +-
 META.yml                                        |  172 +-
 Makefile.PL                                     |   69 +-
 README                                          |    8 +-
 CONTRIBUTING.md => README.md                    |   15 +-
 bson/b64_ntop.h                                 |  184 ++
 bson/b64_pton.h                                 |  384 ++++
 bson/bcon.c                                     | 1024 +++++++++
 bson/bcon.h                                     |  280 +++
 bson/bson-atomic.h                              |   43 +
 bson/bson-clock.c                               |  149 ++
 bson/bson-clock.h                               |   43 +
 bson/bson-compat.h                              |  134 ++
 bson/bson-config.h.in                           |   82 +
 bson/bson-context-private.h                     |   58 +
 bson/bson-context.c                             |  554 +++++
 bson/bson-context.h                             |   42 +
 bson/bson-endian.h                              |  231 ++
 bson/bson-error.c                               |  128 ++
 bson/bson-error.h                               |   47 +
 bson/bson-iter.c                                | 2052 ++++++++++++++++++
 bson/bson-iter.h                                |  487 +++++
 bson/bson-json.c                                | 1298 +++++++++++
 bson/bson-json.h                                |   73 +
 bson/bson-keys.c                                |  189 ++
 bson/bson-keys.h                                |   38 +
 bson/bson-macros.h                              |  221 ++
 bson/bson-md5.c                                 |  404 ++++
 bson/bson-md5.h                                 |   91 +
 bson/bson-memory.c                              |  198 ++
 bson/bson-memory.h                              |   50 +
 bson/bson-oid.c                                 |  472 ++++
 bson/bson-oid.h                                 |  247 +++
 bson/bson-private.h                             |   78 +
 bson/bson-reader.c                              |  820 +++++++
 bson/bson-reader.h                              |  115 +
 bson/bson-stdint-win32.h                        |  259 +++
 bson/bson-string.c                              |  665 ++++++
 bson/bson-string.h                              |   84 +
 bson/bson-thread-private.h                      |   74 +
 bson/bson-types.h                               |  445 ++++
 bson/bson-utf8.c                                |  380 ++++
 bson/bson-utf8.h                                |   49 +
 bson/bson-version.h                             |   95 +
 bson/bson-writer.c                              |  267 +++
 bson/bson-writer.h                              |   57 +
 bson/bson.c                                     | 2641 +++++++++++++++++++++++
 bson/bson.h                                     |  966 +++++++++
 debian/changelog                                |   23 +
 debian/control                                  |   25 +-
 debian/copyright                                |   83 +-
 debian/libmongodb-perl.docs                     |    1 +
 debian/patches/5.14-ccflags.patch               |   28 -
 debian/patches/fix-db-test                      |   20 -
 debian/patches/fix-manpage-spelling.patch       |   29 -
 debian/patches/fix-utf8-in-pod                  |   14 -
 debian/patches/series                           |    5 +-
 debian/patches/spelling.patch                   |   17 +
 debian/repack.local                             |    4 -
 debian/repack.stub                              |   88 -
 debian/rules                                    |    5 +-
 debian/watch                                    |    5 +-
 devel/README.md                                 |   39 +
 {t => devel}/auth.pl                            |    0
 devel/bin/harness.pl                            |   79 +
 devel/bin/test-all.pl                           |   17 +
 devel/clusters/replicaset-2.0.yml               |   11 +
 devel/clusters/replicaset-2.2.yml               |   11 +
 devel/clusters/replicaset-2.4.yml               |   11 +
 devel/clusters/replicaset-2.6.yml               |   11 +
 devel/clusters/standalone-2.0.yml               |    6 +
 devel/clusters/standalone-2.2.yml               |    6 +
 devel/clusters/standalone-2.4.yml               |    6 +
 devel/clusters/standalone-2.6.yml               |    6 +
 devel/lib/MongoDBTest/Orchestrator.pm           |  181 ++
 devel/lib/MongoDBTest/ReplicaSet.pm             |  276 +++
 devel/lib/MongoDBTest/Server.pm                 |  226 ++
 devel/lib/MongoDBTest/ShardedCluster.pm         |  261 +++
 devel/t-large/rs.t                              |  211 ++
 devel/t-large/rsrefresh.t                       |  100 +
 dist.ini                                        |  227 +-
 ext/Module/Install/PRIVATE/Mongo.pm             |   89 -
 inc/CheckJiraInChanges.pm                       |  103 +
 inc/Module/Install/PRIVATE/Mongo.pm             |  196 +-
 lib/MongoDB.pm                                  |  233 +-
 lib/MongoDB/BSON.pm                             |   94 +-
 lib/MongoDB/BSON/Binary.pm                      |  112 +-
 lib/MongoDB/BSON/Regexp.pm                      |   95 +
 lib/MongoDB/BulkWrite.pm                        |  873 ++++++++
 lib/MongoDB/BulkWriteView.pm                    |  173 ++
 lib/MongoDB/Code.pm                             |   40 +-
 lib/MongoDB/Collection.pm                       |  447 +++-
 lib/MongoDB/CommandResult.pm                    |  120 +
 lib/MongoDB/Connection.pm                       |   50 +-
 lib/MongoDB/Cursor.pm                           |  487 ++++-
 lib/MongoDB/DBRef.pm                            |   40 +-
 lib/MongoDB/DataTypes.pod                       |   16 +-
 lib/MongoDB/Database.pm                         |   84 +-
 lib/MongoDB/Error.pm                            |  266 +++
 lib/MongoDB/Examples.pod                        |  298 ++-
 lib/MongoDB/GridFS.pm                           |  221 +-
 lib/MongoDB/GridFS/File.pm                      |   71 +-
 lib/MongoDB/Indexing.pod                        |   14 +-
 lib/MongoDB/MongoClient.pm                      |  578 ++++-
 lib/MongoDB/OID.pm                              |  106 +-
 t/w.t => lib/MongoDB/Role/_LastError.pm         |   35 +-
 t/threads/oid.t => lib/MongoDB/Role/_Remover.pm |   39 +-
 lib/MongoDB/Role/_Updater.pm                    |   98 +
 t/w.t => lib/MongoDB/Role/_View.pm              |   40 +-
 t/w.t => lib/MongoDB/Role/_WriteQueue.pm        |   35 +-
 lib/MongoDB/Role/_Writeable.pm                  |   43 +
 lib/MongoDB/Timestamp.pm                        |   47 +-
 lib/MongoDB/Tutorial.pod                        |   14 +-
 lib/MongoDB/WriteResult.pm                      |  390 ++++
 lib/MongoDB/_Types.pm                           |   41 +
 mongo_link.c                                    |   42 +-
 mongo_link.h                                    |    6 +
 perl_mongo.c                                    |  857 ++++----
 perl_mongo.h                                    |   44 +-
 ppport.h                                        | 1417 ++++++++----
 pstdint.h                                       |  800 +++++++
 t/{w.t => 00-report-mongod.t}                   |   29 +-
 t/00-report-prereqs.t                           |  210 ++
 t/bson.t                                        |   12 +-
 t/bulk.t                                        | 1290 +++++++++++
 t/collection.t                                  |  831 ++++---
 t/connection.t                                  |   64 +-
 t/cursor.t                                      |  320 +--
 t/database.t                                    |   98 +-
 t/db.t                                          |   67 -
 t/dbref.t                                       |   29 +-
 t/dt_types.t                                    |   40 +-
 t/errors.t                                      |   36 +
 t/fsync.t                                       |   62 +-
 t/gridfs.t                                      |  266 ++-
 t/lib/MongoDBTest.pm                            |   53 +-
 t/lib/MongoDBTest.pm~                           |    9 -
 t/readpref.t                                    |  202 ++
 t/regex.t                                       |    7 +-
 t/regexp_obj.t                                  |   63 +
 t/threads/basic.t                               |   25 +-
 t/threads/cursor.t                              |   21 +-
 t/threads/oid.t                                 |    2 +
 t/types.t                                       |  120 +-
 t/{w.t => writeresult.t}                        |   41 +-
 weaver.ini                                      |    6 +-
 xs/BSON.xs                                      |   35 +-
 xs/Cursor.xs                                    |  106 +-
 xs/Mongo.xs                                     |   46 +-
 xs/MongoClient.xs                               |   30 +-
 xs/OID.xs                                       |    7 +-
 xt/release/check-jira-in-changes.t              |   63 +
 xt/release/minimum-version.t                    |    8 +
 xt/release/pod-syntax.t                         |    6 +
 xt/release/test-version.t                       |   22 +
 yajl/LICENSE                                    |   13 +
 yajl/yajl.c                                     |  175 ++
 yajl/yajl_alloc.c                               |   49 +
 yajl/yajl_alloc.h                               |   34 +
 yajl/yajl_buf.c                                 |  103 +
 yajl/yajl_buf.h                                 |   57 +
 yajl/yajl_bytestack.h                           |   69 +
 yajl/yajl_common.h                              |   75 +
 yajl/yajl_encode.c                              |  220 ++
 yajl/yajl_encode.h                              |   34 +
 yajl/yajl_gen.c                                 |  358 +++
 yajl/yajl_gen.h                                 |  157 ++
 yajl/yajl_lex.c                                 |  763 +++++++
 yajl/yajl_lex.h                                 |  117 +
 yajl/yajl_parse.h                               |  228 ++
 yajl/yajl_parser.c                              |  498 +++++
 yajl/yajl_parser.h                              |   80 +
 yajl/yajl_tree.c                                |  503 +++++
 yajl/yajl_tree.h                                |  185 ++
 yajl/yajl_version.c                             |    7 +
 yajl/yajl_version.h                             |   23 +
 180 files changed, 32894 insertions(+), 3030 deletions(-)
 create mode 100644 INSTALL.md
 copy CONTRIBUTING.md => README.md (70%)
 create mode 100644 bson/b64_ntop.h
 create mode 100644 bson/b64_pton.h
 create mode 100644 bson/bcon.c
 create mode 100644 bson/bcon.h
 create mode 100644 bson/bson-atomic.h
 create mode 100644 bson/bson-clock.c
 create mode 100644 bson/bson-clock.h
 create mode 100644 bson/bson-compat.h
 create mode 100644 bson/bson-config.h.in
 create mode 100644 bson/bson-context-private.h
 create mode 100644 bson/bson-context.c
 create mode 100644 bson/bson-context.h
 create mode 100644 bson/bson-endian.h
 create mode 100644 bson/bson-error.c
 create mode 100644 bson/bson-error.h
 create mode 100644 bson/bson-iter.c
 create mode 100644 bson/bson-iter.h
 create mode 100644 bson/bson-json.c
 create mode 100644 bson/bson-json.h
 create mode 100644 bson/bson-keys.c
 create mode 100644 bson/bson-keys.h
 create mode 100644 bson/bson-macros.h
 create mode 100644 bson/bson-md5.c
 create mode 100644 bson/bson-md5.h
 create mode 100644 bson/bson-memory.c
 create mode 100644 bson/bson-memory.h
 create mode 100644 bson/bson-oid.c
 create mode 100644 bson/bson-oid.h
 create mode 100644 bson/bson-private.h
 create mode 100644 bson/bson-reader.c
 create mode 100644 bson/bson-reader.h
 create mode 100644 bson/bson-stdint-win32.h
 create mode 100644 bson/bson-string.c
 create mode 100644 bson/bson-string.h
 create mode 100644 bson/bson-thread-private.h
 create mode 100644 bson/bson-types.h
 create mode 100644 bson/bson-utf8.c
 create mode 100644 bson/bson-utf8.h
 create mode 100644 bson/bson-version.h
 create mode 100644 bson/bson-writer.c
 create mode 100644 bson/bson-writer.h
 create mode 100644 bson/bson.c
 create mode 100644 bson/bson.h
 create mode 100644 debian/libmongodb-perl.docs
 delete mode 100644 debian/patches/5.14-ccflags.patch
 delete mode 100644 debian/patches/fix-db-test
 delete mode 100644 debian/patches/fix-manpage-spelling.patch
 delete mode 100644 debian/patches/fix-utf8-in-pod
 create mode 100644 debian/patches/spelling.patch
 delete mode 100644 debian/repack.local
 delete mode 100755 debian/repack.stub
 create mode 100644 devel/README.md
 rename {t => devel}/auth.pl (100%)
 create mode 100755 devel/bin/harness.pl
 create mode 100755 devel/bin/test-all.pl
 create mode 100644 devel/clusters/replicaset-2.0.yml
 create mode 100644 devel/clusters/replicaset-2.2.yml
 create mode 100644 devel/clusters/replicaset-2.4.yml
 create mode 100644 devel/clusters/replicaset-2.6.yml
 create mode 100644 devel/clusters/standalone-2.0.yml
 create mode 100644 devel/clusters/standalone-2.2.yml
 create mode 100644 devel/clusters/standalone-2.4.yml
 create mode 100644 devel/clusters/standalone-2.6.yml
 create mode 100644 devel/lib/MongoDBTest/Orchestrator.pm
 create mode 100644 devel/lib/MongoDBTest/ReplicaSet.pm
 create mode 100644 devel/lib/MongoDBTest/Server.pm
 create mode 100644 devel/lib/MongoDBTest/ShardedCluster.pm
 create mode 100644 devel/t-large/rs.t
 create mode 100644 devel/t-large/rsrefresh.t
 delete mode 100644 ext/Module/Install/PRIVATE/Mongo.pm
 create mode 100644 inc/CheckJiraInChanges.pm
 create mode 100644 lib/MongoDB/BSON/Regexp.pm
 create mode 100644 lib/MongoDB/BulkWrite.pm
 create mode 100644 lib/MongoDB/BulkWriteView.pm
 create mode 100644 lib/MongoDB/CommandResult.pm
 create mode 100644 lib/MongoDB/Error.pm
 copy t/w.t => lib/MongoDB/Role/_LastError.pm (54%)
 copy t/threads/oid.t => lib/MongoDB/Role/_Remover.pm (53%)
 create mode 100644 lib/MongoDB/Role/_Updater.pm
 copy t/w.t => lib/MongoDB/Role/_View.pm (54%)
 copy t/w.t => lib/MongoDB/Role/_WriteQueue.pm (54%)
 create mode 100644 lib/MongoDB/Role/_Writeable.pm
 create mode 100644 lib/MongoDB/WriteResult.pm
 create mode 100644 lib/MongoDB/_Types.pm
 create mode 100644 pstdint.h
 copy t/{w.t => 00-report-mongod.t} (62%)
 create mode 100644 t/00-report-prereqs.t
 create mode 100644 t/bulk.t
 delete mode 100644 t/db.t
 create mode 100644 t/errors.t
 delete mode 100644 t/lib/MongoDBTest.pm~
 create mode 100644 t/readpref.t
 create mode 100644 t/regexp_obj.t
 copy t/{w.t => writeresult.t} (56%)
 create mode 100644 xt/release/check-jira-in-changes.t
 create mode 100644 xt/release/minimum-version.t
 create mode 100644 xt/release/pod-syntax.t
 create mode 100644 xt/release/test-version.t
 create mode 100644 yajl/LICENSE
 create mode 100644 yajl/yajl.c
 create mode 100644 yajl/yajl_alloc.c
 create mode 100644 yajl/yajl_alloc.h
 create mode 100644 yajl/yajl_buf.c
 create mode 100644 yajl/yajl_buf.h
 create mode 100644 yajl/yajl_bytestack.h
 create mode 100644 yajl/yajl_common.h
 create mode 100644 yajl/yajl_encode.c
 create mode 100644 yajl/yajl_encode.h
 create mode 100644 yajl/yajl_gen.c
 create mode 100644 yajl/yajl_gen.h
 create mode 100644 yajl/yajl_lex.c
 create mode 100644 yajl/yajl_lex.h
 create mode 100644 yajl/yajl_parse.h
 create mode 100644 yajl/yajl_parser.c
 create mode 100644 yajl/yajl_parser.h
 create mode 100644 yajl/yajl_tree.c
 create mode 100644 yajl/yajl_tree.h
 create mode 100644 yajl/yajl_version.c
 create mode 100644 yajl/yajl_version.h

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



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