This is an automated email from the git hooks/post-receive script. js pushed a commit to branch master in repository libmarc-file-mij-perl.
commit 3f187c3b0f3a444d533335ef0463e5c78bc74dd2 Author: Jonas Smedegaard <[email protected]> Date: Tue Oct 21 23:48:53 2014 +0200 Initial packaging. --- .gitignore | 1 + debian/README.source | 11 +++++++++++ debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 26 ++++++++++++++++++++++++++ debian/control.in | 19 +++++++++++++++++++ debian/copyright | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ debian/copyright_hints | 40 ++++++++++++++++++++++++++++++++++++++++ debian/gbp.conf | 8 ++++++++ debian/rules | 35 +++++++++++++++++++++++++++++++++++ debian/source/format | 1 + debian/watch | 4 ++++ 12 files changed, 201 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b408e6c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.pc 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 <[email protected]> Mon, 18 Feb 2013 12:55:37 +0100 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2a68855 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libmarc-file-mij-perl (0.04-1) unstable; urgency=low + + * Initial Release. + Closes: bug#766226. + + -- Jonas Smedegaard <[email protected]> Tue, 21 Oct 2014 23:48:16 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..86cc6cf --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +Source: libmarc-file-mij-perl +Section: perl +Priority: optional +Build-Depends: cdbs, + devscripts, + perl, + debhelper, + dh-buildinfo, + libjson-perl, + libmarc-record-perl, + libex-monkeypatched-perl +Maintainer: Debian Perl Group <[email protected]> +Uploaders: Jonas Smedegaard <[email protected]> +Standards-Version: 3.9.6 +Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmarc-file-mij-perl +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmarc-file-mij-perl.git +Homepage: https://metacpan.org/release/MARC-File-MiJ + +Package: libmarc-file-mij-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} +Enhances: ${cdbs:Enhances} +Description: read newline-delimited marc-in-json files + MARC::File::MiJ is a subclass of MARC::File for reading MARC records + encoded as newline-delimited marc-in-json, as supported by + pymarc/ruby-marc/marc4j. diff --git a/debian/control.in b/debian/control.in new file mode 100644 index 0000000..ddef090 --- /dev/null +++ b/debian/control.in @@ -0,0 +1,19 @@ +Source: libmarc-file-mij-perl +Section: perl +Priority: optional +Build-Depends: @cdbs@ +Maintainer: Debian Perl Group <[email protected]> +Uploaders: Jonas Smedegaard <[email protected]> +Standards-Version: 3.9.6 +Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmarc-file-mij-perl +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmarc-file-mij-perl.git +Homepage: https://metacpan.org/release/MARC-File-MiJ + +Package: libmarc-file-mij-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} +Enhances: ${cdbs:Enhances} +Description: read newline-delimited marc-in-json files + MARC::File::MiJ is a subclass of MARC::File for reading MARC records + encoded as newline-delimited marc-in-json, as supported by + pymarc/ruby-marc/marc4j. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..35270ae --- /dev/null +++ b/debian/copyright @@ -0,0 +1,49 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: MARC::File::MiJ +Upstream-Contact: http://rt.cpan.org/NoAuth/Bugs.html?Dist=MARC-File-MiJ +Source: https://metacpan.org/release/MARC-File-MiJ + +Files: * +Copyright: 2013, Bill Dueber <[email protected]> +License: Artistic or GPL-1+ + License: + . + This software is free software and may be distributed under the same + terms as Perl itself. + . + Comment: + . + Perl 5 is licensed under either the 'Artistic license' or the 'GNU + General Public License' version 1 or later. + +Files: debian/* +Copyright: 2014, Jonas Smedegaard <[email protected]> +License: GPL-3+ + +License: Artistic + Comment: + . + On Debian systems the 'Artistic License' is located in + '/usr/share/common-licenses/Artistic'. + +License: GPL-1+ + Comment: + . + On Debian systems the 'GNU General Public License' version 1 is located + in '/usr/share/common-licenses/GPL-1'. + +License: GPL-3+ + 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 of the License, 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. + . + Comment: + . + On Debian systems the 'GNU General Public License' version 3 is located + in '/usr/share/common-licenses/GPL-3'. diff --git a/debian/copyright_hints b/debian/copyright_hints new file mode 100644 index 0000000..e1fbf87 --- /dev/null +++ b/debian/copyright_hints @@ -0,0 +1,40 @@ +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: Build.PL + 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/watch + t/00-load.t + t/boilerplate.t + t/camel.usmarc + t/test.mrc + t/test.ndj +Copyright: *No copyright* +License: UNKNOWN + FIXME + +Files: README + lib/MARC/File/MiJ.pm + lib/MARC/Record/MiJ.pm +Copyright: 2013, Bill Dueber +License: UNKNOWN + FIXME + +Files: debian/rules +Copyright: 2014, Jonas Smedegaard <[email protected]> +License: GPL-3+ + FIXME + diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..790a2f9 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,8 @@ +# Configuration file for git-buildpackage and friends + +[DEFAULT] +pristine-tar = True +sign-tags = True + +[git-import-orig] +filter = .gitignore diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1168161 --- /dev/null +++ b/debian/rules @@ -0,0 +1,35 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2014 Jonas Smedegaard <[email protected]> +# Description: Main Debian packaging script for MARC::File::MiJ +# +# 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/rules/upstream-tarball.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/class/perl-makemaker.mk +include /usr/share/cdbs/1/rules/debhelper.mk + +pkg = $(DEB_SOURCE_PACKAGE) + +DEB_UPSTREAM_PACKAGE = MARC-File-MiJ +DEB_UPSTREAM_URL = http://www.cpan.org/authors/id/G/GM/GMCHARLT +DEB_UPSTREAM_TARBALL_MD5 = 05583863fbee95d659977676bce2f857 + +# Needed by upstream build and (always) at runtime +perl-deps = json marc-record ex-monkeypatched +deps = $(patsubst %,$(comma) lib%-perl,$(perl-deps)) + +CDBS_BUILD_DEPENDS +=, $(deps) +CDBS_DEPENDS_$(pkg) = $(deps) diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..46ebe02 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) \ No newline at end of file diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..29d2bdb --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +# Run the "uscan" command to check for upstream updates and more. +version=3 +http://www.cpan.org/authors/id/G/GM/GMCHARLT/MARC-File-MiJ-([\d.]+)\.tar\.gz +https://metacpan.org/release/MARC-File-MiJ .*/MARC-File-MiJ-([\d.]+)\.tar\.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmarc-file-mij-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
