This is an automated email from the git hooks/post-receive script. js pushed a commit to branch master in repository libconfig-zomg-perl.
commit d4772e016a9738a7f3588ca6efd1f7dd6c335e1f Author: Jonas Smedegaard <d...@jones.dk> Date: Tue Aug 22 02:58:17 2017 +0200 Initial packaging. --- debian/README.source | 11 ++++++ debian/changelog | 6 ++++ debian/compat | 1 + debian/control | 49 +++++++++++++++++++++++++ debian/control.in | 39 ++++++++++++++++++++ debian/copyright | 33 +++++++++++++++++ debian/copyright-check | 24 +++++++++++++ debian/copyright_hints | 79 +++++++++++++++++++++++++++++++++++++++++ debian/gbp.conf | 6 ++++ debian/rules | 33 +++++++++++++++++ debian/source/format | 1 + debian/source/lintian-overrides | 5 +++ debian/watch | 3 ++ 13 files changed, 290 insertions(+) diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..f88449e --- /dev/null +++ b/debian/README.source @@ -0,0 +1,11 @@ +CDBS+git-buildpackage +--------------------- + +This source package uses CDBS and git-buildpackage. NMUs need not (but +are encouraged to) make special use of these tools. In particular, the +debian/control.in file can be completely ignored. + +More info here: http://wiki.debian.org/CDBS+git-buildpackage + + + -- Jonas Smedegaard <d...@jones.dk> Mon, 18 Feb 2013 12:55:37 +0100 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b177463 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libconfig-zomg-perl (1.000000-1) unstable; urgency=low + + * Initial packaging release. + Closes: bug#865431. + + -- Jonas Smedegaard <d...@jones.dk> Tue, 22 Aug 2017 02:58:02 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..dbcdd60 --- /dev/null +++ b/debian/control @@ -0,0 +1,49 @@ +Source: libconfig-zomg-perl +Section: perl +Priority: optional +Build-Depends: cdbs, + perl, + debhelper, + dh-buildinfo, + libclone-perl, + libconfig-any-perl, + libhash-merge-simple-perl, + libmoo-perl, + libtest-deep-perl, + libtest-warn-perl, + libconfig-general-perl +Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org> +Uploaders: Jonas Smedegaard <d...@jones.dk> +Standards-Version: 4.1.0 +Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libconfig-zomg-perl +Vcs-Browser: https://anonscm.debian.org/git/pkg-perl/packages/libconfig-zomg-perl.git +Homepage: http://search.cpan.org/dist/Config-ZOMG/ + +Package: libconfig-zomg-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} +Recommends: ${cdbs:Recommends} +Suggests: ${cdbs:Suggests} +Description: yet another Catalyst::Plugin::ConfigLoader-style layer over Config::Any + Config::ZOMG is a fork of Config::JFDI. It removes a couple of unusual + features and passes the same tests three times faster than + Config::JFDI. + . + Config::ZOMG is an implementation of Catalyst::Plugin::ConfigLoader + that exists outside of Catalyst. + . + Config::ZOMG will scan a directory for files matching a certain name. + If such a file is found which also matches an extension that + Config::Any can read, then the configuration from that file will be + loaded. + . + Config::ZOMG will also look for special files that end with a "_local" + suffix. Files with this special suffix will take precedence over any + other existing configuration file, if any. The precedence takes place + by merging the local configuration with the "standard" configuration + via Hash::Merge::Simple. + . + Finally you can override/modify the path search from outside your + application, by setting the "${NAME}_CONFIG" variable outside your + application (where $NAME is the uppercase version of what you passed to + Config::ZOMG->new). diff --git a/debian/control.in b/debian/control.in new file mode 100644 index 0000000..93b93a4 --- /dev/null +++ b/debian/control.in @@ -0,0 +1,39 @@ +Source: libconfig-zomg-perl +Section: perl +Priority: optional +Build-Depends: @cdbs@ +Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org> +Uploaders: Jonas Smedegaard <d...@jones.dk> +Standards-Version: 4.1.0 +Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libconfig-zomg-perl +Vcs-Browser: https://anonscm.debian.org/git/pkg-perl/packages/libconfig-zomg-perl.git +Homepage: http://search.cpan.org/dist/Config-ZOMG/ + +Package: libconfig-zomg-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} +Recommends: ${cdbs:Recommends} +Suggests: ${cdbs:Suggests} +Description: yet another Catalyst::Plugin::ConfigLoader-style layer over Config::Any + Config::ZOMG is a fork of Config::JFDI. It removes a couple of unusual + features and passes the same tests three times faster than + Config::JFDI. + . + Config::ZOMG is an implementation of Catalyst::Plugin::ConfigLoader + that exists outside of Catalyst. + . + Config::ZOMG will scan a directory for files matching a certain name. + If such a file is found which also matches an extension that + Config::Any can read, then the configuration from that file will be + loaded. + . + Config::ZOMG will also look for special files that end with a "_local" + suffix. Files with this special suffix will take precedence over any + other existing configuration file, if any. The precedence takes place + by merging the local configuration with the "standard" configuration + via Hash::Merge::Simple. + . + Finally you can override/modify the path search from outside your + application, by setting the "${NAME}_CONFIG" variable outside your + application (where $NAME is the uppercase version of what you passed to + Config::ZOMG->new). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b58a29f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,33 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Config::ZOMG +Upstream-Contact: Arthur Axel "fREW" Schmidt <frioux+c...@gmail.com> +Source: http://search.cpan.org/dist/Config-ZOMG/ + git://github.com/frioux/Config-ZOMG + +Files: * +Copyright: 2013, Arthur Axel "fREW" Schmidt. +License-Grant: + This is free software; you can redistribute it and/or modify it under + the same terms as the Perl 5 programming language system itself. +License: Artistic or GPL-1+ +Comment: + Perl 5 is licensed under either the 'Artistic license' or the 'GNU + General Public License' version 1 or later. + +Files: debian/* +Copyright: 2016-2017, Jonas Smedegaard <d...@jones.dk> +License-Grant: + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 3, or (at your option) any + later version. +License: GPL-3+ + +License: Artistic +License-Reference: /usr/share/common-licenses/Artistic + +License: GPL-1+ +License-Reference: /usr/share/common-licenses/GPL-1 + +License: GPL-3+ +License-Reference: /usr/share/common-licenses/GPL-3 diff --git a/debian/copyright-check b/debian/copyright-check new file mode 100755 index 0000000..129b94d --- /dev/null +++ b/debian/copyright-check @@ -0,0 +1,24 @@ +#!/bin/sh +# Copyright © 2016-2017 Jonas Smedegaard <d...@jones.dk> +# Description: helper script to update copyright_hints +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +set -eu + +make -f /usr/share/cdbs/1/rules/utils.mk pre-build || true +make -f /usr/share/cdbs/1/rules/utils.mk clean DEB_COPYRIGHT_CHECK_STRICT=1 + +# unconditionally merge changes - safe to do with git-tracked package +[ ! -f debian/copyright_newhints ] || mv -f debian/copyright_newhints debian/copyright_hints diff --git a/debian/copyright_hints b/debian/copyright_hints new file mode 100644 index 0000000..5935ec8 --- /dev/null +++ b/debian/copyright_hints @@ -0,0 +1,79 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: FIXME +Upstream-Contact: FIXME +Source: FIXME +Disclaimer: Autogenerated by CDBS + +Files: Changes + MANIFEST + META.json + META.yml + Makefile.PL + debian/README.source + debian/compat + debian/control + debian/control.in + debian/gbp.conf + debian/source/format + debian/source/lintian-overrides + debian/watch + dist.ini + t/10-loader.t + t/11-loader-env.t + t/12-loader-file.t + t/13-loader-no-env.t + t/14-loader-env-lookup.t + t/16-loader-order.t + t/17-found.t + t/18-open.t + t/22-default.t + t/9bug-rt47237-path-undefined.t + t/9bug-rt53886.t + t/9bug-taking-extension-from-path.t + t/assets/default.pl + t/assets/dotdot.conf + t/assets/order/xyzzy.cnf + t/assets/order/xyzzy.conf + t/assets/order/xyzzy.perl + t/assets/order/xyzzy.pl + t/assets/order/xyzzy_local.cnf + t/assets/order/xyzzy_local.conf + t/assets/order/xyzzy_local.perl + t/assets/order/xyzzy_local.pl + t/assets/path_to.pl + t/assets/some_random_file.pl + t/assets/xyzzy.pl + t/assets/xyzzy_catalyst.pl + t/assets/xyzzy_local.pl + t/release-pod-syntax.t +Copyright: NONE +License: UNKNOWN + FIXME + +Files: README + lib/Config/ZOMG.pm + lib/Config/ZOMG/Source/Loader.pm +Copyright: 2013, Arthur Axel "fREW" Schmidt. +License: Artistic or GPL-1+ + FIXME + +Files: debian/copyright-check + debian/rules +Copyright: 2011-2015, 2017, Jonas Smedegaard <d...@jones.dk> + 2016-2017, Jonas Smedegaard <d...@jones.dk> +License: GPL-3+ + FIXME + +Files: LICENSE +Copyright: 1989, Free Software Foundation, Inc. + 19xx name of author + 19yy <name of author> + 2013, Arthur Axel "fREW" Schmidt. + disclaimer" for the program, if + ed by the Free + interest in the + of this Package, but belong to whomever generated them, and may be sold + the software, and +License: Artistic or GPL-1+ + FIXME + diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..2a594ca --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,6 @@ +# Configuration file for git-buildpackage and friends + +[DEFAULT] +pristine-tar = True +sign-tags = True +filter = */.git* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..709f997 --- /dev/null +++ b/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2017 Jonas Smedegaard <d...@jones.dk> +# Description: Main Debian packaging script for Config::ZOMG +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +include /usr/share/cdbs/1/class/perl-makemaker.mk +include /usr/share/cdbs/1/rules/debhelper.mk + +pkg = $(DEB_SOURCE_PACKAGE) + +# Needed both by upstream build and (always/often) at runtime +perl-deps = clone config-any hash-merge-simple moo +deps = $(patsubst %,$(comma) lib%-perl,$(perl-deps)) + +# Needed by upstream testsuite +deps-test = libtest-deep-perl, libtest-warn-perl +deps-test +=, libconfig-general-perl + +CDBS_BUILD_DEPENDS +=, $(deps), $(deps-test) +CDBS_DEPENDS_$(pkg) = $(deps) diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides new file mode 100644 index 0000000..f87ce0c --- /dev/null +++ b/debian/source/lintian-overrides @@ -0,0 +1,5 @@ +# License is in License-Reference field (see bug#786450) +missing-license-text-in-dep5-copyright + +# License is in License-Reference field (see bug#786450) +missing-license-paragraph-in-dep5-copyright diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..ea30e80 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +# run "uscan --report" to check or "gpb import-orig --uscan" to update +version=4 +https://metacpan.org/release/Config-ZOMG .*/Config-ZOMG-(\d[\d.]+)\.tar\.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libconfig-zomg-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list Pkg-perl-cvs-commits@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits