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 3.3.0
Upstream: - New constants: PERF_PARAM_* VIR_DOMAIN_JOB_OPERATION*, VIR_MIGRATE_TLS - Add block threshold event - Add API for virDomainSetBlockThreshold Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
1 parent
2b1fb18
commit 95213ae
Showing
2 changed files
with
32 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
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,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 | ||
)" | ||
PATCHES=( "${FILESDIR}/no-dot-inc.patch" ) | ||
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 | ||
} |