--- libdate-hijri-perl-0.02.orig/debian/control +++ libdate-hijri-perl-0.02/debian/control @@ -0,0 +1,21 @@ +Source: libdate-hijri-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: أحمد المحمودي (Ahmed El-Mahmoudy) +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-12) +Standards-Version: 3.8.2 +Homepage: http://search.cpan.org/dist/Date_Hijri/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdate-hijri-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdate-hijri-perl/ + +Package: libdate-hijri-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Perl module to convert Gregorian dates to Hijri and vice versa + The Date::Hijri module converts Gregorian dates to Islamic (Hijri) and vice + versa. + . + The dates must be given as an array containing the day, month and year, and + return the corresponding date as a list with the same elements. --- libdate-hijri-perl-0.02.orig/debian/copyright +++ libdate-hijri-perl-0.02/debian/copyright @@ -0,0 +1,42 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Alex Pleiner +Upstream-Source: http://search.cpan.org/dist/Date_Hijri/ +Upstream-Name: Date_Hijri + +Files: * +Copyright: Copyright © 2003, Alex Pleiner - zeitform Internet Dienste +License-Alias: Perl +License: Artistic | GPL-1+ + This code is just stolen from KDE's kcalendarsystemhijri.cpp at + http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdelibs/kdecore/kcalendarsystemhijri.cpp + + Copyright © 2002-2003 Carlos Moro + Copyright © 2002-2003 Hans Petter Bieker + + kcalendarsystemhijri.cpp is translated from the Lisp code in + ``Calendrical Calculations'' by Nachum Dershowitz and Edward + M. Reingold, Software---Practice & Experience, vol. 20, no. 9 + (September, 1990), pp. 899--928. + + This code is in the public domain, but any use of it should publically + acknowledge its source. + +Files: debian/* +Copyright: Copyright © 2009, أحمد المحمودي (Ahmed El-Mahmoudy) +License-Alias: Perl +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' --- libdate-hijri-perl-0.02.orig/debian/watch +++ libdate-hijri-perl-0.02/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Date_Hijri/ .*/Date_Hijri-?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libdate-hijri-perl-0.02.orig/debian/compat +++ libdate-hijri-perl-0.02/debian/compat @@ -0,0 +1 @@ +7 --- libdate-hijri-perl-0.02.orig/debian/changelog +++ libdate-hijri-perl-0.02/debian/changelog @@ -0,0 +1,5 @@ +libdate-hijri-perl (0.02-1) unstable; urgency=low + + * Initial release (Closes: #534777) + + -- أحمد المحمودي (Ahmed El-Mahmoudy) Fri, 26 Jun 2009 18:57:24 +0300 --- libdate-hijri-perl-0.02.orig/debian/rules +++ libdate-hijri-perl-0.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