--- libanyevent-serialize-perl-0.04.orig/debian/changelog +++ libanyevent-serialize-perl-0.04/debian/changelog @@ -0,0 +1,12 @@ +libanyevent-serialize-perl (0.04-1.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Fri, 08 Jan 2021 14:11:20 +0100 + +libanyevent-serialize-perl (0.04-1) unstable; urgency=low + + * Initial release. (Closes: #616142) + + -- Dmitry E. Oboukhov Wed, 02 Mar 2011 22:53:32 +0300 --- libanyevent-serialize-perl-0.04.orig/debian/compat +++ libanyevent-serialize-perl-0.04/debian/compat @@ -0,0 +1 @@ +7 --- libanyevent-serialize-perl-0.04.orig/debian/control +++ libanyevent-serialize-perl-0.04/debian/control @@ -0,0 +1,23 @@ +Source: libanyevent-serialize-perl +Section: perl +Homepage: http://search.cpan.org/~unera/AnyEvent-Serialize/ +Maintainer: Dmitry E. Oboukhov +VCS-Browser: http://git.uvw.ru/?p=anyevent-serialize;a=summary +Build-Depends: debhelper (>= 7), cdbs, + libanyevent-perl, + libdata-streamdeserializer-perl, + libdata-streamserializer-perl, + libanyevent-aggressiveidle-perl +Standards-Version: 3.9.1 +Priority: extra + +Package: libanyevent-serialize-perl +Depends: ${perl:Depends}, ${misc:Depends}, + libanyevent-perl, + libdata-streamdeserializer-perl, + libdata-streamserializer-perl, + libanyevent-aggressiveidle-perl +Architecture: all +Description: serializer and deserializer for AnyEvent + The package provides a few non-blocking methods to serialize and + deserialize perl object. --- libanyevent-serialize-perl-0.04.orig/debian/copyright +++ libanyevent-serialize-perl-0.04/debian/copyright @@ -0,0 +1,26 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Maintainer: Dmitry E. Oboukhov +Source: http://search.cpan.org/perldoc?AnyEvent::Serialize +Name: AnyEvent::Serialize + +Files: * +Copyright: + 2010, Dmitry E. Oboukhov +License: Artistic or GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + . + On Debian systems, the complete text of the Artistic License can be + found in `/usr/share/common-licenses/Artistic'. + +License: GPL-1+ + 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 1, or (at your option) + any later version. + . + On Debian systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1'. + --- libanyevent-serialize-perl-0.04.orig/debian/rules +++ libanyevent-serialize-perl-0.04/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/perl-makemaker.mk + +MAIN_MODULE = lib/AnyEvent/Serialize.pm + +DEBVERSION = $(shell dpkg-parsechangelog \ + |grep ^Version|awk '{print $$2}'|sed 's/-.*//' ) +PERVERSION = $(shell grep '^our[[:space:]]\+\$$VERSION' $(MAIN_MODULE) \ + |awk '{print $$4}'|sed "s/[';']//g" ) + +install/libanyevent-serialize-perl:: + @set -e; \ + if ! test "x$(DEBVERSION)" = "x$(PERVERSION)"; then \ + echo "Error: changelog has version $(DEBVERSION) " \ + "but module has $(PERVERSION)"; \ + false; \ + fi + +clean:: + rm -fr Makefile.old + + +tarball: clean + rm -f AnyEvent-Serialize-* + cd .. && tar --exclude=.git --exclude=debian -czvf \ + libanyevent-serialize-perl_$(DEBVERSION).orig.tar.gz \ + libanyevent-serialize-perl-$(DEBVERSION)