summaryrefslogtreecommitdiff
path: root/dev-python/pygccxml
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pygccxml
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pygccxml')
-rw-r--r--dev-python/pygccxml/Manifest1
-rw-r--r--dev-python/pygccxml/files/pygccxml-2.4.0-doc.patch21
-rw-r--r--dev-python/pygccxml/metadata.xml18
-rw-r--r--dev-python/pygccxml/pygccxml-3.0.2.ebuild47
4 files changed, 0 insertions, 87 deletions
diff --git a/dev-python/pygccxml/Manifest b/dev-python/pygccxml/Manifest
deleted file mode 100644
index 16b7fb2b83a2..000000000000
--- a/dev-python/pygccxml/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pygccxml-3.0.2.gh.tar.gz 3156023 BLAKE2B add33e230db83cadd5fd394e7e65c8815227abb3d5f86e76c54bcbc13ba52ffa55698d98785802ac51d9396f009972a093476e489280548469d5000aff8aa010 SHA512 d94b9175bd88bc92d039b758e2052d3c72e510cc381cbd974d670ff6cc06f80f7918bcd8da06efd82729d294e0972cee60690c7b0e24ab2c62a53c366bae9fb5
diff --git a/dev-python/pygccxml/files/pygccxml-2.4.0-doc.patch b/dev-python/pygccxml/files/pygccxml-2.4.0-doc.patch
deleted file mode 100644
index ecec89c14ed9..000000000000
--- a/dev-python/pygccxml/files/pygccxml-2.4.0-doc.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/docs/conf.py b/docs/conf.py
-index 071ebb1..2ccec1f 100644
---- a/docs/conf.py
-+++ b/docs/conf.py
-@@ -23,7 +23,6 @@ import importlib.metadata
- # documentation root, use os.path.abspath to make it absolute, like shown here.
- sys.path.insert(0, os.path.abspath('.') + "/../src")
-
--from release_utils import utils # nopep8
-
- # -- General configuration ------------------------------------------------
-
-@@ -284,7 +283,7 @@ def run_apidoc(_):
- os.path.join(sys.prefix, 'bin', 'sphinx-apidoc'))
- subprocess.check_call(
- [cmd_path, '-o', output_path,
-- os.path.abspath(cur_dir + "/../" + module),
-+ os.path.abspath(cur_dir + "/../src/" + module),
- '--separate', '--force', '--module-first', '--doc-project=API'])
-
-
diff --git a/dev-python/pygccxml/metadata.xml b/dev-python/pygccxml/metadata.xml
deleted file mode 100644
index a060648fb7da..000000000000
--- a/dev-python/pygccxml/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>tomjbe@gentoo.org</email>
- <name>Thomas Beierlein</name>
- </maintainer>
- <maintainer type="project">
- <email>radio@gentoo.org</email>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- </maintainer>
- <upstream>
- <remote-id type="github">CastXML/pygccxml</remote-id>
- <remote-id type="pypi">pygccxml</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pygccxml/pygccxml-3.0.2.ebuild b/dev-python/pygccxml/pygccxml-3.0.2.ebuild
deleted file mode 100644
index 5d6b7bda5f62..000000000000
--- a/dev-python/pygccxml/pygccxml-3.0.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="A specialized XML reader to navigate C++ declarations"
-HOMEPAGE="
- https://github.com/CastXML/pygccxml/
- https://pypi.org/project/pygccxml/
-"
-SRC_URI="
- https://github.com/CastXML/pygccxml/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~riscv ~x86"
-
-DEPEND="
- ${PYTHON_DEPS}
- dev-libs/castxml
-"
-RDEPEND="
- ${DEPEND}
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
-
-EPYTEST_DESELECT=(
- tests/test_smart_pointer.py
-)
-
-python_prepare_all() {
- local PATCHES=(
- "${FILESDIR}/${PN}-2.4.0-doc.patch"
- )
-
- distutils-r1_python_prepare_all
-}