Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgdev/
Date: Fri, 23 Sep 2022 01:35:46
Message-Id: 1663896920.17256c6241b8397d3c058201da5b70c0f9852c09.sam@gentoo
1 commit: 17256c6241b8397d3c058201da5b70c0f9852c09
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 23 01:29:55 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 01:35:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17256c62
7
8 dev-util/pkgdev: drop 0.2.1-r1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-util/pkgdev/pkgdev-0.2.1-r1.ebuild | 65 ----------------------------------
13 1 file changed, 65 deletions(-)
14
15 diff --git a/dev-util/pkgdev/pkgdev-0.2.1-r1.ebuild b/dev-util/pkgdev/pkgdev-0.2.1-r1.ebuild
16 deleted file mode 100644
17 index d325a89554c8..000000000000
18 --- a/dev-util/pkgdev/pkgdev-0.2.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,65 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -DISTUTILS_IN_SOURCE_BUILD=1
28 -inherit distutils-r1
29 -
30 -if [[ ${PV} == *9999 ]] ; then
31 - EGIT_REPO_URI="https://github.com/pkgcore/pkgdev.git"
32 - inherit git-r3
33 -else
34 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 - KEYWORDS="amd64 arm arm64 hppa ~loong ppc ppc64 ~riscv sparc x86 ~x64-macos"
36 -fi
37 -
38 -DESCRIPTION="Collection of tools for Gentoo development"
39 -HOMEPAGE="https://github.com/pkgcore/pkgdev"
40 -
41 -LICENSE="BSD MIT"
42 -SLOT="0"
43 -
44 -if [[ ${PV} == *9999 ]] ; then
45 - # https://github.com/pkgcore/pkgdev/blob/main/requirements/dev.txt
46 - RDEPEND="
47 - ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]
48 - ~dev-util/pkgcheck-9999[${PYTHON_USEDEP}]
49 - ~sys-apps/pkgcore-9999[${PYTHON_USEDEP}]
50 - "
51 -else
52 - # https://github.com/pkgcore/pkgdev/blob/main/requirements/install.txt
53 - RDEPEND="
54 - >=dev-python/snakeoil-0.9.6[${PYTHON_USEDEP}]
55 - >=dev-util/pkgcheck-0.10.0[${PYTHON_USEDEP}]
56 - >=sys-apps/pkgcore-0.12.0[${PYTHON_USEDEP}]
57 - "
58 -fi
59 -
60 -# Uses pytest but we want to use the setup.py runner to get generated modules
61 -BDEPEND+="test? ( dev-python/pytest )"
62 -RDEPEND+="dev-vcs/git"
63 -
64 -PATCHES=(
65 - "${FILESDIR}"/${P}-fix-signoff-example.patch
66 -)
67 -
68 -distutils_enable_sphinx doc
69 -distutils_enable_tests setup.py
70 -
71 -python_compile_all() {
72 - # We'll generate man pages ourselves
73 - # Revisit when a release is made
74 - # to pregenerate them, making USE=doc
75 - # for generating the real HTML docs only.
76 - use doc && emake -C doc man
77 -
78 - # HTML pages only
79 - sphinx_compile_all
80 -}
81 -
82 -python_install_all() {
83 - use doc && doman doc/_build/man/*
84 - distutils-r1_python_install_all
85 -}