From: "Kent Fredric" <kentnl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Sys-Virt/
Date: Thu, 23 Mar 2017 01:28:30 +0000 (UTC) [thread overview]
Message-ID: <1490232505.14da992b43ef6bcdddb9ecdb63c74820563fd647.kentnl@gentoo> (raw)
commit: 14da992b43ef6bcdddb9ecdb63c74820563fd647
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 23 01:28:05 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Mar 23 01:28:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14da992b
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
dev-perl/Sys-Virt/Manifest | 1 +
dev-perl/Sys-Virt/Sys-Virt-3.1.0.ebuild | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-perl/Sys-Virt/Manifest b/dev-perl/Sys-Virt/Manifest
index c616c67857b..e87dd397f3e 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 00000000000..6755aa7e83b
--- /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
+}
next reply other threads:[~2017-03-23 1:28 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-23 1:28 Kent Fredric [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-08 1:33 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Sys-Virt/ Sam James
2025-02-08 1:33 Sam James
2025-02-08 1:08 Jakov Smolić
2024-12-11 2:48 Sam James
2024-08-25 18:59 Sam James
2024-08-25 18:59 Sam James
2024-06-10 10:29 Jakov Smolić
2024-06-10 8:54 Sam James
2024-04-13 18:49 Sam James
2024-03-14 5:54 Sam James
2024-03-04 10:36 Sam James
2024-02-14 16:29 Ionen Wolkens
2024-01-30 6:22 Sam James
2024-01-18 19:48 Sam James
2024-01-18 19:48 Sam James
2023-12-02 10:56 Arthur Zamarin
2023-10-04 17:46 Matthias Maier
2023-07-24 12:32 Jakov Smolić
2023-07-24 11:03 Jakov Smolić
2023-06-18 21:53 Sam James
2023-06-01 16:47 Joonas Niilola
2023-06-01 16:47 Joonas Niilola
2023-04-29 6:44 Sam James
2023-03-04 13:51 Arthur Zamarin
2023-03-04 8:17 Arthur Zamarin
2022-11-11 15:14 Matthias Maier
2022-08-19 2:40 Sam James
2022-07-04 23:24 Sam James
2022-05-31 8:03 Sam James
2022-05-31 7:29 Sam James
2022-05-14 2:52 Sam James
2022-05-14 2:32 Sam James
2021-12-08 21:18 Andreas K. Hüttel
2021-12-05 7:49 Jakov Smolić
2021-12-05 3:28 Sam James
2021-11-04 0:12 Jakov Smolić
2021-08-13 0:04 Andreas K. Hüttel
2018-11-23 13:06 Agostino Sarubbo
2018-10-01 0:07 Thomas Deutschmann
2018-01-10 17:14 Kent Fredric
2017-06-08 23:11 Kent Fredric
2017-01-21 13:38 Kent Fredric
2016-12-29 17:46 Göktürk Yüksek
2016-12-06 12:28 Kent Fredric
2016-08-08 12:59 Kent Fredric
2016-04-11 22:54 Andreas Hüttel
2016-04-11 22:54 Andreas Hüttel
2016-04-11 22:54 Andreas Hüttel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1490232505.14da992b43ef6bcdddb9ecdb63c74820563fd647.kentnl@gentoo \
--to=kentnl@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox