debian/0000755000000000000000000000000012236755610007175 5ustar debian/compat0000644000000000000000000000000212236755610010373 0ustar 8 debian/copyright0000644000000000000000000000224512236755610011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Linux-LVM Upstream-Contact: Ray Morris Source: https://metacpan.org/release/Linux-LVM/ Files: * Copyright: 2008, Chad Kerner 2011-2012, Ray Morris License: Artistic or GPL-1+ Files: debian/* Copyright: 2007, Jeremiah C. Foster 2008, David Bremner 2008, Gunnar Wolf 2008-2012, 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/rules0000755000000000000000000000035312236755610010256 0ustar #!/usr/bin/make -f EXAMPLES=$(CURDIR)/debian/liblinux-lvm-perl/usr/share/doc/liblinux-lvm-perl/examples/ %: dh $@ override_dh_installexamples: dh_installexamples find $(EXAMPLES) -type f -name "*.pl" -print0 | xargs -r0 chmod -x debian/liblinux-lvm-perl.examples0000644000000000000000000000001312236755610014311 0ustar examples/* debian/watch0000644000000000000000000000023612236755610010227 0ustar # format version number, currently 3; this line is compulsory! version=3 https://metacpan.org/release/Linux-LVM/ .*/Linux-LVM-([\.\d]+)\.(?:tar\.gz|tar|tgz)$ debian/control0000644000000000000000000000150512236755610010601 0ustar Source: liblinux-lvm-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: Jeremiah C. Foster , David Bremner , gregor herrmann Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/liblinux-lvm-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/liblinux-lvm-perl.git Homepage: https://metacpan.org/release/Linux-LVM/ Package: liblinux-lvm-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Recommends: lvm2 Description: Perl module to access LVM status information Linux::LVM parses the output from vgdisplay, pvdisplay, and lvdisplay and makes it available as a Perl hash. debian/source/0000755000000000000000000000000012236755610010475 5ustar debian/source/format0000644000000000000000000000001412236755610011703 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012236755610010624 5ustar debian/patches/series0000644000000000000000000000001212236755610012032 0ustar zero-size debian/patches/zero-size0000644000000000000000000000157612236755610012507 0ustar Description: vgdisplay prints no units with 0 size allocations Origin: https://lists.uni-koeln.de/pipermail/linux-fai/2009-September/007285.html Bug-Debian: http://bugs.debian.org/551083 Forwarded: no Author: Mathieu Alorent Reviewed-by: gregor herrmann Last-Update: 2012-02-11 --- a/LVM.pm +++ b/LVM.pm @@ -270,10 +270,10 @@ next VGINF; } # Parse the number of allocated physical extents from the volume group. - elsif( m/Alloc PE \/ Size\s+(\S+) \/ (\S+) (\S+)/ ) { + elsif( m/Alloc PE \/ Size\s+(\S+) \/ (\S+)(?:\s+(\S+))?/ ) { $vghash{$vgn}->{alloc_pe} = $1; $vghash{$vgn}->{alloc_pe_size} = $2; - $vghash{$vgn}->{alloc_pe_size_unit} = $3; + $vghash{$vgn}->{alloc_pe_size_unit} = $3 || "B"; next VGINF; } # Parse the volume group name. debian/changelog0000644000000000000000000000672012236755610011054 0ustar liblinux-lvm-perl (0.17-1) unstable; urgency=low * Team upload. * Imported Upstream version 0.17 * Drop vgdisplay-output.patch patch * Bump Standards-Version to 3.9.5 -- Salvatore Bonaccorso Thu, 07 Nov 2013 19:26:41 +0100 liblinux-lvm-perl (0.16-2) unstable; urgency=low * Team upload [ 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 ] * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ Damyan Ivanov ] * apply patch from Thomas Lange adapting to vgdisplay output change with Linux 3.x. Closes: #717684. * Standards-Version: 3.9.4 (no changes needed) -- Damyan Ivanov Wed, 16 Oct 2013 07:29:46 +0300 liblinux-lvm-perl (0.16-1) unstable; urgency=low * New upstream release. * Refresh patch zero-size. * Update years of upstream and packaging copyright. -- gregor herrmann Sat, 11 Feb 2012 19:53:03 +0100 liblinux-lvm-perl (0.15.01-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * New upstream release. * Switch to "3.0 (quilt)" source format; remove quilt framework. * Remove patch binaries_in_sbin (fixed upstream), refresh patch zero- size (offset). * debian/copyright: update Maintainer and upstream copyright; update formatting. * Switch to debhelper compatibility level 8. * Bump Standards-Version to 3.9.2; remove version from perl build dependency. -- gregor herrmann Thu, 22 Dec 2011 18:37:50 +0100 liblinux-lvm-perl (0.14-2) unstable; urgency=low * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. * debian/control: fix Homepage field. * New patch zero-size: handle missing units in vgdisplay output; thanks to Michael Tautschnig for the bug report (closes: #551083). * Don't install README anymore. * Add /me to Uploaders. * Set Standards-Version to 3.8.3 (no changes). * Switch to debhelper 7. * Switch to new format for debian/copyright. -- gregor herrmann Thu, 15 Oct 2009 21:58:19 +0200 liblinux-lvm-perl (0.14-1) unstable; urgency=low [ Jeremiah C. Foster ] * New upstream release (Closes: #488205) [ David Bremner ] * Remove obsolete patch for whitespace in command output (fixed upstream) * Patch /usr/sbin paths to /sbin * Add myself to uploaders * Add lvm2 to Recommends * Fix broken long/short description [ gregor herrmann ] * Set Standards-Version to 3.8.0. * Add debian/README.source to document quilt usage, as required by Debian Policy since 3.8.0. * debian/copyright: update year of copyright. -- David Bremner Thu, 28 Aug 2008 14:54:50 +0000 liblinux-lvm-perl (0.13-2) unstable; urgency=low * Added myself as an uploader * Bumped up standards-version to 3.7.3 (no changes needed) * Patched to accept (and ignore) leading whitespace from the external command output (Closes: #460604) * Added the pkg-perl group as the maintainer; Jeremiah joins me as an uploader. -- Gunnar Wolf Mon, 26 May 2008 12:18:54 -0500 liblinux-lvm-perl (0.13-1) unstable; urgency=low * Initial Release. (closes: #447302). -- Jeremiah C. Foster Mon, 29 Oct 2007 16:44:36 +0100