diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-03-23 14:28:05 +1300 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-03-23 14:28:25 +1300 |
commit | 14da992b43ef6bcdddb9ecdb63c74820563fd647 (patch) | |
tree | bb30cf6ba133ebe1fcda6d6c9e8ce25cddbe4643 /dev-perl/Sys-Virt | |
parent | media-libs/grilo: remove old (diff) | |
download | gentoo-14da992b43ef6bcdddb9ecdb63c74820563fd647.tar.gz gentoo-14da992b43ef6bcdddb9ecdb63c74820563fd647.tar.bz2 gentoo-14da992b43ef6bcdddb9ecdb63c74820563fd647.zip |
dev-perl/Sys-Virt: Bump to version 3.1.0
Upstream:
- Add constants VIR_CONNECT_LIST_STORAGE_POOLS_VSTORAGE,
VIR_CONNECT_LIST_NODE_DEVICES_CAP_DRM, PERF_PARAM_BRANCH_MISSES,
PERF_PARAM_BUS_CYCLES, PERF_PARAM_STALLED_CYCLES_FRONTEND,
PERF_PARAM_STALLED_CYCLES_BACKEND, PERF_PARAM_REF_CPU_CYCLES
- Add virDomainSetVcpu API
- Add group_name for block iotune
- Add new branch instructions for perf event
- Add virStorageVolGetInfoFlags + Constants
- Add domain metadata change event
- Add secret event APIs
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-perl/Sys-Virt')
-rw-r--r-- | dev-perl/Sys-Virt/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Sys-Virt/Sys-Virt-3.1.0.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-perl/Sys-Virt/Manifest b/dev-perl/Sys-Virt/Manifest index c616c67857bc..e87dd397f3e9 100644 --- a/dev-perl/Sys-Virt/Manifest +++ b/dev-perl/Sys-Virt/Manifest @@ -3,3 +3,4 @@ DIST Sys-Virt-1.2.9.tar.gz 103979 SHA256 87d643445774d4482dd46b8ad2e0f556b0241c5 DIST Sys-Virt-1.3.2.tar.gz 111726 SHA256 f15e1b567b0a31e224551d0020fdef2aa229b4c6d5dc7b311b95a27a7d8ac8ce SHA512 ba1cdec90f22d9d89bd59daeb905399f3adb03d1b1d313091d7ca61888cf152808fe8bf29b22d17ee5a0ea55b73830b112a7282697e56a9463b49f4025c1ac74 WHIRLPOOL 9a65481e720c3efedf562517828d70b1ea9cc2b96757f96e19ebc42889bc223e940e54e8864c0b3cc0001992f302836c86c42acf2843584b2aeccd14cc9ed3dc DIST Sys-Virt-2.4.0.tar.gz 115304 SHA256 c441e805d21207791998833b12adae0dbf15bb34cc6e40445c8fbc52c79db03b SHA512 729e68666cd4d2be48664798906c0f226a805713b8315602aca4782c088d718ed581ce2371a759edd2c7729537f7f502756a1bc618101c491872916018394c23 WHIRLPOOL 0f193f7aa906ab36c8ac14a894f24032c81590068a7041c4df36d23b31a043eb34c69afa541b2d45f0f5fca96bc90004d4138c147c7f1b8c6758f7ef11f556e7 DIST Sys-Virt-2.5.0.tar.gz 115397 SHA256 822117feaa3159ce97341cd50569fbb99b9562d3c9505a289b00546ec907db80 SHA512 078ab8a33090fd12eda8615973a871e0a6c6c781bc958e94e86c7cd0bd3b3ab6204aa9b884b58c87907ff9c9f311e998cc9c54e0dec63d7f5670eccc15f30741 WHIRLPOOL 97e48c20c53b6d38f8c1155a119800b0fe8e228b2d27493a9c90f1540bd3205388e2b1431c6e18be1abe4722b15c685227cbe1dbc8e8279695bcbd02d5319dac +DIST Sys-Virt-3.1.0.tar.gz 116732 SHA256 1bcd7c3592bc8fa5d9aa17abfebd9129b743ba0dd8005b41d7b97366c5402166 SHA512 897b8a33aed48e836650bf24073fc7ab1ad406ab2fcb43809b8756d46cd2e20b99cd93ea7e7307cf39f6260ffc2f8053a531964472e875f5c3415a3304e0d3be WHIRLPOOL 26c83f72ecc042ef53f3bb855daa0dcd42a3ded580ffe99541716a8b64cf4512015f07d5d434eba0ace604bf42ac43da7098f5ffd3146b84e98e33347c6d65f3 diff --git a/dev-perl/Sys-Virt/Sys-Virt-3.1.0.ebuild b/dev-perl/Sys-Virt/Sys-Virt-3.1.0.ebuild new file mode 100644 index 000000000000..6755aa7e83b8 --- /dev/null +++ b/dev-perl/Sys-Virt/Sys-Virt-3.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=DANBERR +DIST_EXAMPLES=("examples/*") +inherit perl-module + +DESCRIPTION="API for using the libvirt library from Perl" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +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 +} |