--- libdata-flow-perl-1.02.orig/debian/control +++ libdata-flow-perl-1.02/debian/control @@ -0,0 +1,23 @@ +Source: libdata-flow-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Data-Flow/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-flow-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdata-flow-perl/ +Build-Depends: debhelper (>= 7) + +Package: libdata-flow-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl extension for simple-minded recipe-controlled build of data + Data::Flow allows you to define recipes for building data. A recipe + contains all of the rules for determining the value of the data involved + based on a set of defaults and/or interreactions with other pieces of + data in an automated fashion. You can define any or all of: + - default values + - prerequisites (other fields that must have values before the field + in question can be determined) + - subroutines to build the field data given all requirements --- libdata-flow-perl-1.02.orig/debian/copyright +++ libdata-flow-perl-1.02/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Ilya Zakharevich +Upstream-Source: http://search.cpan.org/dist/Data-Flow/ +Upstream-Name: Data-Flow + +Files: * +Copyright: 1996-2008 Ilya Zakharevich +License-Alias: Perl +License: Artistic | GPL-1+ + Ilya has stated: + All the stuff I release is distributed on the "same as Perl" basis, so + this holds. + +Files: debian/* +Copyright: 2001-2003, Elie Rosenblum + 2007, Matej Vela + 2009, Ryan Niebur +License: Artistic | 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libdata-flow-perl-1.02.orig/debian/watch +++ libdata-flow-perl-1.02/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Data-Flow/ .*/Data-Flow-(.*)\.tar\.gz --- libdata-flow-perl-1.02.orig/debian/compat +++ libdata-flow-perl-1.02/debian/compat @@ -0,0 +1 @@ +7 --- libdata-flow-perl-1.02.orig/debian/changelog +++ libdata-flow-perl-1.02/debian/changelog @@ -0,0 +1,63 @@ +libdata-flow-perl (1.02-1) unstable; urgency=low + + * Take over for the Debian Perl Group; Closes: #430978 -- RFA + * add myself to Uploaders + * New upstream release + * policy 3.8.0 + * debhelper 7 + * machine readable copyright format + + -- Ryan Niebur Fri, 06 Mar 2009 23:10:40 -0800 + +libdata-flow-perl (0.09-1) unstable; urgency=low + + * QA upload. + * New upstream release. Closes: #329528. + + -- Matej Vela Fri, 10 Aug 2007 11:42:29 +0200 + +libdata-flow-perl (0.05-6) unstable; urgency=low + + * QA upload. + * Package is orphaned (#430978); set maintainer to Debian QA Group. + * Switch to debhelper 5. + * Move debhelper from Build-Depends-Indep to Build-Depends. + * Drop pre-sarge build dependency on perl (>= 5.6.0-17). + * debian/changelog: Remove obsolete Emacs local variables. + * debian/watch: Add. + * Conforms to Standards version 3.7.2. + + -- Matej Vela Thu, 19 Jul 2007 10:35:59 +0200 + +libdata-flow-perl (0.05-5) unstable; urgency=low + + * Changed from builds-depends to build-depends-indep + * Changed section to perl + + -- Elie Rosenblum Tue, 26 Aug 2003 16:03:16 -0400 + +libdata-flow-perl (0.05-4) unstable; urgency=low + + * Changed build from binary-arch to binary-indep (closes: #157473) + * Moved maint info to copyright file (closes: #157516) + + -- Elie Rosenblum Sun, 22 Sep 2002 14:20:53 -0400 + +libdata-flow-perl (0.05-3) unstable; urgency=low + + * Fixed description. (Closes: #111809) + + -- Elie Rosenblum Sun, 9 Sep 2001 21:03:36 -0400 + +libdata-flow-perl (0.05-2) unstable; urgency=low + + * Clarification of license terms by upstream author + + -- Elie Rosenblum Thu, 30 Aug 2001 10:54:11 -0400 + +libdata-flow-perl (0.05-1) unstable; urgency=low + + * Accepted RFP. Closes #108430 + * Initial Release. + + -- Elie Rosenblum Wed, 22 Aug 2001 16:16:16 -0400 --- libdata-flow-perl-1.02.orig/debian/rules +++ libdata-flow-perl-1.02/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build