[librdf-aref-perl] branch master updated (ac7fb3a -> d77a95a)

Jonas Smedegaard dr at jones.dk
Tue Oct 14 12:13:51 UTC 2014


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

js pushed a change to branch master
in repository librdf-aref-perl.

      from  ac7fb3a   update changelog
      adds  a0fca23   migrated to Dist::Zilla
      adds  42b5134   new method: plain_literal
      adds  b4c347d   travis build script
      adds  13a8927   disallow : in predicates
      adds  fd4b335   refactored
      adds  94c2a96   added partial Encoder
      adds  4db867d   0.12
      adds  abe7118   improved encoder
      adds  842b91c   0.13
      adds  f804417   added aref_query
      adds  339af5e   0.14
      adds  017d6e3   better support RDF::Trine in Encoder
      adds  6f36e74   introduced RDF::aREF::Query
      adds  feff5d7   0.15
      adds  8197da4   cleanup
      adds  f89293b   0.16
      adds  6c44b0d   also test on Perl 5.10
      adds  825ace4   more tests and Perl 5.10 fix
      adds  1207271   test refactoring
      adds  bc259f8   0.17
      adds  1a1d574   implement aref_query_map (issue #7)
      adds  5f0d097   adjust subjects to aREF spec
      adds  43b3604   0.18
      adds  824c1ae   Imported Upstream version 0.18
       new  433476d   Merge tag 'upstream/0.18'
       new  f18e41c   Sync control.in with control: Update Vcs-Browser URL to use cgit web frontend.
       new  45fedea   Declare compliance with Debian Policy 3.9.6.
       new  3168079   Include perl-build.mk (not perl-makemaker.mk), build-depend on libmodule-build-tiny-perl, and tighten build-dependency on CDBS to versions supporting Module::Build::Tiny.
       new  98b11ac   Tighten build-dependency on librdf-ns-perl.
       new  ece5e93   Relax to (build-)depend unversioned on perl: Needed version satisfied even in oldstable.
       new  d77a95a   Prepare for release: Update changelog, control file and copyright hints.

The 7 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:
 Build.PL                              |   4 +
 CHANGES                               |  46 -----
 Changes                               |  74 +++++++
 LICENSE                               |   8 +-
 MANIFEST                              |  20 +-
 META.json                             |  69 +++++++
 META.yml                              |  34 ++--
 Makefile.PL                           |  55 ------
 README                                |  71 ++++++-
 cpanfile                              |   5 +-
 debian/changelog                      |  26 ++-
 debian/control                        |   9 +-
 debian/control.in                     |   4 +-
 debian/copyright_hints                |  25 ++-
 debian/rules                          |   5 +-
 dist.ini                              |   2 +
 lib/RDF/aREF.pm                       | 116 +++++++----
 lib/RDF/aREF/Decoder.pm               | 351 ++++++++++++++++++++++------------
 lib/RDF/aREF/Encoder.pm               | 223 +++++++++++++++++++++
 lib/RDF/aREF/Query.pm                 | 207 ++++++++++++++++++++
 t/aref-query.t                        |  92 +++++++++
 t/author-critic.t                     |  20 --
 t/decode-errors.t                     |  64 +++++++
 t/decoder.t                           |  93 +++++----
 t/doi-example.json                    | 127 ++++++++++++
 t/encoder.t                           |  74 +++++++
 t/errors.t                            |  39 ----
 t/null.t                              |  34 ++++
 t/objects.t                           |  21 +-
 t/release-pod-syntax.t                |  14 ++
 t/strict.t                            |  34 ----
 t/suite.t                             |  35 ++--
 t/suite/blanks.json                   |   2 +
 t/suite/blanks.nt                     |   1 +
 t/suite/invalid-datatype-01.json      |   2 +-
 t/suite/invalid-object-01.json        |   2 +-
 t/suite/invalid-object-02.err         |   2 +-
 t/suite/invalid-object-02.json        |   2 +-
 t/suite/invalid-object-03.err         |   2 +-
 t/suite/invalid-object-03.json        |   2 +-
 t/suite/invalid-predicate-01.json     |   2 +-
 t/suite/invalid-predicate-02.json     |   2 +-
 t/suite/invalid-predicate-03.json     |   2 +-
 t/suite/invalid-subject-01.json       |   2 +-
 t/suite/invalid-subject-02.json       |   2 +-
 t/suite/invalid-subject-03.err        |   2 +-
 t/suite/invalid-subject-04.err        |   2 +-
 t/suite/invalid-subject-05.err        |   2 +-
 t/suite/invalid-subject-06.err        |   2 +-
 t/suite/invalid-subject-07.err        |   2 +-
 t/suite/invalid-subject-08.json       |   2 +-
 t/suite/invalid-subject-09.json       |   2 +-
 t/suite/invalid-subject-10.json       |   2 +-
 t/suite/json-ld-14.json               |   2 +-
 t/suite/json-ld-23.json               |   2 +-
 t/suite/strict-invalid-subject-11.err |   2 +-
 t/suite/strict-invalid-subject-12.err |   2 +-
 t/suite/strict-invalid-subject-13.err |   2 +-
 t/suite/strict-null-object-1.json     |   2 +-
 t/suite/strict-null-object-2.json     |   2 +-
 t/suite/uri-object-01.json            |   2 +-
 t/suite/uri-object-02.json            |   2 +-
 t/trine.t                             |   7 +-
 63 files changed, 1563 insertions(+), 504 deletions(-)
 create mode 100644 Build.PL
 delete mode 100644 CHANGES
 create mode 100644 Changes
 create mode 100644 META.json
 delete mode 100644 Makefile.PL
 create mode 100644 dist.ini
 create mode 100644 lib/RDF/aREF/Encoder.pm
 create mode 100644 lib/RDF/aREF/Query.pm
 create mode 100644 t/aref-query.t
 delete mode 100644 t/author-critic.t
 create mode 100644 t/decode-errors.t
 create mode 100644 t/doi-example.json
 create mode 100644 t/encoder.t
 delete mode 100644 t/errors.t
 create mode 100644 t/null.t
 create mode 100644 t/release-pod-syntax.t
 delete mode 100644 t/strict.t
 create mode 100644 t/suite/blanks.json
 create mode 100644 t/suite/blanks.nt

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



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