Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/
Date: Sun, 31 Jan 2021 09:03:52
Message-Id: 1612083732.9efd055fc02b12745be474a9d7fd44fd96c3d578.mgorny@gentoo
1 commit: 9efd055fc02b12745be474a9d7fd44fd96c3d578
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 31 09:02:12 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 31 09:02:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9efd055f
7
8 sys-apps/pkgcore: Bump to 0.11.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-apps/pkgcore/Manifest | 1 +
13 sys-apps/pkgcore/pkgcore-0.11.2.ebuild | 42 ++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
17 index 1ad1d120077..3b033743ffa 100644
18 --- a/sys-apps/pkgcore/Manifest
19 +++ b/sys-apps/pkgcore/Manifest
20 @@ -2,3 +2,4 @@ DIST pkgcore-0.10.13.tar.gz 647320 BLAKE2B ef80320a0a8d35ed68b1d77d52a3cfb2ffbad
21 DIST pkgcore-0.10.14.tar.gz 627149 BLAKE2B 05012f21998ae97212364f63ca6d423806e20d0f2fd5785b9a52ec3c535c12675cd2a8f300ed1b3fbfe627d33ab9b138bf28a3a2792c405dbe068045d73243af SHA512 f4e4959d55d412b81306a4e7205163814b95b2f454dd7bb233c9a16d5a5975c0d2e20882e73859266ebf1bd6233e4d88e97291632b2f6cf2c2ae58cb5a680a3b
22 DIST pkgcore-0.11.0.tar.gz 641831 BLAKE2B 93b2d680b0daa6611ee4fe3782e90736950859135b1e22d05068abdcb64d3a94bcbd564af4940d8944cf8d49f867404f61697ba7b1d1b45d0ba31c93232bdd44 SHA512 d9a1f3cecd0a84b353a2515e6053d300aba0257b7034d852e469177f04e05f79c95cd9bd1278afcedd321b825f5f46241d2098317e1bc29bb77efef9f641ccef
23 DIST pkgcore-0.11.1.tar.gz 642312 BLAKE2B 70aac2357af1d84f3d7372f09483b9b1ba46dec9cb20044c540e482a1161c1419d8dfd5383aa12731679f05c5fe2f98981317eecd32059301ca757982f8b1ea2 SHA512 572137175f9af3cc451f412ead5d67d5fe79826d56f773dc5b6cc791cdfe575d6cab82c2943afe705c759edd89cba1282092d772f46343c8452b52d344bd2ff0
24 +DIST pkgcore-0.11.2.tar.gz 641792 BLAKE2B 295cc8302badcae333939d69329331be5f76d965549c75140ce809d693cf688fe3d3152c44a9d738aa2d90ed1c9f4aad2cf3c9a9a3a52a067e69cf7dd6c87b96 SHA512 602e7ad03699b3b3f302d6d414a9587f1c7829be83898e055e8e1a46e2a805b535cb715bbbb4d43100f77b8b119e13e8b1e374f45be879b4c9dfe02340f225d6
25
26 diff --git a/sys-apps/pkgcore/pkgcore-0.11.2.ebuild b/sys-apps/pkgcore/pkgcore-0.11.2.ebuild
27 new file mode 100644
28 index 00000000000..2998f6377a3
29 --- /dev/null
30 +++ b/sys-apps/pkgcore/pkgcore-0.11.2.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +DISTUTILS_IN_SOURCE_BUILD=1
38 +inherit distutils-r1
39 +
40 +if [[ ${PV} == *9999 ]] ; then
41 + EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git"
42 + inherit git-r3
43 +else
44 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
45 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +fi
47 +
48 +DESCRIPTION="a framework for package management"
49 +HOMEPAGE="https://github.com/pkgcore/pkgcore"
50 +
51 +LICENSE="BSD MIT"
52 +SLOT="0"
53 +
54 +RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]"
55 +if [[ ${PV} == *9999 ]]; then
56 + RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
57 +else
58 + RDEPEND+=" >=dev-python/snakeoil-0.9.0[${PYTHON_USEDEP}]"
59 +fi
60 +BDEPEND="
61 + test? (
62 + dev-python/pytest[${PYTHON_USEDEP}]
63 + dev-vcs/git
64 + )
65 +"
66 +
67 +distutils_enable_tests setup.py
68 +
69 +python_install_all() {
70 + local DOCS=( NEWS.rst )
71 + [[ ${PV} == *9999 ]] || doman man/*
72 + distutils-r1_python_install_all
73 +}