[libdata-compare-perl] 04/13: Import Debian changes 1.21-1
dom at earth.li
dom at earth.li
Sat Sep 2 12:30:18 UTC 2017
This is an automated email from the git hooks/post-receive script.
dom pushed a commit to branch master
in repository libdata-compare-perl.
commit 69806c2ab441ad1e855bbe431540929566652986
Merge: 358ef98 320fa32
Author: Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>
Date: Sun Jan 18 10:03:00 2009 -0330
Import Debian changes 1.21-1
libdata-compare-perl (1.21-1) unstable; urgency=low
* New maintainer. (Closes: #507394).
* New upstream release.
* debian/compat:
- update to level 7.
* debian/copyright:
- changed information.
* debian/control:
- add libjson-perl, libtest-pod-perl and libclone-perl in
Build-Depends-Indep to perform more tests.
- Standards-Version: 3.8.0
- add Homepage.
CHANGES | 64 +++++++++----
MANIFEST | 11 +++
META.yml | 12 +++
Makefile.PL | 5 +-
NOTES | 2 +
debian/changelog | 16 ++++
debian/compat | 2 +-
debian/control | 11 ++-
debian/copyright | 50 ++++++----
debian/libdata-compare-perl.docs | 2 +
debian/rules | 58 +++---------
debian/watch | 2 +-
lib/Data/Compare.pm | 105 ++++++++++++++-------
lib/Data/Compare/Plugins/Scalar/Properties.pm | 2 +-
t/deep-objects.t | 28 ++++++
t/deep-recursion.t | 2 +-
t/duplicates.t | 16 ++++
t/noimport-register_plugins.t | 13 +++
t/noimport.t | 11 +++
t/pod.t | 9 ++
t/{taint.t => realtainttest} | 3 -
t/saritha-nalagandla-bug.t | 34 +++++++
.../test082_updateevent_multipleinvitees.exp | 51 ++++++++++
.../test082_updateevent_multipleinvitees.out | 51 ++++++++++
t/taint.t | 39 +++++---
25 files changed, 459 insertions(+), 140 deletions(-)
diff --cc debian/changelog
index 9cf44ca,0000000..3635011
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,34 -1,0 +1,50 @@@
++libdata-compare-perl (1.21-1) unstable; urgency=low
++
++ * New maintainer. (Closes: #507394).
++ * New upstream release.
++ * debian/compat:
++ - update to level 7.
++ * debian/copyright:
++ - changed information.
++ * debian/control:
++ - add libjson-perl, libtest-pod-perl and libclone-perl in
++ Build-Depends-Indep to perform more tests.
++ - Standards-Version: 3.8.0
++ - add Homepage.
++
++ -- Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com> Sun, 18 Jan 2009 09:03:00 -0430
++
+libdata-compare-perl (0.13-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix FTBFS with Perl 5.10. Closes: #467750
+
+ -- Mark Hymers <mhy at debian.org> Sat, 05 Apr 2008 21:08:56 +0100
+
+libdata-compare-perl (0.13-1) unstable; urgency=low
+
+ * New maintainer (Closes: #358801)
+ * New upstream release (Closes: #329527)
+ * Finished doc-transition
+ * Changed package description (Closes: #209910, #360703)
+ * Changed copyright information, added pointers to the licences
+ * Simplified debian/rules
+ * Upgraded to compat level 5
+ * Properly (build-)depend on libfile-find-rule-perl.
+
+ -- Timo Schneider <timo.schneider at s2004.tu-chemnitz.de> Mon, 17 Apr 2006 12:54:07 +0200
+
+libdata-compare-perl (0.02-2) unstable; urgency=low
+
+ * Fixed copyright information (closes: #157563).
+ * Changed maintainer address.
+ * Fixed rule file (closes: #157472).
+
+ -- Jean-Francois Dive <jef at debian.org> Thu, 22 Aug 2002 19:03:07 +1000
+
+libdata-compare-perl (0.02-1) unstable; urgency=low
+
+ * Initial Debianization.
+
+ -- Jean-Francois Dive <jef at linuxbe.org> Thu, 21 Feb 2002 16:20:52 +1100
+
diff --cc debian/compat
index 7ed6ff8,0000000..7f8f011
mode 100644,000000..100644
--- a/debian/compat
+++ b/debian/compat
@@@ -1,1 -1,0 +1,1 @@@
- 5
++7
diff --cc debian/control
index 1b047e5,0000000..b99d1ef
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,24 -1,0 +1,25 @@@
+Source: libdata-compare-perl
+Section: perl
+Priority: optional
- Build-Depends: debhelper (>= 5.0.32)
- Build-Depends-Indep: perl (>= 5.8.0-7), libscalar-properties-perl (>= 0.12-1), libfile-find-rule-perl (>= 0.10)
- Maintainer: Timo Schneider <timo.schneider at s2004.tu-chemnitz.de>
- Standards-Version: 3.7.2
++Build-Depends: debhelper (>= 7)
++Build-Depends-Indep: perl (>= 5.8.0-7), libscalar-properties-perl (>= 0.12), libfile-find-rule-perl (>= 0.10), libjson-perl (>= 2.0), libtest-pod-perl (>= 1.0), libclone-perl
++Maintainer: Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>
++Standards-Version: 3.8.0
++Homepage: http://search.cpan.org/dist/Data-Compare/
+
+Package: libdata-compare-perl
+Architecture: all
- Depends: ${perl:Depends}, libfile-find-rule-perl (>= 0.10)
++Depends: ${perl:Depends}, ${misc:Depends}, libfile-find-rule-perl (>= 0.10)
+Suggests: libscalar-properties-perl
+Description: perl module to compare perl data structures recursively
+ The Data::Compare module compares two perl data structures recursively,
+ it natively handles several built-in data types - scalars, references
+ to scalars, references to arrays, references to hashes, references
+ to subroutines, compiled regular expressions, and globs. For objects, it tries
+ to Do The Right Thing and compares the underlying data type.
+ .
+ However, this is not always what you want. This is especially true if you
+ have complex objects which overload stringification and/or numification.
+ So you can extend this module with your own plugins for special data
+ structures, by using Data::Compare::Plugins (this is not an extra package, it
+ is included here).
diff --cc debian/copyright
index b6facaa,0000000..90ce8d7
mode 100644,000000..100644
--- a/debian/copyright
+++ b/debian/copyright
@@@ -1,29 -1,0 +1,39 @@@
- This package have been initially packaged by Jean-Francois Dive <jef at debian.org>
- New maintainer since version 0.13-1 is Timo Schneider <timo.schneider at s2004.tu-chemnitz.de>
- Upstream source code is available from CPAN, Module Data::Compare.
- http://search.cpan.org/~dcantrell/Data-Compare/
++This package have been initially packaged by Jean-Francois Dive <jef at debian.org>,
++New maintainer since version 0.13-1 is Timo Schneider <timo.schneider at s2004.tu-chemnitz.de>,
++New maintainet since version 1.21-1 is Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>
+
- Upstream author:
++It was downloaded from:
+
- Fabien Tassin <fta at sofaraway.org>
++ <http://search.cpan.org/~dcantrell/Data-Compare/>
+
- Copyright (c) 1999-2001 Fabien Tassin. All rights reserved.
- This program is free software; you can redistribute it and/or
- modify it under the same terms as Perl itself.
++Upstream Author:
+
- Portions, including plugins, copyright 2003-2004 David Cantrell
- <david at cantrell.org.uk>. This program is free software; you can
- redistribute it and/or modify it under the same terms as Perl itself:
++ Fabien Tassin <fta at sofaraway.org>
++ Portions by David Cantrell <david at cantrell.org.uk>
+
- Perl is licensed under the terms of either:
++Copyright:
+
- a) the GNU General Public License as published by the Free Software
- Foundation; either version 1, or (at your option) any later
- version, or
++ Copyright (C) 1999-2001 Fabien Tassin. All rights reserved.
++ Some parts Copyright (C) 2003 - 2008 David Cantrell.
+
- b) the "Artistic License" which comes with Perl.
++License:
+
- On Debian GNU/Linux systems, the complete text of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL' and
- the Artistic Licence in `/usr/share/common-licenses/Artistic'.
++ This program is free software; you can redistribute it and/or modify
++ it under the same terms as Perl itself.
++
++ Perl is licensed under the terms of either:
++
++ a) the GNU General Public License as published by the Free Software
++ Foundation; either version 1, or (at your option) any later
++ version, or
++
++ b) the "Artistic License" which comes with Perl.
++
++ On Debian GNU/Linux systems, the complete text of the GNU General
++ Public License can be found in `/usr/share/common-licenses/GPL' and
++ the Artistic Licence in `/usr/share/common-licenses/Artistic'.
++
++The Debian packaging is Copyright (C) 2008,
++Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com> and
++is licensed under the GPL, see above.
+
diff --cc debian/libdata-compare-perl.docs
index 0000000,0000000..2bb19c3
new file mode 100644
--- /dev/null
+++ b/debian/libdata-compare-perl.docs
@@@ -1,0 -1,0 +1,2 @@@
++TODO
++README
diff --cc debian/rules
index 2bbefb1,0000000..0d045f4
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,55 -1,0 +1,23 @@@
+#!/usr/bin/make -f
+
- export PERL_MM_USE_DEFAULT=1
-
- PACKAGE=$(shell dh_listpackages)
-
- ifndef PERL
- PERL = /usr/bin/perl
- endif
-
- TMP =$(CURDIR)/debian/$(PACKAGE)
-
+build: build-stamp
+build-stamp:
- dh_testdir
- $(PERL) Makefile.PL INSTALLDIRS=vendor
- touch build-stamp
++ dh build
++ touch $@
+
+clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp install-stamp
- [ ! -f Makefile ] || $(MAKE) realclean
- dh_clean
-
- install: build install-stamp
- install-stamp:
- dh_testdir
- dh_testroot
- dh_clean -k
- $(MAKE) test
- $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
- [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
- touch install-stamp
++ dh $@
+
- binary-indep: build install
- dh_testdir
- dh_testroot
- dh_installdocs TODO
- dh_installchangelogs CHANGES
- dh_perl
- dh_compress
- dh_fixperms
- dh_installdeb
- dh_gencontrol
- dh_md5sums
- dh_builddeb
++install: install-stamp
++install-stamp: build-stamp
++ dh install
++ touch $@
+
- source diff:
- @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
- binary: binary-indep
+binary-arch:
+
- .PHONY: build clean binary-indep binary
++binary-indep: install
++ dh $@
++
++binary: binary-arch binary-indep
++
++.PHONY: binary binary-arch binary-indep install clean build
diff --cc debian/watch
index 8c85a41,0000000..19dd5bb
mode 100644,000000..100644
--- a/debian/watch
+++ b/debian/watch
@@@ -1,2 -1,0 +1,2 @@@
+version=3
- http://www.cpan.org/modules/by-module/Data/Data-Compare-(.*).(tar.gz|tar|tgz)
++http://search.cpan.org/dist/Data-Compare/ .*/Data-Compare-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdata-compare-perl.git
More information about the Pkg-perl-cvs-commits
mailing list