[libscalar-properties-perl] 04/15: Import Debian changes 0.13-1

dom at earth.li dom at earth.li
Sat Sep 2 15:08:39 UTC 2017


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

dom pushed a commit to branch master
in repository libscalar-properties-perl.

commit dcc66c16622cbcb2b564d1b27f2b517a52080609
Merge: 95b5741 3c7ecb6
Author: Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>
Date:   Sun Jan 18 10:06:28 2009 -0330

    Import Debian changes 0.13-1
    
    libscalar-properties-perl (0.13-1) unstable; urgency=low
    
      * New maintainer. (Closes: #507395)
      * New upstream release.
      * debian/control:
        - Standards-Version: 3.8.0.
        - changed debhelper (>= 7).
        - add libtest-pod-perl, libtest-perl-critic-perl to perform more tests.
        - add Homepage.
      * debian/compat:
        - upgrade to level 7.
      * debian/copyright:
        - changed information.

 Changes                                   |  40 +-
 MANIFEST                                  |  21 +-
 META.yml                                  |  21 +
 Makefile.PL                               |  22 +-
 README                                    | 220 +---------
 debian/changelog                          |  16 +
 debian/compat                             |   2 +-
 debian/control                            |  11 +-
 debian/copyright                          |  58 ++-
 debian/libscalar-properties-perl.docs     |   2 +
 debian/rules                              |  62 +--
 debian/watch                              |   2 +-
 inc/Module/Install.pm                     | 281 +++++++++++++
 inc/Module/Install/Base.pm                |  70 ++++
 inc/Module/Install/Can.pm                 |  82 ++++
 inc/Module/Install/Fetch.pm               |  93 +++++
 inc/Module/Install/Include.pm             |  34 ++
 inc/Module/Install/Makefile.pm            | 237 +++++++++++
 inc/Module/Install/Metadata.pm            | 336 +++++++++++++++
 inc/Module/Install/StandardTests.pm       | 139 +++++++
 inc/Module/Install/Win32.pm               |  65 +++
 inc/Module/Install/WriteAll.pm            |  43 ++
 inc/Test/Compile.pm                       | 117 ++++++
 inc/Test/More.pm                          | 666 ++++++++++++++++++++++++++++++
 inc/UNIVERSAL/require.pm                  |  95 +++++
 Properties.pm => lib/Scalar/Properties.pm |  46 ++-
 test.pl => t/01_all.t                     |   0
 t/perlcriticrc                            |   6 +
 28 files changed, 2461 insertions(+), 326 deletions(-)

diff --cc debian/changelog
index 6cded05,0000000..800f1d8
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,22 -1,0 +1,38 @@@
++libscalar-properties-perl (0.13-1) unstable; urgency=low
++
++  * New maintainer. (Closes: #507395)
++  * New upstream release.
++  * debian/control:
++    - Standards-Version: 3.8.0.
++    - changed debhelper (>= 7).
++    - add libtest-pod-perl, libtest-perl-critic-perl to perform more tests.
++    - add Homepage.
++  * debian/compat:
++    - upgrade to level 7.
++  * debian/copyright:
++    - changed information.
++
++ -- Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>  Sun, 18 Jan 2009 09:06:28 -0430
++
 +libscalar-properties-perl (0.12-1.3) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * debian/rules: Don't FTBFS when perl is smart enough not to create
 +    empty dirs. (Closes: #467955)
 +
 + -- Marc 'HE' Brockschmidt <he at debian.org>  Sat, 05 Apr 2008 19:02:19 +0200
 +
 +libscalar-properties-perl (0.12-1.1) unstable; urgency=low
 +
 +  * Non-maintainer upload to fix RC bug.
 +  * Fix typo in debian/rules that makes the package does not contain the same
 +    when is built twice. Fix provided by Mike O'Connor. (Closes: #441715)
 +
 + -- Ana Beatriz Guerrero Lopez <ana at debian.org>  Sun, 13 Jan 2008 14:04:27 +0100
 +
 +libscalar-properties-perl (0.12-1) unstable; urgency=low
 +
 +  * Initial Release.
 +
 + -- Timo Schneider <timo.schneider at s2004.tu-chemnitz.de>  Fri, 21 Apr 2006 01:18:03 +0200
 +
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 ae8fdc7,0000000..5bea6cd
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,31 -1,0 +1,32 @@@
 +Source: libscalar-properties-perl
 +Section: perl
 +Priority: optional
- Build-Depends: debhelper (>= 5.0.32)
- Build-Depends-Indep: perl (>= 5.8.0-7)
- 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), libtest-pod-perl, libtest-perl-critic-perl
++Maintainer: Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com>
++Standards-Version: 3.8.0
++Homepage: http://search.cpan.org/dist/Scalar-Properties/
 +
 +Package: libscalar-properties-perl
 +Architecture: all
- Depends: ${perl:Depends}
++Depends: ${perl:Depends}, ${misc:Depends}
 +Enhances: libdata-compare-perl
 +Description: perl module to add run-time properties on scalar variables
 + Scalar::Properties attempts to make Perl more object-oriented by
 + taking an idea from Ruby: Everything you manipulate is an object,
 + and the results of those manipulations are objects themselves.
 + .
 + 'hello world'->length
 + (-1234)->abs
 + "oh my god, it's full of properties"->index('g')
 + .
 + The first example asks a string to calculate its length. The second
 + example asks a number to calculate its absolute value. And the
 + third example asks a string to find the index of the letter 'g'.
 + .
 + Using this module you can have run-time properties on initialized
 + scalar variables and literal values. The word 'properties' is used
 + in the Perl 6 sense: out-of-band data, little sticky notes that
 + are attached to the value. While attributes (as in Perl 5's attribute
 + pragma, and see the Attribute::* family of modules) are handled
 + at compile-time, properties are handled at run-time.
diff --cc debian/copyright
index 4de04ef,0000000..9a86811
mode 100644,000000..100644
--- a/debian/copyright
+++ b/debian/copyright
@@@ -1,27 -1,0 +1,47 @@@
- Debianized by Timo Schneider from CPAN on 04/20/06. Upstream source code
- is available from CPAN, Module Scalar::Properties.
- http://search.cpan.org/~dcantrell/Scalar-Properties/
++This package was debianized by Timo Schneider from CPAN on 04/20/06,
++New maintainet since version 0.13-1 is Miguelangel Jose Freitas Loreto <miguelangel.freitas at gmail.com> 
 +
- The upstream authors are: 
++It was downloaded from:
 +
- James A. Duncan <jduncan at fotango.com>
- Marcel Grunauer, <marcel at codewerk.com>
- Some contributions from David Cantrell, <david at cantrell.org.uk>.
++    <http://search.cpan.org/~marcel/Scalar-Properties/>
 +
- Copyright 2001 Marcel Grunauer, James A. Duncan.
- Portions copyright 2003 David Cantrell. All rights reserved.
++Upstream Author:
 +
- This library is free software; you can redistribute it and/or modify
- it under the same terms as Perl itself.
++    Marcel Grünauer, <marcel at cpan.org>
++    James A. Duncan <jduncan at fotango.com>
++    Some contributions from 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 2001-2007 by Marcel Grünauer
++    Copyright 2001 James A. Duncan.
++    Some parts Copyright 2003 - 2008 David Cantrell.
 +
- b) the "Artistic License" which comes with Perl.
++Files:
 +
- 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'.
++    inc/Module/Install* is Copyright 2002 - 2009 by Brian Ingerson, Audrey Tang and Adam Kennedy.
++    inc/Module/Install/StandardTests.pm is Copyright 2007 by Marcel Grünauer.
++    inc/Test/Compile.pm is Copyright 2007-2008 by Marcel Grünauer.
++    inc/Test/More.pm is Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.
++    inc/UNIVERSAL/require.pm is Copyright 2001, 2005 by Michael G Schwern <schwern at pobox.com>.
++
++License:
++
++    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/libscalar-properties-perl.docs
index 0000000,0000000..2bb19c3
new file mode 100644
--- /dev/null
+++ b/debian/libscalar-properties-perl.docs
@@@ -1,0 -1,0 +1,2 @@@
++TODO
++README
diff --cc debian/rules
index 727370f,0000000..a3d7e18
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,55 -1,0 +1,25 @@@
 +#!/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)
++export TEST_AUTHOR=1
 +
 +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 --verbose $(TMP)/usr/lib/perl5
- 	touch install-stamp
- 
- binary-indep: build install
- 	dh_testdir
- 	dh_testroot
- 	dh_installdocs README TODO
- 	dh_installchangelogs
- 	dh_perl
- 	dh_compress
- 	dh_fixperms
- 	dh_installdeb
- 	dh_gencontrol
- 	dh_md5sums
- 	dh_builddeb
- 
- source diff:                                                                  
- 	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
- 
- binary: binary-indep
++	dh $@
++
++install: install-stamp
++install-stamp: build-stamp
++	dh install
++	touch $@
++
 +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 ff338a4,0000000..6c5f7f0
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/Scalar/Scalar-Properties-(.*).(tar.gz|tar|tgz)
++http://search.cpan.org/dist/Scalar-Properties/   .*/Scalar-Properties-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/libscalar-properties-perl.git



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