Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/liblarch/
Date: Sat, 19 Jun 2021 11:29:27
Message-Id: 1624101837.2b837000a8f3a915bd518a7e0ea520b9e3efefcf.leio@gentoo
1 commit: 2b837000a8f3a915bd518a7e0ea520b9e3efefcf
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 21:55:39 2021 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 19 11:23:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b837000
7
8 dev-python/liblarch: bump to 3.1.0
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-python/liblarch/Manifest | 1 +
14 dev-python/liblarch/liblarch-3.1.0.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/dev-python/liblarch/Manifest b/dev-python/liblarch/Manifest
18 index 14cc8490bc5..1924bfaf688 100644
19 --- a/dev-python/liblarch/Manifest
20 +++ b/dev-python/liblarch/Manifest
21 @@ -1 +1,2 @@
22 DIST liblarch-3.0.1.tar.gz 55564 BLAKE2B bb3b3b67f9a64403e1a57e9b47217aa1a9b066708d70e1387a8b864a81dbdc4202b6b75012365f9c93179bbfcc4304116a33ebd3bd892f24334e0c200ae94b56 SHA512 591854eae54f5e644882f8ba486434f85196115a3c06f249cf7b343bb0e029b78a818610881d9d656f6342748c956cf5a213a22843e95b2ed05246a8013ff8ca
23 +DIST liblarch-3.1.0.tar.gz 55727 BLAKE2B 531602b43f7729f59f59394aa1dd6d3ee4ad653d4ef8802de2074c9a9746d43da1638941c1e8f2075d9092810ba680f2e01bee360c55b0826bb725d6515b31df SHA512 042a763dd12612d6630c064b5af84011f1fb908626f17f866e103743cdaabb4983f922290287b0138938488a7c9bff33680ef8157f8bbcbc166e4f4f2d008951
24
25 diff --git a/dev-python/liblarch/liblarch-3.1.0.ebuild b/dev-python/liblarch/liblarch-3.1.0.ebuild
26 new file mode 100644
27 index 00000000000..94cdf47d60a
28 --- /dev/null
29 +++ b/dev-python/liblarch/liblarch-3.1.0.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +DISTUTILS_USE_SETUPTOOLS=no
37 +
38 +inherit distutils-r1 virtualx
39 +
40 +DESCRIPTION="Library to handle directed acyclic graphs"
41 +HOMEPAGE="https://wiki.gnome.org/Projects/liblarch"
42 +SRC_URI="https://github.com/getting-things-gnome/liblarch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +DEPEND="
51 + dev-python/pygobject:3[${PYTHON_USEDEP}]
52 + x11-libs/gtk+:3[introspection]
53 +"
54 +RDEPEND="${DEPEND}"
55 +BDEPEND="
56 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
57 +"
58 +
59 +python_test() {
60 + virtx nosetests -v || die "Tests fail with ${EPYTHON}"
61 +}