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

gregoa pushed a commit to branch master
in repository libtime-period-perl.

commit a5543b25c1fb835dc6a9457c884be06d0f9335a8
Author: Paul Slootman <[email protected]>
Date:   Fri Jan 22 14:58:11 2016 +0100

    Import Debian changes 1.20-8.2
    
    libtime-period-perl (1.20-8.2) unstable; urgency=medium
    
      * Non-maintainer upload.
      * update debhelper usage.
        closes:#800235
      * Updated copyright file to current Debian policy requirements.
      * Updated to policy 3.9.6.
---
 debian/changelog | 10 ++++++++
 debian/compat    |  1 +
 debian/control   |  6 ++---
 debian/copyright | 16 +++----------
 debian/rules     | 73 ++------------------------------------------------------
 5 files changed, 19 insertions(+), 87 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 212cdac..3ec73bc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libtime-period-perl (1.20-8.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * update debhelper usage.
+    closes:#800235
+  * Updated copyright file to current Debian policy requirements.
+  * Updated to policy 3.9.6.
+
+ -- Paul Slootman <[email protected]>  Fri, 22 Jan 2016 14:58:11 +0100
+
 libtime-period-perl (1.20-8.1) unstable; urgency=medium
 
   * Non-maintainer upload.
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
index c91cb13..0f52687 100644
--- a/debian/control
+++ b/debian/control
@@ -2,12 +2,12 @@ Source: libtime-period-perl
 Section: perl
 Priority: optional
 Maintainer: Roderick Schertler <[email protected]>
-Standards-Version: 3.5.2
-Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16)
+Standards-Version: 3.9.6
+Build-Depends: debhelper (>= 9), perl (>= 5.6.0-16)
 
 Package: libtime-period-perl
 Architecture: all
-Depends: ${perl:Depends}
+Depends: ${perl:Depends}, ${misc:Depends}
 Description: Perl library for testing if a time() is in a specific period
  This Perl library provides a function which tells whether a specific
  time falls within a specified time period.  Its syntax for specifying
diff --git a/debian/copyright b/debian/copyright
index d81dfd2..06dcefb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,6 +10,8 @@ The Time::Period module is Copyright (c) 1997 Patrick Ryan.  
All rights
 reserved.  It may be distributed under the same terms as Perl.  These
 are:
 
+    License: GPL-1+ or Artistic
+
     This program is free software; you can redistribute it and/or modify
     it under the terms of either:
 
@@ -17,19 +19,7 @@ are:
         Software Foundation; either version 1, or (at your option) any
         later version, or
 
-        b) the "Artistic License" which comes with this Kit.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
-    the GNU General Public License or the Artistic License for more details.
-
-    You should have received a copy of the Artistic License with this
-    Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
-
-    You should also have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software Foundation,
-    Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+        b) the "Artistic License" which comes with Perl
 
 On Debian systems, the complete text of the GNU General Public License can
 be found in `/usr/share/common-licenses/GPL', and the complete text of the
diff --git a/debian/rules b/debian/rules
index f140bd0..9214977 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,73 +1,4 @@
 #!/usr/bin/make -f
 
-# $Id: rules,v 1.7 2001-07-31 14:46:20 roderick Exp $
-
-dt             := debian/libtime-period-perl
-prefix          = `pwd`/$(dt)
-stamp_build    := debian/stamp.build
-stamp_install  := debian/stamp.install
-clean          := $(stamp_build) $(stamp_install)
-
-ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))"
-    CFLAGS             += -g
-endif
-export DH_COMPAT       := 3
-PERL                   ?= perl
-
-build: $(stamp_build)
-$(stamp_build):
-       dh_testdir
-       $(PERL) Makefile.PL INSTALLDIRS=vendor
-       $(MAKE) OPTIMIZE="-O2 -Wall $(CFLAGS)"
-       $(MAKE) test
-       touch $@
-
-install: $(stamp_install)
-$(stamp_install): $(stamp_build)
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       dh_installdirs
-       $(MAKE) install DESTDIR=$(prefix)
-       find $(prefix) -depth -type d -print0 | \
-           xargs -0r rmdir --ignore-fail-on-non-empty
-       touch $@
-
-clean:
-       dh_testdir
-       dh_testroot
-       [ ! -f Makefile ] || $(MAKE) realclean
-       dh_clean $(clean)
-
-binary: binary-indep binary-arch
-binary-arch:
-binary-indep: $(stamp_install)
-       dh_testdir
-       dh_testroot
-#      dh_installdebconf
-       dh_installdocs
-       dh_installexamples
-       dh_installmenu
-#      dh_installlogrotate
-#      dh_installemacsen
-#      dh_installpam
-#      dh_installmime
-#      dh_installinit
-       dh_installcron
-       dh_installman
-       dh_installinfo
-#      dh_undocumented
-       dh_installchangelogs
-       dh_link
-       dh_strip
-       dh_compress
-       dh_fixperms
-#      dh_makeshlibs
-       dh_installdeb
-       dh_perl
-       dh_shlibdeps
-       dh_gencontrol -u -isp
-       dh_md5sums
-       dh_builddeb
-
-.PHONY: build install clean binary-indep binary-arch binary
+%:      
+       dh $@

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtime-period-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to