--- libbio-asn1-entrezgene-perl-1.091.orig/debian/control
+++ libbio-asn1-entrezgene-perl-1.091/debian/control
@@ -0,0 +1,30 @@
+Source: libbio-asn1-entrezgene-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregoa@debian.org>
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.6.0-16), bioperl
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Bio-ASN1-EntrezGene/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libbio-asn1-entrezgene-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libbio-asn1-entrezgene-perl/
+
+Package: libbio-asn1-entrezgene-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: parser for NCBI Entrez Gene and NCBI Sequence records
+ Bio::ASN1::EntrezGene and Bio::ASN1::Sequence are regular expression-based
+ parsers for NCBI Entrez Gene genome databases
+ (<http://www.ncbi.nih.gov/entrez/query.fcgi?db=gene>).
+ .
+ They parse ASN.1-formatted Entrez Gene records and NCBI sequences,
+ returning data structures that contain all data items from the gene records
+ or the sequence records.
+ .
+ The parser will report error & line number if input data does not conform to
+ the NCBI Entrez Gene genome or NCBI Sequence annotation file format.
+ .
+ Bio::ASN1::Sequence is basically a modified version of the high-performance
+ Bio::ASN1::EntrezGene parser. However this standalone module exists since it
+ is more efficient to keep Sequence-specific code out of EntrezGene.pm.
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/copyright
+++ libbio-asn1-entrezgene-perl-1.091/debian/copyright
@@ -0,0 +1,29 @@
+Format-Specification:
+ http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Dr. Mingyi Liu <mingyi.liu@gpc-biotech.com>
+Upstream-Source: http://search.cpan.org/dist/Bio-ASN1-EntrezGene/
+Upstream-Name: Bio-ASN1-EntrezGene
+
+Files: *
+Copyright: (C) 2005, Mingyi Liu, GPC Biotech, Altana Research Institute.
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2007-2009, various members of the Debian Perl Group,
+ cf. debian/changelog
+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'
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/watch
+++ libbio-asn1-entrezgene-perl-1.091/debian/watch
@@ -0,0 +1,4 @@
+version=3
+http://search.cpan.org/dist/Bio-ASN1-EntrezGene/ .*/Bio-ASN1-EntrezGene-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
+
+
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/compat
+++ libbio-asn1-entrezgene-perl-1.091/debian/compat
@@ -0,0 +1 @@
+7
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/libbio-asn1-entrezgene-perl.examples
+++ libbio-asn1-entrezgene-perl-1.091/debian/libbio-asn1-entrezgene-perl.examples
@@ -0,0 +1 @@
+examples/*
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/changelog
+++ libbio-asn1-entrezgene-perl-1.091/debian/changelog
@@ -0,0 +1,26 @@
+libbio-asn1-entrezgene-perl (1.091-2) unstable; urgency=low
+
+ [ David Paleino ]
+ * Removed myself from Uploaders (Closes: #509506)
+
+ [ gregor herrmann ]
+ * debian/control:
+ - added: Vcs-Svn field (source stanza); Vcs-Browser
+ field (source stanza); Homepage field (source stanza). Removed:
+ Homepage pseudo-field (Description); XS-Vcs-Svn fields.
+ (source stanza)
+ - added: ${misc:Depends} to Depends: field
+ - set Standards-Version to 3.8.0 (no changes)
+ - add /me to Uploaders
+ * debian/watch: use dist-based URL.
+ * Set debhelper compatibility level to 7; adapt
+ debian/{control,compat,rules}.
+ * debian/copyright: switch to new format.
+
+ -- gregor herrmann <gregoa@debian.org> Wed, 07 Jan 2009 17:41:12 +0100
+
+libbio-asn1-entrezgene-perl (1.091-1) unstable; urgency=low
+
+ * Initial release (Closes: #442135)
+
+ -- David Paleino <d.paleino@gmail.com> Thu, 13 Sep 2007 14:23:17 +0200
--- libbio-asn1-entrezgene-perl-1.091.orig/debian/rules
+++ libbio-asn1-entrezgene-perl-1.091/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