[libkiokudb-perl] branch master updated (a970734 -> d31ac58)

gregor herrmann gregoa at debian.org
Fri Dec 27 21:38:57 UTC 2013


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

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

      from  a970734   Remove trailing whitespace
      adds  7f47e94   Imported Upstream version 0.56
       new  4bcf6cc   Merge tag 'upstream/0.56'
       new  c23e8d1   New upstream release.
       new  3440051   Update years of upstream copyright.
       new  ff3e43f   Update (build) dependencies.
       new  507ec8c   Declare compliance with Debian Policy 3.9.5.
       new  d31ac58   update changelog / add WAITS-FOR

The 6 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:
 Changes                                            |  127 +--
 LICENSE                                            |  379 ++++++++
 MANIFEST                                           |   27 +-
 MANIFEST.SKIP                                      |   70 --
 META.json                                          | 1011 +++++++++++++++++++-
 META.yml                                           |  761 ++++++++++++++-
 Makefile.PL                                        |  285 ++++--
 README.mkdn                                        |    2 +
 bin/kioku                                          |   42 +-
 debian/changelog                                   |   11 +
 debian/control                                     |   14 +-
 debian/copyright                                   |    4 +-
 dist.ini                                           |   58 ++
 lib/KiokuDB.pm                                     |   34 +-
 lib/KiokuDB/Backend.pm                             |   24 +-
 lib/KiokuDB/Backend/Hash.pm                        |   24 +-
 lib/KiokuDB/Backend/Role/BinarySafe.pm             |   28 +-
 lib/KiokuDB/Backend/Role/Broken.pm                 |   24 +-
 lib/KiokuDB/Backend/Role/Clear.pm                  |   26 +-
 lib/KiokuDB/Backend/Role/Concurrency/POSIX.pm      |   29 +
 lib/KiokuDB/Backend/Role/GC.pm                     |   28 +
 lib/KiokuDB/Backend/Role/Prefetch.pm               |   31 +-
 lib/KiokuDB/Backend/Role/Query.pm                  |   24 +-
 lib/KiokuDB/Backend/Role/Query/GIN.pm              |   31 +-
 lib/KiokuDB/Backend/Role/Query/Simple.pm           |   24 +-
 lib/KiokuDB/Backend/Role/Query/Simple/Linear.pm    |   28 +-
 lib/KiokuDB/Backend/Role/Scan.pm                   |   24 +-
 lib/KiokuDB/Backend/Role/TXN.pm                    |   48 +-
 lib/KiokuDB/Backend/Role/TXN/Memory.pm             |   25 +-
 lib/KiokuDB/Backend/Role/TXN/Memory/Scan.pm        |   29 +
 lib/KiokuDB/Backend/Role/TXN/Nested.pm             |   29 +-
 lib/KiokuDB/Backend/Role/UnicodeSafe.pm            |   28 +-
 lib/KiokuDB/Backend/Serialize.pm                   |   26 +-
 lib/KiokuDB/Backend/Serialize/Delegate.pm          |   28 +-
 lib/KiokuDB/Backend/Serialize/JSON.pm              |   27 +-
 lib/KiokuDB/Backend/Serialize/JSPON.pm             |   24 +-
 lib/KiokuDB/Backend/Serialize/JSPON/Collapser.pm   |   31 +-
 lib/KiokuDB/Backend/Serialize/JSPON/Converter.pm   |   27 +-
 lib/KiokuDB/Backend/Serialize/JSPON/Expander.pm    |   29 +-
 lib/KiokuDB/Backend/Serialize/Memory.pm            |   31 +-
 lib/KiokuDB/Backend/Serialize/Null.pm              |   31 +-
 lib/KiokuDB/Backend/Serialize/Storable.pm          |   29 +-
 lib/KiokuDB/Backend/Serialize/YAML.pm              |   31 +-
 lib/KiokuDB/Backend/TypeMap/Default.pm             |   25 +-
 lib/KiokuDB/Backend/TypeMap/Default/JSON.pm        |   30 +-
 lib/KiokuDB/Backend/TypeMap/Default/Storable.pm    |   31 +-
 lib/KiokuDB/Class.pm                               |   33 +-
 lib/KiokuDB/Collapser.pm                           |   30 +-
 lib/KiokuDB/Collapser/Buffer.pm                    |   29 +
 lib/KiokuDB/Entry.pm                               |   26 +-
 lib/KiokuDB/Entry/Skip.pm                          |   31 +-
 lib/KiokuDB/Error.pm                               |   29 +
 lib/KiokuDB/Error/MissingObjects.pm                |   29 +
 lib/KiokuDB/Error/UnknownObjects.pm                |   29 +
 lib/KiokuDB/GC/Naive.pm                            |   24 +-
 lib/KiokuDB/GC/Naive/Mark.pm                       |   37 +-
 lib/KiokuDB/GC/Naive/Sweep.pm                      |   39 +-
 lib/KiokuDB/GIN.pm                                 |   24 +-
 lib/KiokuDB/LinkChecker.pm                         |   24 +-
 lib/KiokuDB/LinkChecker/Results.pm                 |   31 +-
 lib/KiokuDB/Linker.pm                              |   25 +-
 lib/KiokuDB/LiveObjects.pm                         |   27 +-
 lib/KiokuDB/LiveObjects/Guard.pm                   |   30 +-
 lib/KiokuDB/LiveObjects/Scope.pm                   |   24 +-
 lib/KiokuDB/LiveObjects/TXNScope.pm                |   24 +-
 lib/KiokuDB/Meta/Attribute/DoNotSerialize.pm       |   24 +-
 lib/KiokuDB/Meta/Attribute/Lazy.pm                 |   24 +-
 lib/KiokuDB/Meta/Instance.pm                       |   27 +-
 lib/KiokuDB/Reference.pm                           |   26 +-
 lib/KiokuDB/Role/API.pm                            |   26 +-
 lib/KiokuDB/Role/Cacheable.pm                      |   30 +-
 lib/KiokuDB/Role/ID.pm                             |   25 +-
 lib/KiokuDB/Role/ID/Content.pm                     |   24 +-
 lib/KiokuDB/Role/ID/Digest.pm                      |   29 +
 lib/KiokuDB/Role/Immutable.pm                      |   24 +-
 lib/KiokuDB/Role/Immutable/Transitive.pm           |   26 +-
 lib/KiokuDB/Role/Intrinsic.pm                      |   26 +-
 lib/KiokuDB/Role/Scan.pm                           |   26 +-
 lib/KiokuDB/Role/TypeMap.pm                        |   30 +-
 lib/KiokuDB/Role/UUIDs.pm                          |   24 +-
 lib/KiokuDB/Role/UUIDs/DataUUID.pm                 |   33 +-
 lib/KiokuDB/Role/UUIDs/LibUUID.pm                  |   33 +-
 lib/KiokuDB/Role/UUIDs/SerialIDs.pm                |   27 +-
 lib/KiokuDB/Role/Upgrade/Data.pm                   |   24 +
 lib/KiokuDB/Role/Upgrade/Handlers.pm               |   29 +
 lib/KiokuDB/Role/Upgrade/Handlers/Table.pm         |   26 +-
 lib/KiokuDB/Role/Verbosity.pm                      |   26 +-
 lib/KiokuDB/Role/WithDigest.pm                     |   31 +-
 lib/KiokuDB/Serializer.pm                          |   26 +-
 lib/KiokuDB/Serializer/JSON.pm                     |   31 +-
 lib/KiokuDB/Serializer/Memory.pm                   |   31 +-
 lib/KiokuDB/Serializer/Storable.pm                 |   31 +-
 lib/KiokuDB/Serializer/YAML.pm                     |   31 +-
 lib/KiokuDB/Set.pm                                 |   27 +-
 lib/KiokuDB/Set/Base.pm                            |   31 +-
 lib/KiokuDB/Set/Deferred.pm                        |   25 +-
 lib/KiokuDB/Set/Loaded.pm                          |   24 +-
 lib/KiokuDB/Set/Storage.pm                         |   26 +-
 lib/KiokuDB/Set/Stored.pm                          |   27 +-
 lib/KiokuDB/Set/Transient.pm                       |   25 +-
 lib/KiokuDB/Stream/Objects.pm                      |   38 +-
 lib/KiokuDB/Test.pm                                |   33 +-
 lib/KiokuDB/Test/Company.pm                        |   31 +-
 lib/KiokuDB/Test/Digested.pm                       |   29 +
 lib/KiokuDB/Test/Employee.pm                       |   31 +-
 lib/KiokuDB/Test/Fixture.pm                        |   33 +-
 lib/KiokuDB/Test/Fixture/Binary.pm                 |   31 +-
 lib/KiokuDB/Test/Fixture/CAS.pm                    |   31 +-
 lib/KiokuDB/Test/Fixture/Clear.pm                  |   30 +-
 lib/KiokuDB/Test/Fixture/Concurrency.pm            |   29 +
 lib/KiokuDB/Test/Fixture/GIN/Class.pm              |   33 +-
 lib/KiokuDB/Test/Fixture/MassInsert.pm             |   30 +-
 lib/KiokuDB/Test/Fixture/ObjectGraph.pm            |   31 +-
 lib/KiokuDB/Test/Fixture/Overwrite.pm              |   36 +-
 lib/KiokuDB/Test/Fixture/Refresh.pm                |   32 +-
 lib/KiokuDB/Test/Fixture/RootSet.pm                |   31 +-
 lib/KiokuDB/Test/Fixture/Scan.pm                   |   30 +-
 lib/KiokuDB/Test/Fixture/Sets.pm                   |   28 +
 lib/KiokuDB/Test/Fixture/SimpleSearch.pm           |   30 +-
 lib/KiokuDB/Test/Fixture/Small.pm                  |   31 +-
 lib/KiokuDB/Test/Fixture/TXN.pm                    |   31 +-
 lib/KiokuDB/Test/Fixture/TXN/Nested.pm             |   31 +-
 lib/KiokuDB/Test/Fixture/TXN/Scan.pm               |   28 +
 lib/KiokuDB/Test/Fixture/TypeMap/Default.pm        |   57 +-
 lib/KiokuDB/Test/Fixture/Unicode.pm                |   31 +-
 lib/KiokuDB/Test/Person.pm                         |   30 +-
 lib/KiokuDB/Thunk.pm                               |   25 +-
 lib/KiokuDB/Tutorial.pod                           |    4 +-
 lib/KiokuDB/Tutorial/JA.pod                        |    1 +
 lib/KiokuDB/TypeMap.pm                             |   26 +-
 lib/KiokuDB/TypeMap/ClassBuilders.pm               |   26 +-
 lib/KiokuDB/TypeMap/Composite.pm                   |   36 +-
 lib/KiokuDB/TypeMap/Default.pm                     |   31 +-
 lib/KiokuDB/TypeMap/Default/Canonical.pm           |   29 +-
 lib/KiokuDB/TypeMap/Default/JSON.pm                |   35 +-
 lib/KiokuDB/TypeMap/Default/Passthrough.pm         |   29 +-
 lib/KiokuDB/TypeMap/Default/Storable.pm            |   31 +-
 lib/KiokuDB/TypeMap/Entry.pm                       |   28 +-
 lib/KiokuDB/TypeMap/Entry/Alias.pm                 |   26 +-
 lib/KiokuDB/TypeMap/Entry/Callback.pm              |   26 +-
 lib/KiokuDB/TypeMap/Entry/Closure.pm               |   35 +-
 lib/KiokuDB/TypeMap/Entry/Compiled.pm              |   29 +-
 lib/KiokuDB/TypeMap/Entry/JSON/Scalar.pm           |   31 +-
 lib/KiokuDB/TypeMap/Entry/MOP.pm                   |   29 +-
 lib/KiokuDB/TypeMap/Entry/Naive.pm                 |   26 +-
 lib/KiokuDB/TypeMap/Entry/Passthrough.pm           |   29 +-
 lib/KiokuDB/TypeMap/Entry/Ref.pm                   |   29 +
 lib/KiokuDB/TypeMap/Entry/Set.pm                   |   28 +-
 lib/KiokuDB/TypeMap/Entry/Std.pm                   |   24 +-
 lib/KiokuDB/TypeMap/Entry/Std/Compile.pm           |   22 +
 lib/KiokuDB/TypeMap/Entry/Std/Expand.pm            |   29 +
 lib/KiokuDB/TypeMap/Entry/Std/ID.pm                |   22 +
 lib/KiokuDB/TypeMap/Entry/Std/Intrinsic.pm         |   27 +-
 lib/KiokuDB/TypeMap/Entry/StorableHook.pm          |   35 +-
 lib/KiokuDB/TypeMap/Resolver.pm                    |   26 +-
 lib/KiokuDB/TypeMap/Shadow.pm                      |   26 +-
 lib/KiokuDB/Util.pm                                |   30 +-
 .../Custom/Trait/KiokuDB/DoNotSerialize.pm         |   31 +-
 .../Meta/Attribute/Custom/Trait/KiokuDB/Lazy.pm    |   31 +-
 lib/POD2/JA/KiokuDB/Tutorial.pod                   |    2 +-
 t/00-compile.t                                     |  218 +++++
 t/coderefs.t                                       |   10 +-
 t/collapser.t                                      |   20 +-
 t/digest.t                                         |    2 +-
 t/directory.t                                      |    4 +-
 t/entry.t                                          |    6 +-
 t/gc_naive.t                                       |    8 +-
 t/gin.t                                            |   12 +-
 t/hash.t                                           |    4 +-
 t/hash_backend.t                                   |    4 +-
 t/jspon_serialization.t                            |    8 +-
 t/lazy.t                                           |    4 +-
 t/link_checker.t                                   |    8 +-
 t/link_checker_real.t                              |    8 +-
 t/live_objs.t                                      |    4 +-
 t/ref.t                                            |    2 +-
 t/scaling.t                                        |    4 +-
 t/serializer.t                                     |   10 +-
 t/stream.t                                         |    6 +-
 t/tied.t                                           |   14 +-
 t/typemap.t                                        |    6 +-
 t/typemap_default_json.t                           |   14 +-
 t/typemap_default_storable.t                       |    6 +-
 t/typemap_entry_callback.t                         |   12 +-
 t/typemap_entry_mop.t                              |   14 +-
 t/typemap_entry_naive.t                            |   12 +-
 t/typemap_entry_passthrough.t                      |   14 +-
 t/typemap_entry_storable.t                         |   12 +-
 t/typemap_extra.t                                  |    4 +-
 t/typemap_resolver.t                               |    6 +-
 t/typemap_values.t                                 |   10 +-
 t/uuid.t                                           |    6 +-
 xt/release/eol.t                                   |    8 +
 xt/release/no-tabs.t                               |  161 ++++
 xt/release/pod-syntax.t                            |    7 +
 195 files changed, 6761 insertions(+), 846 deletions(-)
 create mode 100644 LICENSE
 delete mode 100644 MANIFEST.SKIP
 create mode 100644 dist.ini
 create mode 100644 t/00-compile.t
 create mode 100644 xt/release/eol.t
 create mode 100644 xt/release/no-tabs.t
 create mode 100644 xt/release/pod-syntax.t

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



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