debian/0000755000000000000000000000000012261704121007162 5ustar debian/rules0000755000000000000000000000003612261702323010243 0ustar #!/usr/bin/make -f %: dh $@ debian/changelog0000644000000000000000000000320612261704121011035 0ustar libclone-pp-perl (1.02-2) unstable; urgency=low [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Axel Beckert ] * Switch to source format "3.0 (quilt)" * Override lintian warning using-first-person-in-description (false positive in example Perl code: "my $variable") * Fix lintian warning copyright-refers-to-symlink-license * Bump debhelper compatibility to 9 + Update versioned debhelper build-dependency accordingly * Revamp debian/rules + Fix lintian warning debian-rules-missing-recommended-target + Replace "dh_clean -k" with "dh_prep" + Use dh_auto_{configure,build,test,install,clean} + Remove obsolete /usr/lib/perl5 handling + Drop obsolete dh_clean stamp file parameters + Remove obsolete variable usage and targets + Finally switch to a minimal dh-style debian/rules file * No more install redundant README (generated from POD) * Bump Standards-Version to 3.9.5 (no further changes) * Mention "pure perl" and libclone-perl in long description. * Add myself as Uploader. -- Axel Beckert Sat, 04 Jan 2014 04:53:51 +0100 libclone-pp-perl (1.02-1) unstable; urgency=low * Initial Release (closes: #472939). -- Krzysztof Krzyżaniak (eloy) Wed, 23 May 2007 16:08:05 +0200 debian/control0000644000000000000000000000302012261703732010567 0ustar Source: libclone-pp-perl Maintainer: Debian Perl Group Uploaders: Krzysztof Krzyżaniak (eloy) , Axel Beckert Section: perl Priority: optional Build-Depends: debhelper (>= 9~) Build-Depends-Indep: perl Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libclone-pp-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libclone-pp-perl.git Homepage: https://metacpan.org/release/Clone-PP Package: libclone-pp-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends} Description: Recursively copy Perl datatypes Clone::PP provides a general-purpose clone function to make deep copies of Perl data structures. It calls itself recursively to copy nested hash, array, scalar and reference types, including tied variables and objects. . The clone() function takes a scalar argument to copy. To duplicate arrays or hashes, pass them in by reference: . my $copy = clone(\@array); my @copy = @{ clone(\@array) }; my $copy = clone(\%hash); my %copy = %{ clone(\%hash) }; . The clone() function also accepts an optional second parameter that can be used to limit the depth of the copy. If you pass a limit of 0, clone will return the same value you supplied; for a limit of 1, a shallow copy is constructed; for a limit of 2, two layers of copying are done, and so on. . This is a pure-perl implementation. For a faster XS-/C-based implementation see the libclone-perl package. debian/compat0000644000000000000000000000000212261701057010365 0ustar 9 debian/watch0000644000000000000000000000013312261677257010233 0ustar version=3 https://metacpan.org/release/Clone-PP .*/Clone-PP-v?(\d.+)\.(?:tar\.gz|tar|tgz)$ debian/source/0000755000000000000000000000000012261677525010503 5ustar debian/source/format0000644000000000000000000000001412261677525011711 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000230512261701057011122 0ustar This is the debian package for the Clone::PP module. It was created by Krzysztof Krzyzaniak (eloy) using dh-make-perl. It was downloaded from http://www.cpan.org/ Developed by Matthew Simon Cavalletto at Evolution Softworks. More free Perl software is available at www.evoscript.org. Copyright 2003 Matthew Simon Cavalletto. You may contact the author directly at evo@cpan.org or simonm@cavalletto.org. Code initially derived from Ref.pm. Portions Copyright 1994 David Muir Sharnoff. Interface based by Clone by Ray Finch with contributions from chocolateboy. Portions Copyright 2001 Ray Finch. Portions Copyright 2001 chocolateboy. This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. Perl is distributed under licenses: 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 systems, the complete text of the GNU General Public License version 1 can be found in /usr/share/common-licenses/GPL-1' and the Artistic Licence in /usr/share/common-licenses/Artistic'. debian/lintian-overrides0000644000000000000000000000026412261700151012544 0ustar # False positive in example Perl code: "my $variable" libclone-pp-perl: using-first-person-in-description line 7: my libclone-pp-perl: using-first-person-in-description line 8: my