summaryrefslogtreecommitdiff
path: root/dev-util/pkgdev
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-17 03:01:54 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-17 03:01:54 -0500
commit704b2332929c5ee3a704315e1b371a864f9f463e (patch)
tree5112e7a1a49250008a19bd1c18e2142a8a5ed3f3 /dev-util/pkgdev
parent7c679258085e25fd48f6bc6a44d6554b82d83c09 (diff)
downloadbaldeagleos-repo-704b2332929c5ee3a704315e1b371a864f9f463e.tar.gz
baldeagleos-repo-704b2332929c5ee3a704315e1b371a864f9f463e.tar.xz
baldeagleos-repo-704b2332929c5ee3a704315e1b371a864f9f463e.zip
Adding metadata
Diffstat (limited to 'dev-util/pkgdev')
-rw-r--r--dev-util/pkgdev/Manifest1
-rw-r--r--dev-util/pkgdev/pkgdev-0.2.14.ebuild74
2 files changed, 0 insertions, 75 deletions
diff --git a/dev-util/pkgdev/Manifest b/dev-util/pkgdev/Manifest
index 7b7b30491eb8..da09aaab230a 100644
--- a/dev-util/pkgdev/Manifest
+++ b/dev-util/pkgdev/Manifest
@@ -1,2 +1 @@
-DIST pkgdev-0.2.14.tar.gz 88980 BLAKE2B 781dcedec3fa38a52210869ba5f50fdc051eb46bea8593636cbc877611f34364e89d4f943377f60eed81798ba4c097b7f5f8a95bbddcd61aa385866278ebaa18 SHA512 47c7ad2286c89b12661b605cd9032b5b27e497c25aef102cd62141b85a608f923b61eed9023784dc9b7eab1e218fc463f533b03f6f0f2bdb7b9456350988aab0
DIST pkgdev-0.2.15.tar.gz 90194 BLAKE2B b92eb56d4bf8b7ae4aecfc042f74be21579d379a5fe3351d7f2e4b09c221a354c5a7f919f140d14e70d556da00a34758db8824a96aeaa489e6e136c1da5a06a2 SHA512 a165a5d4040a7652f63d4f7f8d6a6e4ca2f0ddb9aae8f6af8f9f0420f5cafcd071648e9ba162f87209749724c0ee062f9b84c3d11244a471a00a778205f1d10e
diff --git a/dev-util/pkgdev/pkgdev-0.2.14.ebuild b/dev-util/pkgdev/pkgdev-0.2.14.ebuild
deleted file mode 100644
index 2f327a1d7a3c..000000000000
--- a/dev-util/pkgdev/pkgdev-0.2.14.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_{13..14} )
-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"
-}