repo/gentoo:master commit in: dev-util/pkgdev/
"Arthur Zamarin" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786089128.00b4ee6bad8cf397c425d7416cc06aa8ff8f6b13.arthurzam@gentoo> |
commit: 00b4ee6bad8cf397c425d7416cc06aa8ff8f6b13
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 7 07:52:08 2026 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 7 07:52:08 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00b4ee6b
dev-util/pkgdev: drop 0.2.15
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-util/pkgdev/Manifest | 1 -
dev-util/pkgdev/pkgdev-0.2.15.ebuild | 74 ------------------------------------
2 files changed, 75 deletions(-)
diff --git a/dev-util/pkgdev/Manifest b/dev-util/pkgdev/Manifest
index b9d46bdf1ac6..23db5fd1b29e 100644
--- a/dev-util/pkgdev/Manifest
+++ b/dev-util/pkgdev/Manifest
@@ -1,2 +1 @@
-DIST pkgdev-0.2.15.tar.gz 90194 BLAKE2B b92eb56d4bf8b7ae4aecfc042f74be21579d379a5fe3351d7f2e4b09c221a354c5a7f919f140d14e70d556da00a34758db8824a96aeaa489e6e136c1da5a06a2 SHA512 a165a5d4040a7652f63d4f7f8d6a6e4ca2f0ddb9aae8f6af8f9f0420f5cafcd071648e9ba162f87209749724c0ee062f9b84c3d11244a471a00a778205f1d10e
DIST pkgdev-0.2.16.tar.gz 97591 BLAKE2B 46ce826ae965713d3d553775fe2e927cd34570008825b7c33352a1462cdddd3db8c624322bca87dae55978bc795cbddc1ea4e3543ab9db39173c5b4e0216ed8c SHA512 64b950645b684ae8bc6f21aad387bfbd887e0e9b29ae64234684fb39bdece6faa3a2e423ce6451e95995c33796158cdf167109de29264423e6bca768f7bc12fb
diff --git a/dev-util/pkgdev/pkgdev-0.2.15.ebuild b/dev-util/pkgdev/pkgdev-0.2.15.ebuild
deleted file mode 100644
index 21bad0856cbd..000000000000
--- a/dev-util/pkgdev/pkgdev-0.2.15.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{12..15} )
-inherit distutils-r1 optfeature
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_BRANCH="main"
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git
- https://github.com/pkgcore/pkgdev.git"
- inherit git-r3
-else
- inherit pypi
- KEYWORDS="amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
-fi
-
-DESCRIPTION="Collection of tools for Gentoo development"
-HOMEPAGE="https://github.com/pkgcore/pkgdev"
-
-LICENSE="BSD MIT"
-SLOT="0"
-IUSE="doc"
-
-if [[ ${PV} == *9999 ]] ; then
- RDEPEND="
- ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]
- ~dev-util/pkgcheck-9999[${PYTHON_USEDEP}]
- ~sys-apps/pkgcore-9999[${PYTHON_USEDEP}]
- "
-else
- RDEPEND="
- >=dev-python/snakeoil-0.11.0[${PYTHON_USEDEP}]
- >=sys-apps/pkgcore-0.12.30[${PYTHON_USEDEP}]
- >=dev-util/pkgcheck-0.10.36[${PYTHON_USEDEP}]
- "
-fi
-
-RDEPEND+="
- dev-vcs/git
-"
-BDEPEND="
- >=dev-python/flit-core-3.8[${PYTHON_USEDEP}]
- >=dev-python/snakeoil-0.11.0[${PYTHON_USEDEP}]
- test? (
- x11-misc/xdg-utils
- )
-"
-
-distutils_enable_sphinx doc
-EPYTEST_PLUGINS=( pkgcore )
-distutils_enable_tests pytest
-
-python_compile_all() {
- use doc && emake PYTHON="${EPYTHON}" man
-
- sphinx_compile_all # HTML pages only
-}
-
-python_install_all() {
- # If USE=doc, there'll be newly generated docs which we install instead.
- if use doc || [[ ${PV} != *9999 ]]; then
- doman build/sphinx/man/*
- fi
-
- distutils-r1_python_install_all
-}
-
-pkg_postinst() {
- optfeature "sending email support" x11-misc/xdg-utils
- optfeature "tatt subcommand" "app-portage/nattka dev-python/jinja2"
-}