--- libscalar-properties-perl-0.13.orig/debian/control +++ libscalar-properties-perl-0.13/debian/control @@ -0,0 +1,32 @@ +Source: libscalar-properties-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl, libtest-perl-critic-perl +Maintainer: Miguelangel Jose Freitas Loreto +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Scalar-Properties/ + +Package: libscalar-properties-perl +Architecture: all +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. --- libscalar-properties-perl-0.13.orig/debian/rules +++ libscalar-properties-perl-0.13/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +export TEST_AUTHOR=1 + +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 --- libscalar-properties-perl-0.13.orig/debian/watch +++ libscalar-properties-perl-0.13/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Scalar-Properties/ .*/Scalar-Properties-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libscalar-properties-perl-0.13.orig/debian/changelog +++ libscalar-properties-perl-0.13/debian/changelog @@ -0,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 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 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 Sun, 13 Jan 2008 14:04:27 +0100 + +libscalar-properties-perl (0.12-1) unstable; urgency=low + + * Initial Release. + + -- Timo Schneider Fri, 21 Apr 2006 01:18:03 +0200 + --- libscalar-properties-perl-0.13.orig/debian/compat +++ libscalar-properties-perl-0.13/debian/compat @@ -0,0 +1 @@ +7 --- libscalar-properties-perl-0.13.orig/debian/copyright +++ libscalar-properties-perl-0.13/debian/copyright @@ -0,0 +1,47 @@ +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 + +It was downloaded from: + + + +Upstream Author: + + Marcel Grünauer, + James A. Duncan + Some contributions from David Cantrell, + +Copyright: + + Copyright 2001-2007 by Marcel Grünauer + Copyright 2001 James A. Duncan. + Some parts Copyright 2003 - 2008 David Cantrell. + +Files: + + 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 . + inc/UNIVERSAL/require.pm is Copyright 2001, 2005 by Michael G Schwern . + +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 and +is licensed under the GPL, see above. --- libscalar-properties-perl-0.13.orig/debian/libscalar-properties-perl.docs +++ libscalar-properties-perl-0.13/debian/libscalar-properties-perl.docs @@ -0,0 +1,2 @@ +TODO +README