[licensecheck] branch master updated (b2e0b4d -> b3d074c)

Jonas Smedegaard dr at jones.dk
Thu Jul 6 13:57:00 UTC 2017


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

js pushed a change to branch master
in repository licensecheck.

      from  b2e0b4d   Update changelog.
      adds  7f0024e   Add OSI test (including only currently succeeding OSI licenses for now).
      adds  5dbd21d   Improve license pattern agpl to skip english (not only french) cecill_2_1.
      adds  b91abc1   Improve license pattern epl.
      adds  4174e3b   Add license pattern artistic_2.
      adds  a84c0d9   clean_comments(): Relax to match varying amount of horizontal whitespace (not exactly one character) followed by any non-whitespace (not only a word character).
      adds  7eea16b   clean_comments(): Tighten to match and strip only horizontal whitespace (not newlines).
      adds  09dc219   clean_comments(): Tidy: Drop superfluous clustering.
      adds  921abb6   Fix license pattern ms_pl to detect MS Public License (not non-free MS Permissive License).
      adds  886c87f   Improve license pattern epl to detect some forms of "or newer".
      adds  31d8aa3   Tighten license patterns afl agpl cdl gfdl gfdl_nivgpl lgpl llgpl mpl ms_pl ms_rl qpl sgi_b wtfpl mit to require descriptive prefix when only an abbreviation. Thanks to Axel Beckert (see Debian bug#862827).
      adds  d3be73a   Update changes, and bump version.
      adds  2ddf066   New upstream version 3.0.30
       new  4626b72   Updated version 3.0.30 from 'upstream/3.0.30'
       new  2cd2194   Modernize cdbs: Check copyright in maintainer script (not during build).
       new  0fefc47   Declare compliance with Debian Policy 4.0.0.
       new  74ff45c   Update package relations: Relax to (build-)depend unversioned on libmoo-perl libstring-copyright-perl. Have (build-)dependency on libscalar-list-utils-perl fallback on recent perl. Stop explicitly (build-)depend on (recent perl or) libexperimental-perl: Required version satisfied by perl even in oldstable.
       new  8153bc5   Fix build-depend (not only suggest) bash-completion.
       new  b3d074c   Prepare for release: Update changelog, control file and copyright hints.

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:
 COPYRIGHT                             |  28 ++
 CREDITS                               |   1 +
 Changes                               |  23 ++
 MANIFEST                              |  28 ++
 META.json                             |  12 +-
 META.yml                              |  10 +-
 Makefile.PL                           |  10 +-
 README                                |   2 +-
 SIGNATURE                             |  82 ++++--
 bin/licensecheck                      |   4 +-
 debian/changelog                      |  30 +-
 debian/control                        |  13 +-
 debian/control.in                     |   2 +-
 debian/copyright-check                |  27 ++
 debian/copyright_hints                | 273 ++++++++++++++----
 debian/rules                          |  15 +-
 doap.ttl                              |  46 +++-
 lib/App/Licensecheck.pm               |  19 +-
 lib/Regexp/Pattern/License.pm         |  45 +--
 lib/Regexp/Pattern/License/Parts.pm   |   4 +-
 t/{SPDX.t => OSI.t}                   |  17 +-
 t/OSI/AFL-3.0                         |  51 ++++
 t/OSI/AGPL-3.0                        | 242 ++++++++++++++++
 t/OSI/Apache-2.0                      | 202 ++++++++++++++
 t/OSI/Artistic-1.0                    | 131 +++++++++
 t/OSI/Artistic-2.0                    | 180 ++++++++++++
 t/OSI/BSD-2                           |  26 ++
 t/OSI/BSD-3                           |  24 ++
 t/{devscripts/boost.h => OSI/BSL-1.0} |  15 +-
 t/OSI/CDDL-1.0                        | 406 +++++++++++++++++++++++++++
 t/OSI/CECILL-2.1                      | 496 +++++++++++++++++++++++++++++++++
 t/OSI/EPL-1.0                         |  92 +++++++
 t/OSI/GPL-2.0                         | 339 +++++++++++++++++++++++
 t/OSI/ISC                             |  15 +
 t/OSI/LGPL-2.0                        | 481 ++++++++++++++++++++++++++++++++
 t/OSI/LGPL-2.1                        | 502 ++++++++++++++++++++++++++++++++++
 t/OSI/MIT                             |  19 ++
 t/OSI/MPL-1.0                         | 153 +++++++++++
 t/OSI/MPL-1.1                         | 384 ++++++++++++++++++++++++++
 t/OSI/MPL-2.0                         | 373 +++++++++++++++++++++++++
 t/OSI/NTP                             |  15 +
 t/OSI/OFL-1.1                         |  97 +++++++
 t/OSI/PostgreSQL                      |  11 +
 t/OSI/Python-2.0                      | 161 +++++++++++
 t/{SPDX/QPL-1.0.txt => OSI/QPL-1.0}   |  54 +++-
 t/OSI/RPSL-1.0                        | 208 ++++++++++++++
 t/OSI/Zlib                            |  33 +++
 t/SPDX/EPL-1.0.txt                    |  73 +++++
 t/grant.t                             |  10 +-
 49 files changed, 5290 insertions(+), 194 deletions(-)
 create mode 100755 debian/copyright-check
 copy t/{SPDX.t => OSI.t} (57%)
 create mode 100644 t/OSI/AFL-3.0
 create mode 100644 t/OSI/AGPL-3.0
 create mode 100644 t/OSI/Apache-2.0
 create mode 100644 t/OSI/Artistic-1.0
 create mode 100644 t/OSI/Artistic-2.0
 create mode 100644 t/OSI/BSD-2
 create mode 100644 t/OSI/BSD-3
 copy t/{devscripts/boost.h => OSI/BSL-1.0} (79%)
 create mode 100644 t/OSI/CDDL-1.0
 create mode 100644 t/OSI/CECILL-2.1
 create mode 100644 t/OSI/EPL-1.0
 create mode 100644 t/OSI/GPL-2.0
 create mode 100644 t/OSI/ISC
 create mode 100644 t/OSI/LGPL-2.0
 create mode 100644 t/OSI/LGPL-2.1
 create mode 100644 t/OSI/MIT
 create mode 100644 t/OSI/MPL-1.0
 create mode 100644 t/OSI/MPL-1.1
 create mode 100644 t/OSI/MPL-2.0
 create mode 100644 t/OSI/NTP
 create mode 100644 t/OSI/OFL-1.1
 create mode 100644 t/OSI/PostgreSQL
 create mode 100644 t/OSI/Python-2.0
 copy t/{SPDX/QPL-1.0.txt => OSI/QPL-1.0} (69%)
 create mode 100644 t/OSI/RPSL-1.0
 create mode 100644 t/OSI/Zlib
 create mode 100644 t/SPDX/EPL-1.0.txt

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



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