debian/0000755000000000000000000000000012231050124007154 5ustar debian/watch0000644000000000000000000000015512100036303010204 0ustar version=3 http://search.cpan.org/dist/Apache-DB/ .*/Apache-DB-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/clean0000644000000000000000000000001312100036303010151 0ustar perl5db.pl debian/rules0000755000000000000000000000003612100036303010231 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000307612100036303011113 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Apache-DB Source: http://search.cpan.org/dist/Apache-DB/ Upstream-Contact: Frank Wiles Files: * Copyright: 1999, Doug MacEachern 2004-2008, Frank Wiles License: Artistic or GPL-1+ Comment: The upstream distribution does not contain an explicit statement of copyright ownership. Pursuant to the Berne Convention for the Protection of Literary and Artistic Works, it is assumed that all content is copyright by its respective authors unless otherwise stated. Years of copyright taken from uploads to CPAN. Files: debian/* Copyright: 2001-2008, Ivan Kohler 2008-2011, gregor herrmann 2010, Ansgar Burchardt 2013, Salvatore Bonaccorso 2013, Xavier Guimard 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'. debian/source/0000755000000000000000000000000012100036303010452 5ustar debian/source/format0000644000000000000000000000001412100036303011660 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012100036303010601 5ustar debian/patches/hurd.patch0000644000000000000000000000202312100036303012561 0ustar Description: Fix FTBFS on GNU/Hurd Building Apache-DB on GNU/Hurd fails[1]: DB.xs: In function 'XS_DB_ApacheSIGINT': DB.xs:60: error: too many arguments to function 'ApacheSIGINT' In /usr/lib/perl/5.10/CORE/iperlsys.h, Sighandler_t is defined to take three arguments only when HAS_SIGACTION and SA_SIGINFO are defined. This patch adds these conditions to DB.xs as well. Bug-Debian: https://buildd.debian.org/fetch.cgi?pkg=libapache-db-perl&arch=hurd-i386&ver=0.14-1&stamp=1281706853&file=log&as=raw Origin: vendor Forwarded: https://rt.cpan.org/Ticket/Display.html?id=60458 Author: Ansgar Burchardt Reviewed-By: Xavier Guimard Last-Update: 2013-01-23 --- a/DB.xs +++ b/DB.xs @@ -56,7 +56,7 @@ ApacheSIGINT(...) CODE: -#if ((PERL_REVISION == 5) && (PERL_VERSION >= 10)) +#if ((PERL_REVISION == 5) && (PERL_VERSION >= 10)) && defined(HAS_SIGACTION) && defined(SA_SIGINFO) if (ApacheSIGINT) (*ApacheSIGINT)(SIGINT, NULL, NULL); #else if (ApacheSIGINT) (*ApacheSIGINT)(SIGINT); debian/patches/series0000644000000000000000000000001312100036303012010 0ustar hurd.patch debian/compat0000644000000000000000000000000212100036303010350 0ustar 9 debian/control0000644000000000000000000000211312100036303010552 0ustar Source: libapache-db-perl Maintainer: Debian Perl Group Uploaders: Ivan Kohler , gregor herrmann , Ansgar Burchardt , Xavier Guimard Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312), perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libapache-db-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libapache-db-perl.git Homepage: http://search.cpan.org/dist/Apache-DB/ Package: libapache-db-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, libapache2-mod-perl2, libdevel-dprof-perl | perl (<< 5.12.3-7) Description: module to run the interactive Perl debugger under mod_perl Perl ships with a very useful interactive debugger, however, it does not run "out-of-the-box" in the Apache/mod_perl environment. Apache::DB makes a few adjustments so the two will cooperate. debian/changelog0000644000000000000000000001001012231050124011016 0ustar libapache-db-perl (0.14-4build1) devel; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Sun, 20 Oct 2013 22:51:16 +0100 libapache-db-perl (0.14-4) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) [ Xavier Guimard ] * Bump Standards-Version to 3.9.4 * Bump debhelper compatibility to 9 * Add debian/clean to drop perl5db.pl * Update debian/copyright (years and format) * Update short description which was too long * Correct syntax error in hurd patch format (claimed by Config::Model::Dpkg) -- Xavier Guimard Wed, 23 Jan 2013 20:39:25 +0100 libapache-db-perl (0.14-3) unstable; urgency=low [ Ansgar Burchardt ] * Update my email address. * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * Add dependency on "libdevel-dprof-perl | perl (<< 5.12.3-7)". (Closes: #636952) * Set Standards-Version to 3.9.2 (no changes). * Improve short description. -- gregor herrmann Tue, 09 Aug 2011 16:49:26 +0200 libapache-db-perl (0.14-2) unstable; urgency=low [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Ansgar Burchardt ] * Fix FTBFS on GNU/Hurd. + new patch: hurd.patch * Use source format 3.0 (quilt). * Make dependency on libapache2-mod-perl2 unversioned as it is already satisfied in stable. * Make build-dep on perl unversioned. * Use tiny debian/rules with debhelper 8. * Convert debian/copyright to proposed machine-readable format. * Bump Standards-Version to 3.9.1. * Add myself to Uploaders. -- Ansgar Burchardt Wed, 18 Aug 2010 17:51:05 +0900 libapache-db-perl (0.14-1) unstable; urgency=low * Take over for the Debian Perl Group on maintainer's request (closes: #479124) * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Changed: Maintainer set to Debian Perl Group (was: Ivan Kohler ); Ivan Kohler moved to Uploaders. * debian/watch: use dist-based URL. * New upstream release, no longer FTBFS with Perl 5.10 (closes: #466734). * debian/copyright: mention Debian Perl Group, quote statement about authors and license verbatim from the module's source. * Refresh debian/rules, no functional changes. * Set Standards-Version to 3.7.3 (no changes). * Set debhelper compatibility level to 5. * Add /me to Uploaders. -- gregor herrmann Sat, 03 May 2008 20:33:26 +0200 libapache-db-perl (0.13-1) unstable; urgency=low * New upstream release. * Remove apache/mod_perl v1 dependencies. * Probably doesn't fix the FTBFS on perl 5.10 yet. -- Ivan Kohler Wed, 20 Feb 2008 11:00:19 -0800 libapache-db-perl (0.10-1) unstable; urgency=low * New upstream release (closes: Bug#329489) -- Ivan Kohler Thu, 22 Sep 2005 04:08:29 -0700 libapache-db-perl (0.09-1) unstable; urgency=low * New upstream release, now mod_perl 2 compatible. * Change Section: from interpreters to perl * debhelper compat v4 * New upstream maintainer, new copyright clarification * Added watch file -- Ivan Kohler Sat, 7 Aug 2004 19:35:03 -0700 libapache-db-perl (0.06-2) unstable; urgency=low * debian/copyright pedantry (closes: Bug#153368, Bug#153325) * Fold in 5.8 build-dep from NMU, thanks joey -- Ivan Kohler Sat, 7 Sep 2002 04:18:52 -0700 libapache-db-perl (0.06-1) unstable; urgency=low * Initial Release. -- Ivan Kohler Sun, 8 Jul 2001 00:08:45 -0700