debian/0000755000000000000000000000000012233305503007162 5ustar debian/rules0000755000000000000000000000003712233305503010242 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000206112233305503010564 0ustar Source: libtext-vcard-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: gregor herrmann Build-Depends: debhelper (>= 8) Build-Depends-Indep: libfile-slurp-perl, libtext-vfile-asdata-perl, perl Homepage: https://metacpan.org/release/Text-vCard Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtext-vcard-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libtext-vcard-perl.git Package: libtext-vcard-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libfile-slurp-perl, libtext-vfile-asdata-perl Description: module to parse, edit and create multiple vCards Text::vCard::Addressbook provides an API to reading / editing and creating multiple vCards. A vCard is an electronic business card. This package has been developed based on rfc2426. . Many applications (Apple Address book, MS Outlook, Evolution etc) can export and import vCards. debian/source/0000755000000000000000000000000012233305503010462 5ustar debian/source/format0000644000000000000000000000001412233305503011670 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000514012233305503011034 0ustar libtext-vcard-perl (2.13-2) unstable; urgency=low * Take over for the Debian Perl Group on maintainer's request (https://lists.debian.org/debian-perl/2013/10/msg00018.html) * debian/control: - Add Vcs-Git field (source stanza); Vcs-Browser field (source stanza) - Change Homepage field changed to metacpan.org URL; - Maintainer set to Debian Perl Group (was: Neil Williams ) - Replace (build-)dependency on ancient version of perl with a dependency on perl without a version (as permitted by Debian Policy 3.8.3) - Split build dependencies into Build-Depends and Build-Depends-Indep - Make short description a noun phrase - Drop some build dependencies which are not needed - Add /me to Uploaders * debian/watch: use metacpan-based URL. * Switch to debhelper. Use dh(1) and bump debhelper compatibility level to 8. * debian/copyright: switch formatting to Copyright-Format 1.0. * Add a patch to fix some spelling mistakes in the POD. -- gregor herrmann Sun, 27 Oct 2013 22:50:23 +0100 libtext-vcard-perl (2.13-1) unstable; urgency=low * New upstream release * Update Standards Version (no changes) -- Neil Williams Sun, 26 May 2013 14:34:56 +0100 libtext-vcard-perl (2.10-1) unstable; urgency=low * New upstream release -- Neil Williams Mon, 14 Feb 2011 19:39:47 +0000 libtext-vcard-perl (2.03-1) unstable; urgency=low * New upstream release * FTBFS with Perl 5.10 (test failures) (Closes: #467285) -- Neil Williams Mon, 17 Mar 2008 22:37:24 +0000 libtext-vcard-perl (2.01-1) unstable; urgency=low * New upstream release * Update standards version (no changes) -- Neil Williams Sun, 03 Feb 2008 18:35:24 +0000 libtext-vcard-perl (2.00-4) unstable; urgency=low * should Depend: on libfile-slurp-perl (Closes: #415957) -- Neil Williams Fri, 23 Mar 2007 12:12:55 +0000 libtext-vcard-perl (2.00-3) unstable; urgency=low * Change to Architecture: all -- Neil Williams Thu, 22 Mar 2007 19:03:21 +0000 libtext-vcard-perl (2.00-2) unstable; urgency=low * Fix missing dependency. -- Neil Williams Sat, 10 Feb 2007 19:59:36 +0000 libtext-vcard-perl (2.00-1) unstable; urgency=low * Initial release. (Closes: #405590: ITP: libtext-vcard-perl -- parse, edit and create multiple vCards - Debian Bug report logs) -- Neil Williams Thu, 4 Jan 2007 19:44:02 +0000 debian/compat0000644000000000000000000000000212233305503010360 0ustar 8 debian/patches/0000755000000000000000000000000012233305503010611 5ustar debian/patches/spelling.patch0000644000000000000000000000414312233305503013451 0ustar Description: fix some spelling mistakes Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=89799 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=89799 Author: gregor herrmann Last-Update: 2013-10-27 --- a/lib/Text/vCard.pm +++ b/lib/Text/vCard.pm @@ -195,7 +195,7 @@ } ); - # get all phone number that matches serveral types + # get all phone number that matches several types my @types = qw(work home); my $nodes = $vcard->get( { 'node_type' => 'tel', @@ -210,7 +210,7 @@ Supplied with a scalar or an array ref the methods return a list of nodes of a type, where relevant. If any -of the elements is the prefered element it will be +of the elements is the preferred element it will be returned as the first element of the list. =cut @@ -236,7 +236,7 @@ If multiple elements match, then only the first is returned. If the object isn't found, or doesn't have a simple value, then undef is returned. -The argument type may be ommitted, it can be a scalar, or it can be an +The argument type may be omitted, it can be a scalar, or it can be an array reference if multiple types are selected. =cut @@ -343,7 +343,7 @@ } This method takes one or two arguments. The group name -(accessable on any node object by using $node->group() - not +(accessible on any node object by using $node->group() - not all nodes will have a group, indeed most vcards do not seem to use it) and optionally the types of node you with to have returned. @@ -480,7 +480,7 @@ return undef unless scalar(@to_return); - # Make prefered value first + # Make preferred value first @to_return = sort { _sort_prefs($b) <=> _sort_prefs($a) } @to_return; return wantarray ? @to_return : \@to_return; --- a/lib/Text/vCard/Node.pm +++ b/lib/Text/vCard/Node.pm @@ -259,7 +259,7 @@ } This method is the same as is_type (which can take a value of 'pref') -but it specific to if it is the prefered node. This method is used +but it specific to if it is the preferred node. This method is used to sort when returning lists of nodes. =cut debian/patches/series0000644000000000000000000000001712233305503012024 0ustar spelling.patch debian/copyright0000644000000000000000000000206412233305503011117 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Text-vCard Upstream-Contact: Leo Lapworth Source: https://metacpan.org/release/Text-vCard Files: * Copyright: 2003-2012, Leo Lapworth License: Artistic or GPL-1+ Files: debian/* Copyright: 2007, 2008, 2011, 2013, Neil Williams 2013, 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/watch0000644000000000000000000000016212233305503010212 0ustar version=3 https://metacpan.org/release/Text-vCard .*/Text-vCard-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$