[libdate-holidays-de-perl] 01/01: Initial Debianisation

Christoph Biedl debian.axhn at manchmal.in-ulm.de
Sun Dec 4 14:23:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

cbiedl-guest pushed a commit to branch master
in repository libdate-holidays-de-perl.

commit 521a6de951e31dc20f297c10065e617257ec47c8
Author: Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
Date:   Tue Jul 5 23:07:51 2016 +0200

    Initial Debianisation
---
 debian/changelog                         |  5 +++++
 debian/compat                            |  1 +
 debian/control                           | 21 +++++++++++++++++++++
 debian/copyright                         | 24 ++++++++++++++++++++++++
 debian/libdate-holidays-de-perl.docs     |  2 ++
 debian/libdate-holidays-de-perl.examples |  2 ++
 debian/patches/fix-typo-in-manpage.patch | 16 ++++++++++++++++
 debian/patches/series                    |  1 +
 debian/rules                             |  4 ++++
 debian/source/format                     |  1 +
 debian/watch                             |  4 ++++
 11 files changed, 81 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2dc7b23
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libdate-holidays-de-perl (1.7-1) unstable; urgency=low
+
+  * Initial Release. Closes: #829833
+
+ -- Christoph Biedl <debian.axhn at manchmal.in-ulm.de>  Tue, 05 Jul 2016 23:07:51 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..55d5750
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: libdate-holidays-de-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders:
+    Christoph Biedl <debian.axhn at manchmal.in-ulm.de>,
+Homepage: http://search.cpan.org/dist/Date-Holidays-DE/
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdate-holidays-de-perl.git
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdate-holidays-de-perl.git
+Build-Depends: debhelper (>= 9~),
+    libdate-calc-perl,
+Priority: optional
+Section: perl
+
+Package: libdate-holidays-de-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+    libdate-calc-perl,
+Description: Determine German holiday dates
+ This module provides a function to get a list of German holidays for a
+ given year. It also knows about different regulations throughout
+ Germany.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..893a3ca
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,24 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Date-Holidays-DE
+Upstream-Contact: Martin Schmitt <mas at scsy.de>
+Source: http://search.cpan.org/dist/Date-Holidays-DE/
+
+Files: *
+Copyright:
+ Copyright 2012, Martin Schmitt <mas at scsy dot de>,
+ including patches contributed by Marc Andre Selig, Oliver Paukstadt,
+ Tobias Leich and Christian Loos
+License: ISC
+
+License: ISC
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/debian/libdate-holidays-de-perl.docs b/debian/libdate-holidays-de-perl.docs
new file mode 100644
index 0000000..4d7f626
--- /dev/null
+++ b/debian/libdate-holidays-de-perl.docs
@@ -0,0 +1,2 @@
+
+README
diff --git a/debian/libdate-holidays-de-perl.examples b/debian/libdate-holidays-de-perl.examples
new file mode 100644
index 0000000..0278801
--- /dev/null
+++ b/debian/libdate-holidays-de-perl.examples
@@ -0,0 +1,2 @@
+
+example/*
diff --git a/debian/patches/fix-typo-in-manpage.patch b/debian/patches/fix-typo-in-manpage.patch
new file mode 100644
index 0000000..ee20e56
--- /dev/null
+++ b/debian/patches/fix-typo-in-manpage.patch
@@ -0,0 +1,16 @@
+Subject: Fix typo in mapage reported by lintian
+Author: Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=115897
+Last-Update: 2016-07-05
+
+--- a/DE.pm
++++ b/DE.pm
+@@ -496,7 +496,7 @@
+ 
+ There are a number of holidays that aren't really holidays, e.g. New Year's Eve 
+ and Christmas Eve. These aren't contained in the I<common> set of holidays 
+-returnd by the B<holidays()> function. The aforementioned I<silv> and I<heil> 
++returned by the B<holidays()> function. The aforementioned I<silv> and I<heil> 
+ are probably the most likely ones that you'll need. If you live in Koeln, you'll
+ probably want to include I<romo> and I<fadi>, too. ;-)
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..d3cc525
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-typo-in-manpage.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..fdf90f5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+http://www.cpan.org/modules/by-module/Date/ \
+     Date-Holidays-DE-([0-9].+)\.tar\.gz \
+     debian uupdate

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdate-holidays-de-perl.git



More information about the Pkg-perl-cvs-commits mailing list