public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Gilles Dartiguelongue" <eva@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/umockdev/
Date: Thu, 17 May 2018 10:05:25 +0000 (UTC)	[thread overview]
Message-ID: <1526551499.93499ca6df7d39f61a3d4619050c69e882eb5f00.eva@gentoo> (raw)

commit:     93499ca6df7d39f61a3d4619050c69e882eb5f00
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Thu May 17 09:31:49 2018 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Thu May 17 10:04:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93499ca6

dev-util/umockdev: version bump 0.9.4 → 0.11.3

Fix incomplete dependencies wrt introspection and gtk-doc-am. Add
multilib support and add gnome as maintainer as it is required in
libgudev test suite. Drop unneeded libtool files.

Closes: https://bugs.gentoo.org/609758
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-util/umockdev/Manifest               |  2 +-
 dev-util/umockdev/metadata.xml           |  5 +++-
 dev-util/umockdev/umockdev-0.11.3.ebuild | 45 ++++++++++++++++++++++++++++++++
 3 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/dev-util/umockdev/Manifest b/dev-util/umockdev/Manifest
index cb290079c21..970f34c6c21 100644
--- a/dev-util/umockdev/Manifest
+++ b/dev-util/umockdev/Manifest
@@ -1,2 +1,2 @@
-DIST umockdev-0.8.11.tar.xz 741812 BLAKE2B bb012a80180cac46d53af3f808065af499400d6fc5556b37511645698dff4c0bee92fac34335e2fcff0bde7c001f6ef5d0bd6ed27ea517e01513fa20d36d388b SHA512 dd6aa23873060c2778796f7300b61aa46e6f9bed8b2b2dc107eb747ade93f9d9027385a414f2107f3da4932065e1f7ec488cc91c6f24c3204a7abbbdf4cb8e84
+DIST umockdev-0.11.3.tar.xz 753152 BLAKE2B 9f78d160a653ba2c56e97d1b331dfeecd4dd8f6642744849ec3eb85866e4cbce6399679a873b730beddfac2f4bd7572937df4a3db2440ec1bf929849f928bdc6 SHA512 e9086777bb13dbd79b629dc68555d19fb8799720dfc4548926b87d032d94212814cb9e1de10e26f5940a9b5db9a15f62a594f3baf0050ffb9ea30f1563db6d6c
 DIST umockdev-0.9.4.tar.xz 754856 BLAKE2B 92182ee856e9432f02cf3a739c7af6f2220394eb4dd81ef6e2949380d124f70d9e34c3d3e49053af43794dd0f2ce0feed8be7366df2c9a06bebee9c52d24ba53 SHA512 c291d3f40a0ab366f14021aa0960852de049f4299a0207d93cec28d5961f3bc7f89448add6f7b35c1262d805d1d638837d4d5e6b734879ffb5910da50019e1cd

diff --git a/dev-util/umockdev/metadata.xml b/dev-util/umockdev/metadata.xml
index 4d3a755af6b..445c8737eab 100644
--- a/dev-util/umockdev/metadata.xml
+++ b/dev-util/umockdev/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>gnome@gentoo.org</email>
+		<name>Gentoo GNOME Desktop</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="launchpad">umockdev</remote-id>
 		<remote-id type="github">martinpitt/umockdev</remote-id>

diff --git a/dev-util/umockdev/umockdev-0.11.3.ebuild b/dev-util/umockdev/umockdev-0.11.3.ebuild
new file mode 100644
index 00000000000..f92f538192f
--- /dev/null
+++ b/dev-util/umockdev/umockdev-0.11.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit multilib-minimal python-any-r1
+
+DESCRIPTION="Mock hardware devices for creating unit tests"
+HOMEPAGE="https://github.com/martinpitt/umockdev/"
+SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection static-libs test"
+
+RDEPEND="
+	virtual/libgudev:=[${MULTILIB_USEDEP}]
+	virtual/libudev:=[${MULTILIB_USEDEP}]
+	>=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	test? ( ${PYTHON_DEPS} )
+	app-arch/xz-utils
+	>=dev-util/gtk-doc-am-1.14
+	virtual/pkgconfig[${MULTILIB_USEDEP}]
+"
+
+# Tests seem to hang forever
+RESTRICT="test"
+
+multilib_src_configure() {
+	local ECONF_SOURCE=${S}
+	econf \
+		--disable-gtk-doc \
+		$(multilib_native_use_enable introspection) \
+		$(use_enable static-libs static) \
+		VALAC="$(type -P true)"
+}
+
+multilib_src_install_all() {
+	einstalldocs
+	find "${D}" -name '*.la' -delete || die
+}


             reply	other threads:[~2018-05-17 10:05 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-17 10:05 Gilles Dartiguelongue [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-13  4:13 [gentoo-commits] repo/gentoo:master commit in: dev-util/umockdev/ Sam James
2024-08-09  9:29 Sam James
2024-07-04 19:09 Arthur Zamarin
2024-07-04 19:08 Sam James
2024-07-04 18:51 Arthur Zamarin
2024-07-04 18:49 Arthur Zamarin
2024-07-04 18:44 Arthur Zamarin
2024-06-03  6:10 Sam James
2024-05-04 18:11 Pacho Ramos
2023-09-01 16:07 Arthur Zamarin
2023-08-29 18:02 Arthur Zamarin
2023-08-29 17:49 Arthur Zamarin
2023-07-27 15:39 Matt Turner
2023-05-02 19:16 Sam James
2023-05-02 18:08 Arthur Zamarin
2023-05-02 17:36 Arthur Zamarin
2023-05-02 17:30 Arthur Zamarin
2023-04-17 18:24 Matt Turner
2023-04-01 19:03 Arthur Zamarin
2023-04-01 19:01 Arthur Zamarin
2023-03-31 12:04 Arthur Zamarin
2023-03-30 17:44 Arthur Zamarin
2023-03-19 17:36 Arthur Zamarin
2023-01-30 17:10 Matt Turner
2022-12-22 11:13 Arthur Zamarin
2022-12-17  6:45 Arthur Zamarin
2022-12-16 20:57 Arthur Zamarin
2022-12-16 20:30 Arthur Zamarin
2022-11-24 15:37 Matt Turner
2022-10-14  2:10 Sam James
2022-08-28  7:41 WANG Xuerui
2022-07-21  0:13 Sam James
2022-07-18 17:44 Sam James
2022-05-30 18:22 Matt Turner
2022-05-28  5:38 Sam James
2022-05-19 14:29 Matt Turner
2022-05-10 20:00 Matt Turner
2022-04-11 18:05 Matt Turner
2022-03-24  0:38 Matt Turner
2022-03-15 20:54 Matt Turner
2022-03-09 15:39 Sam James
2022-03-09 12:49 Sam James
2022-03-08 12:32 Sam James
2022-03-01 20:37 Matt Turner
2022-01-24 14:49 Sam James
2022-01-24 14:45 Sam James
2022-01-22 23:47 Matt Turner
2022-01-22 22:39 Sam James
2022-01-20  9:42 Arthur Zamarin
2022-01-18 21:44 Matt Turner
2022-01-11 17:21 Matt Turner
2022-01-10 21:30 Matt Turner
2021-12-19 17:50 Matt Turner
2021-11-28 19:01 Arthur Zamarin
2021-11-23 19:59 Arthur Zamarin
2021-10-12  0:10 Sam James
2021-10-02 22:50 Sam James
2021-09-13 16:03 Sam James
2021-09-09  7:39 Agostino Sarubbo
2021-09-08  6:56 Agostino Sarubbo
2021-09-08  6:55 Agostino Sarubbo
2021-09-06  0:15 Sam James
2021-08-28 21:14 Matt Turner
2021-08-11 23:07 Sam James
2021-08-10  4:59 Sam James
2021-08-06 20:49 Sam James
2021-08-04 21:12 Marek Szuba
2021-07-31 11:44 Sergei Trofimovich
2021-07-30 19:39 Matt Turner
2021-07-29 20:58 Matt Turner
2021-04-08  0:11 Thomas Deutschmann
2020-12-14  0:46 Sam James
2020-11-06  1:41 Georgy Yakovlev
2020-08-22 10:10 Michał Górny
2020-06-25  7:00 Agostino Sarubbo
2020-06-20 13:48 Thomas Deutschmann
2020-06-15 19:46 Mike Gilbert
2019-12-12 16:46 Michał Górny
2018-12-01 17:10 Gilles Dartiguelongue
2018-05-17 10:05 Gilles Dartiguelongue
2017-05-28  9:29 Pacho Ramos
2016-01-23 20:07 Michael Palimaka
2015-09-15  0:41 Tim Harder

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=1526551499.93499ca6df7d39f61a3d4619050c69e882eb5f00.eva@gentoo \
    --to=eva@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