forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Sys-Virt: Bump to version 1.3.2
- EAPI6 - Remove annoying tests and their deps - add USE="examples" Upstream: - Many more bindings, constants, callbacks - Support for virDomainSetUserPassword - Add virDomainRename method Package-Manager: portage-2.2.28
- Loading branch information
1 parent
ed1ba2b
commit 8e97be6
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST Sys-Virt-1.1.2.tar.gz 95796 SHA256 51c3d23603781c535df1b56ee3137d8b83195f7250ee514658d580d328789792 SHA512 8648442bac2d0b1b33a96b8f5debade7c17c803140b717baca3b5f924e73677b1061b488c74e4cf9d07361c7fdaf7c4f6f393040778bdc47d4542dbf51e08430 WHIRLPOOL 5a325ed7a27591e41cfa7bfced84c400e65a273f616c5b382e0e4a259ca88e738ea6bc66d2ffc4b97de1b674005763c41b9c088aaae322e73c84a1f58e523b97 | ||
DIST Sys-Virt-1.2.5.tar.gz 98341 SHA256 87fa8fb30c6b97311e71c72a7e97e23631b048d12d132a46b29c036e4faca776 SHA512 a8d5e760db1d7321889fe83fa0debee98f96776ab360f6f6925602d1fac092d41425e9993290ca1c91c5294e50ce0078cc34bb475163c0d5be64eb0ca8d289db WHIRLPOOL ab360098ea756e9b080885311d8f52181f19118db81338acc10b2d32bc4cbcc43ae26c75cd0646af371909dd2136022bb0f6ff4d86a82c63887f4b8f70adb4bc | ||
DIST Sys-Virt-1.2.9.tar.gz 103979 SHA256 87d643445774d4482dd46b8ad2e0f556b0241c57add782078ec3b835692de5a9 SHA512 d106180f9dc7b231a981d74ce55f6919c44711316ffb9c9ad0292427803040656dedb27b4295abb0e3f9637f0bec12c265c831a28a992e373f54145dd6999e04 WHIRLPOOL 1b9f9d3b0b62d77c6464c76acfa35f259f4345d3c3fb9beb34e6af7ad6b58e9b92ea1dd8d2d4e2894c98e154db99344e37e945f97c2b12d4961b65c8037004b2 | ||
DIST Sys-Virt-1.3.2.tar.gz 111726 SHA256 f15e1b567b0a31e224551d0020fdef2aa229b4c6d5dc7b311b95a27a7d8ac8ce SHA512 ba1cdec90f22d9d89bd59daeb905399f3adb03d1b1d313091d7ca61888cf152808fe8bf29b22d17ee5a0ea55b73830b112a7282697e56a9463b49f4025c1ac74 WHIRLPOOL 9a65481e720c3efedf562517828d70b1ea9cc2b96757f96e19ebc42889bc223e940e54e8864c0b3cc0001992f302836c86c42acf2843584b2aeccd14cc9ed3dc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=DANBERR | ||
DIST_VERSION=1.3.2 | ||
inherit perl-module | ||
|
||
DESCRIPTION="Sys::Virt provides an API for using the libvirt library from Perl" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="test examples" | ||
|
||
RDEPEND=">=app-emulation/libvirt-${PV}" | ||
DEPEND="${RDEPEND} | ||
virtual/pkgconfig | ||
test? ( | ||
dev-perl/XML-XPath | ||
virtual/perl-Time-HiRes | ||
)" | ||
|
||
src_compile() { | ||
MAKEOPTS+=" -j1" perl-module_src_compile | ||
} | ||
src_test() { | ||
perl_rm_files "t/010-pod-coverage.t" "t/005-pod.t" "t/015-changes.t" | ||
perl-module_src_test | ||
} | ||
src_install() { | ||
perl-module_src_install | ||
if use examples; then | ||
docompress -x /usr/share/doc/${PF}/examples | ||
dodoc examples | ||
fi | ||
} |