debian/0000755000000000000000000000000011640034613007164 5ustar debian/copyright0000644000000000000000000000213311640034613011116 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Michael G Schwern Source: http://search.cpan.org/dist/Object-ID/ Name: Object-ID Files: * Copyright: 2010-2011, Michael G Schwern License: Artistic or GPL-1+ Files: debian/* Copyright: 2010, Ivan Kohler 2010, gregor herrmann License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1' debian/watch0000644000000000000000000000015711640034613010220 0ustar version=3 http://search.cpan.org/dist/Object-ID/ .*/Object-ID-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/control0000644000000000000000000000235511640034613010574 0ustar Source: libobject-id-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl Build-Depends-Indep: libhash-fieldhash-perl, libsub-name-perl, libossp-uuid-perl, libnamespace-autoclean-perl, perl (>= 5.10.1) | libtest-simple-perl (>= 0.88) Maintainer: Debian Perl Group Uploaders: Ivan Kohler , gregor herrmann Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Object-ID/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libobject-id-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libobject-id-perl.git Package: libobject-id-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libhash-fieldhash-perl, libsub-name-perl Recommends: libossp-uuid-perl Description: unique identifier for any object Object::ID is a unique identifier for any object, regardless of its type, structure or contents. Its features are: . * Works on ANY object of any type * Does not modify the object in any way * Does not change with the object's contents * Is O(1) to calculate (ie. doesn't matter how big the object is) * The id is unique for the life of the process * The id is always a true value debian/changelog0000644000000000000000000000367111640034613011045 0ustar libobject-id-perl (0.1.2-1) unstable; urgency=low * Team upload. [ gregor herrmann ] * Remove alternative (build) dependencies that are already satisfied in oldstable. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * Imported Upstream version 0.1.2 * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. * Refresh copyright years for upstream files * Refresh License stanzas in copyright file. Only refer to Debian systems in general instead of Debian GNU/Linux systems. Refer to GPL-1 license text in common-licenses. * Don't install README file to docs. The README files contains only a text form of the manpage. * Change (Build-)Depends(-Indep) on libsub-name-perl. Make versioned (Build-)Depends(-Indep) on libsub-name-perl unversioned as version 0.03 is already satisfied in oldstable. * Change (Build-)Depends(-Indep) on libhas-fieldhash-perl. Drop versioned dependency as version 0.10 is already present in squeeze. * Bump Debhelper compat level to 8. Use Build.PL by default. * Bump versioned Build-Depends on debhelper (>= 8) * Add perl to Build-Depends * Bump Standards-Version to 3.9.2. -- Salvatore Bonaccorso Mon, 26 Sep 2011 10:25:27 +0200 libobject-id-perl (0.1.1-1) unstable; urgency=low * New upstream release. * Convert to source format 3.0 (quilt). * Slightly improve short and long description. * Add /me to Uploaders. * Add libossp-uuid-perl to B-D-I and Recommends, and libnamespace-autoclean-perl to B-D-I. * Add a patch that changes the format of the required version of Data::UUID in Build.PL. -- gregor herrmann Sat, 19 Jun 2010 00:50:29 +0200 libobject-id-perl (0.1.0-1) unstable; urgency=low * Initial Release (closes: Bug#582346). -- Ivan Kohler Wed, 19 May 2010 22:02:20 -0700 debian/rules0000755000000000000000000000003611640034613010243 0ustar #!/usr/bin/make -f %: dh $@ debian/source/0000755000000000000000000000000011640034613010464 5ustar debian/source/format0000644000000000000000000000001411640034613011672 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211640034613010362 0ustar 8 debian/patches/0000755000000000000000000000000011640034613010613 5ustar debian/patches/series0000644000000000000000000000004111640034613012023 0ustar build_pl_data_uuid_version.patch debian/patches/build_pl_data_uuid_version.patch0000644000000000000000000000074611640034613017221 0ustar Author: gregor herrmann Origin: vendor Forwarded: no Last-Update: 2010-06-19 Description: Build.PL looks for Data::UUID >= 1.148, Data::UUID presents its $VERSION as 1.0602 --- a/Build.PL +++ b/Build.PL @@ -46,7 +46,7 @@ object_uuid => { description => "Unique object idenifier using UUIDs", requires => { - "Data::UUID" => 1.148 + "Data::UUID" => '1.010408' } } },