public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Sys-Virt/
Date: Mon, 11 Apr 2016 22:54:24 +0000 (UTC)	[thread overview]
Message-ID: <1460415250.8e97be6cd28b692636ef0b14f341212f1603ec98.dilfridge@gentoo> (raw)

commit:     8e97be6cd28b692636ef0b14f341212f1603ec98
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sun Apr 10 17:15:00 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 22:54:10 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e97be6c

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

 dev-perl/Sys-Virt/Manifest              |  1 +
 dev-perl/Sys-Virt/Sys-Virt-1.3.2.ebuild | 38 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-perl/Sys-Virt/Manifest b/dev-perl/Sys-Virt/Manifest
index c040447..a867401 100644
--- a/dev-perl/Sys-Virt/Manifest
+++ b/dev-perl/Sys-Virt/Manifest
@@ -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

diff --git a/dev-perl/Sys-Virt/Sys-Virt-1.3.2.ebuild b/dev-perl/Sys-Virt/Sys-Virt-1.3.2.ebuild
new file mode 100644
index 0000000..298af34
--- /dev/null
+++ b/dev-perl/Sys-Virt/Sys-Virt-1.3.2.ebuild
@@ -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
+}


             reply	other threads:[~2016-04-11 22:55 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-11 22:54 Andreas Hüttel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-04-11 22:54 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Sys-Virt/ Andreas Hüttel
2016-04-11 22:54 Andreas Hüttel
2016-08-08 12:59 Kent Fredric
2016-12-06 12:28 Kent Fredric
2016-12-29 17:46 Göktürk Yüksek
2017-01-21 13:38 Kent Fredric
2017-03-23  1:28 Kent Fredric
2017-06-08 23:11 Kent Fredric
2018-01-10 17:14 Kent Fredric
2018-10-01  0:07 Thomas Deutschmann
2018-11-23 13:06 Agostino Sarubbo
2021-08-13  0:04 Andreas K. Hüttel
2021-11-04  0:12 Jakov Smolić
2021-12-05  3:28 Sam James
2021-12-05  7:49 Jakov Smolić
2021-12-08 21:18 Andreas K. Hüttel
2022-05-14  2:32 Sam James
2022-05-14  2:52 Sam James
2022-05-31  7:29 Sam James
2022-05-31  8:03 Sam James
2022-07-04 23:24 Sam James
2022-08-19  2:40 Sam James
2022-11-11 15:14 Matthias Maier
2023-03-04  8:17 Arthur Zamarin
2023-03-04 13:51 Arthur Zamarin
2023-04-29  6:44 Sam James
2023-06-01 16:47 Joonas Niilola
2023-06-01 16:47 Joonas Niilola
2023-06-18 21:53 Sam James
2023-07-24 11:03 Jakov Smolić
2023-07-24 12:32 Jakov Smolić
2023-10-04 17:46 Matthias Maier
2023-12-02 10:56 Arthur Zamarin
2024-01-18 19:48 Sam James
2024-01-18 19:48 Sam James
2024-01-30  6:22 Sam James
2024-02-14 16:29 Ionen Wolkens
2024-03-04 10:36 Sam James
2024-03-14  5:54 Sam James
2024-04-13 18:49 Sam James
2024-06-10  8:54 Sam James
2024-06-10 10:29 Jakov Smolić
2024-08-25 18:59 Sam James
2024-08-25 18:59 Sam James

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=1460415250.8e97be6cd28b692636ef0b14f341212f1603ec98.dilfridge@gentoo \
    --to=dilfridge@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