Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pkgconfig/
Date: Mon, 21 Jan 2019 20:49:27
Message-Id: 1548103748.90a52c99bfcc1a59cd4b69e13e90e2f5bda3e8b3.soap@gentoo
1 commit: 90a52c99bfcc1a59cd4b69e13e90e2f5bda3e8b3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 21 20:48:15 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 21 20:49:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a52c99
7
8 dev-python/pkgconfig: Version bump to 1.4.0
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/pkgconfig/Manifest | 1 +
14 dev-python/pkgconfig/pkgconfig-1.4.0.ebuild | 35 +++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/dev-python/pkgconfig/Manifest b/dev-python/pkgconfig/Manifest
18 index e9a9e0e3e78..845f68183b6 100644
19 --- a/dev-python/pkgconfig/Manifest
20 +++ b/dev-python/pkgconfig/Manifest
21 @@ -1 +1,2 @@
22 DIST pkgconfig-1.2.2.tar.gz 5305 BLAKE2B 39fe5e05489e4eb8fefce66f23820d96039f5dfb82148e8ac2d691644aa2d4f1205bfa483f9fdc69837b7956834d1525d85281ba6aa0a0c079748336d47708c7 SHA512 88cfb27755297871c500f37c422da5d4ae30a14e0b9974afbe63f22c59746be0d175b65d9e3d2ed315b4d942046e7c18be062aef914199c99070a2767699848b
23 +DIST pkgconfig-1.4.0.tar.gz 5915 BLAKE2B 17ae11783b6642f6c8e726b42b725b7904ea282829b4527f92daa1e6ea43c3c126e6ef7e29fe5eefc89b40f3b69799087a46df6ac5695a593903dab9dc247c04 SHA512 8a270449b7b8b850aab9cc5774d1d6c6b68254f00157b66530c15697eda214948d3a71a75725067d63b906a9c3b1d789a775ac15a1094ff5ba3f227bcd666528
24
25 diff --git a/dev-python/pkgconfig/pkgconfig-1.4.0.ebuild b/dev-python/pkgconfig/pkgconfig-1.4.0.ebuild
26 new file mode 100644
27 index 00000000000..1823ef12365
28 --- /dev/null
29 +++ b/dev-python/pkgconfig/pkgconfig-1.4.0.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Interface Python with pkg-config"
41 +HOMEPAGE="https://pypi.org/project/pkgconfig/ https://github.com/matze/pkgconfig"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="virtual/pkgconfig"
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? (
54 + ${RDEPEND}
55 + dev-python/nose[${PYTHON_USEDEP}]
56 + )"
57 +
58 +python_prepare_all() {
59 + sed -e '/nose/d' -i setup.py || die
60 + distutils-r1_python_prepare_all
61 +}
62 +
63 +python_test() {
64 + nosetests || die
65 +}