--- libbiblio-isis-perl-0.24.orig/debian/changelog +++ libbiblio-isis-perl-0.24/debian/changelog @@ -0,0 +1,26 @@ +libbiblio-isis-perl (0.24-1.3) unstable; urgency=medium + + * Non-maintainer upload. + * Fix Maintainer email address (Closes: #980844) + + -- Baptiste Beauplat Tue, 02 Feb 2021 21:03:11 +0100 + +libbiblio-isis-perl (0.24-1.2) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Sat, 09 Jan 2021 16:12:36 +0100 + +libbiblio-isis-perl (0.24-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with Perl 5.10. Closes: #467695 + + -- Mark Hymers Sat, 05 Apr 2008 21:08:52 +0100 + +libbiblio-isis-perl (0.24-1) unstable; urgency=low + + * Initial release, using d-m-p (Closes: #437513) + + -- Jose Parrella Sat, 18 Aug 2007 15:54:25 -0400 --- libbiblio-isis-perl-0.24.orig/debian/compat +++ libbiblio-isis-perl-0.24/debian/compat @@ -0,0 +1 @@ +5 --- libbiblio-isis-perl-0.24.orig/debian/control +++ libbiblio-isis-perl-0.24/debian/control @@ -0,0 +1,33 @@ +Source: libbiblio-isis-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-7) +Maintainer: Jose Parrella +Standards-Version: 3.7.2 + +Package: libbiblio-isis-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, +Description: Perl module which reads ISIS databases + This module will read ISIS databases created by DOS CDS/ISIS, WinIsis or + IsisMarc. + . + Biblio::Isis is a Perl module which reads ISIS databases produced by + CDS/ISIS programs, such as MicroISIS, WinISIS and IsisMARC. ISIS was a + popular family of integrated library systems provided as freeware by + UNESCO, and this module provides methods to parse full databases and + use them in a Perl program in order to migrate them to other formats. + . + It can create hash values from data in ISIS database (using to_hash), + ASCII dump (using to_ascii) or just hash with field names and packed + values (like ^asomething^belse). + . + Unique feature of this module is ability to include_deleted records. + It will also skip zero sized fields (OpenIsis has a bug in XS bindings, so + fields which are zero sized will be filled with random junk from memory). + . + It also has support for identifiers (only if ISIS database is created by + IsisMarc), see to_hash. + . + Homepage: http://search.cpan.org/~dpavlin/Biblio-Isis-0.24/lib/Biblio/Isis.pm --- libbiblio-isis-perl-0.24.orig/debian/copyright +++ libbiblio-isis-perl-0.24/debian/copyright @@ -0,0 +1,23 @@ +This is the debian package for the Biblio-Isis module. +It was created by Jose Parrella using dh-make-perl. + +The upstream author is: + +Dobrica Pavlinusic + CPAN ID: DPAVLIN + dpavlin@rot13.org + http://www.rot13.org/~dpavlin/ + +This module is based heavily on code from LIBISIS.PHP library to read ISIS files V0.1.1 +written in php and (c) 2000 Franck Martin and released under LGPL.. + +This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +The full text of the license can be found in the +LICENSE file included with this module. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libbiblio-isis-perl-0.24.orig/debian/rules +++ libbiblio-isis-perl-0.24/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f + +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary