debian/0000755000000000000000000000000012231436325007167 5ustar debian/watch0000644000000000000000000000016112125631217010215 0ustar version=3 https://metacpan.org/release/Date-Pcalc/ .+/Date-Pcalc-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/README.source0000644000000000000000000000022512125631217011344 0ustar This package uses the quilt patch management solution. For more information about how to use it, please refer to: /usr/share/doc/quilt/README.source debian/rules0000755000000000000000000000014012141557355010251 0ustar #!/usr/bin/make -f %: dh $@ override_dh_installchangelogs: dh_installchangelogs CHANGES.txt debian/libdate-pcalc-perl.docs0000644000000000000000000000001312125631217013456 0ustar README.txt debian/copyright0000644000000000000000000000252512125631217011125 0ustar Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 Upstream-Maintainer: Steffen Beyer Upstream-Source: https://metacpan.org/release/Date-Pcalc/ Upstream-Name: Date-Pcalc Files: * Copyright: 1993-2009, Steffen Beyer , 1999-2001, J. David Eisenberg ; portions License-Alias: Perl Licence: Artistic | GPL-1+ Files: debian/* Copyright: 2002, Ivan Kohler 2008, gregor herrmann 2009, Angel Abad 2009, Ignace Mouzannar 2009, Xavier Oswald 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' debian/source/0000755000000000000000000000000012141557331010470 5ustar debian/source/format0000644000000000000000000000001412141557331011676 0ustar 3.0 (quilt) debian/libdate-pcalc-perl.examples0000644000000000000000000000005112125631217014346 0ustar EXAMPLES.txt TOOLS.txt examples/* tools/ debian/patches/0000755000000000000000000000000012125632243010615 5ustar debian/patches/10-examples.diff0000644000000000000000000000764412125631217013516 0ustar Description: Corrects perl interpreter path in examples Author: Ignace Mouzannar Last-Update: 2009-10-12 --- a/examples/age_in_days_eu.pl +++ b/examples/age_in_days_eu.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/age_in_days_us.pl +++ b/examples/age_in_days_us.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/anniversaries.pl +++ b/examples/anniversaries.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/calendar.pl +++ b/examples/calendar.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/datecalc.pl +++ b/examples/datecalc.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/delta.pl +++ b/examples/delta.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/holidays.pl +++ b/examples/holidays.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/income.pl +++ b/examples/income.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/linearcal.pl +++ b/examples/linearcal.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/nth_weekday.pl +++ b/examples/nth_weekday.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/time.pl +++ b/examples/time.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/vacation.pl +++ b/examples/vacation.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/weiberfastnacht.pl +++ b/examples/weiberfastnacht.pl @@ -1,4 +1,4 @@ -#!perl -w +#!/usr/bin/perl -w ############################################################################### ## ## --- a/tools/compile.pl +++ b/tools/compile.pl @@ -1,4 +1,4 @@ -#!perl +#!/usr/bin/perl -w ############################################################################### ## ## --- a/examples/bug.pl +++ b/examples/bug.pl @@ -1,4 +1,4 @@ -#!perl +#!/usr/bin/perl -w BEGIN { eval { require bytes; }; } use strict; debian/patches/15-fix-5.16-ftbfs.diff0000644000000000000000000000141412125632243014151 0ustar From: ANDK@cpan.org Subject: The infamous boolean subtelty needed for perl 5.16 It has been predicted that D:C:XS would be affected but I did not read it. The following patch works: Bug: https://rt.cpan.org/Public/Bug/Display.html?id=76442 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676270 Origin: https://rt.cpan.org/Public/Bug/Display.html?id=76425 --- a/src/C_XS/ToolBox.h 2009-10-16 23:47:55.000000000 +0200 +++ b/src/C_XS/ToolBox.h 2012-04-09 14:27:56.116897462 +0200 @@ -93,7 +93,10 @@ #elif PERL_DARWIN #define boolean bool #else - typedef enum { false = FALSE, true = TRUE } boolean; + typedef int boolean; + #ifndef I_STDBOOL + enum { false, true }; + #endif #endif #endif debian/patches/series0000644000000000000000000000005012125631741012027 0ustar 10-examples.diff 15-fix-5.16-ftbfs.diff debian/compat0000644000000000000000000000000212125631217010364 0ustar 7 debian/control0000644000000000000000000000261612141557350010601 0ustar Source: libdate-pcalc-perl Maintainer: Debian Perl Group Uploaders: Ivan Kohler , Xavier Oswald , gregor herrmann , Ignace Mouzannar , Angel Abad , Dominic Hargreaves Section: perl Priority: optional Build-Depends: debhelper (>= 7.0.50), perl, libcarp-clan-perl, libbit-vector-perl, Standards-Version: 3.8.3 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdate-pcalc-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdate-pcalc-perl.git Homepage: https://metacpan.org/release/Date-Pcalc/ Package: libdate-pcalc-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, libbit-vector-perl, libcarp-clan-perl Description: Perl module for Gregorian calendar date calculations This package consists of a Perl module for all kinds of date calculations based on the Gregorian calendar (the one used in all western countries today), thereby complying with all relevant norms and standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where applicable). . This module is a direct translation of Steffen Beyer's excellent Date::Calc module to Perl. debian/changelog0000644000000000000000000001001712231436325011040 0ustar libdate-pcalc-perl (6.1-2build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Tue, 22 Oct 2013 09:52:37 +0100 libdate-pcalc-perl (6.1-2) unstable; urgency=low [ gregor herrmann ] * debian/rules: switch order of arguments to dh. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Angel Abad ] * Email change: Angel Abad -> angel@debian.org [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Dominic Hargreaves ] * Add patch from ANDK fixing FTBFS with Perl 5.16 (Closes: #676270) * Switch to dpkg-source 3.0 (quilt) format -- Dominic Hargreaves Sun, 05 May 2013 23:36:59 +0100 libdate-pcalc-perl (6.1-1) unstable; urgency=low [ Angel Abad ] * New upstream release * New package is architecture depend * debian/control: add {shlibs:Depends} in Depends * Add myself to uploaders * debian/control: Now {Build-}Depends on libbit-vector-perl (>= 7.1) and libcarp-clan-perl [ gregor herrmann ] * Rearrange files in examples directory a bit. -- Angel Abad Sun, 18 Oct 2009 17:52:50 +0200 libdate-pcalc-perl (6.0-1) unstable; urgency=low [ Ignace Mouzannar ] * New upstream version. * debian/control: - Added myself to the Uploaders field. - Bumped the Standards-Version to 3.8.3. - Added Build dependency on libcarp-clan-perl and quilt (>= 0.46-7). - Bumped dependency on debhelper to (>= 7.0.50~). - Replace versioned (build-)dependency on perl (>= 5.6.0-17) with an unversioned dependency on perl (as permitted by Debian Policy 3.8.3). * debian/patches: - Added 10-examples.diff: Corrects the perl interpreter path in the example files. * debian/rules: - Simplified the rules file using dh7 features. - Added quilt patching. * debian/changelog: - Updated the Debian changelog to follow Revision 196 of the Copyright Proposal format. * Added a debian/README.source file pointing to the quilt documentation. * Added a debian/docs file. * Added a debian/examples file. [ 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. [ Xavier Oswald ] * Add myself to Uploaders * Update debian/copyright -- Ignace Mouzannar Tue, 13 Oct 2009 13:22:57 +0200 libdate-pcalc-perl (1.2-3) unstable; urgency=low * Take over for the Debian Perl Group on maintainer's request (closes: #485691). * 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. - Added: /me to Uploaders. - Changed: Section to perl. - Moved: perl from Build-Depends to Build-Depends-Indep. * Add debian/watch. * Set Standards-Version to 3.7.3 (no changes). * Set debhelper compatibility level to 5. * debian/copyright: add upstream source location. * Refresh debian/rules; install upstream changelog and mini-FAQ; add tools to examples. * Remove created Makefile and blib/ directory from source package. -- gregor herrmann Sat, 14 Jun 2008 16:32:15 +0200 libdate-pcalc-perl (1.2-2) unstable; urgency=low * debian/copyright pedantry (closes: Bug#153326, Bug#153372) * build-indep vs build-arch (closes: Bug#153350) -- Ivan Kohler Sat, 7 Sep 2002 04:27:24 -0700 libdate-pcalc-perl (1.2-1) unstable; urgency=low * Initial Release (closes: Bug#144321). -- Ivan Kohler Tue, 23 Apr 2002 21:01:22 -0700