diff options
| author | Michał Górny <mgorny@gentoo.org> | 2025-04-05 15:31:13 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2025-04-05 15:31:13 +0200 |
| commit | 477aafa924f9c3513c0f5527bb5ec19b0d1e403d (patch) | |
| tree | 517bcc8f9e818a8b2ca462ba12ab68de6c03412b /dev-python | |
| parent | 5f0fc6fbc15ce7502699d2bb33e10295ff9e91f5 (diff) | |
| download | gentoo-477aafa924f9c3513c0f5527bb5ec19b0d1e403d.tar.gz gentoo-477aafa924f9c3513c0f5527bb5ec19b0d1e403d.tar.bz2 gentoo-477aafa924f9c3513c0f5527bb5ec19b0d1e403d.zip | |
dev-python/pygccxml: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/pygccxml/Manifest | 2 | ||||
| -rw-r--r-- | dev-python/pygccxml/files/pygccxml-2.6.1-xml_generator.patch | 9 | ||||
| -rw-r--r-- | dev-python/pygccxml/pygccxml-2.6.1.ebuild | 70 | ||||
| -rw-r--r-- | dev-python/pygccxml/pygccxml-3.0.0.ebuild | 46 |
4 files changed, 0 insertions, 127 deletions
diff --git a/dev-python/pygccxml/Manifest b/dev-python/pygccxml/Manifest index 7e02ba97b661..16b7fb2b83a2 100644 --- a/dev-python/pygccxml/Manifest +++ b/dev-python/pygccxml/Manifest @@ -1,3 +1 @@ -DIST pygccxml-2.6.1.gh.tar.gz 3154561 BLAKE2B 95fb9df63f4175eab707211cb14d178437928ddad76eeb416d8cf4a48b29c211d80ba55533deb0a12e6bad4435df9bf82a1321b37cdc8db39d217f2995d1215e SHA512 b0ccd12b50d93287189fa86be6e11f44e28869045e6d7f6f84f34220cea642fc267eee150fe544bb54839b7f467f64af4a6025c84b94df7793645f2d444ae60d -DIST pygccxml-3.0.0.gh.tar.gz 3155557 BLAKE2B a485f5b25d724c0c67a4a6108b298ecf5da9bd3fd365f513ce424239d3e94d76a88cdc1b7839fd69b5dc897a3e7e4f86721a8411ca9c6faa37da9edae509d387 SHA512 061150cabbe3eb8853dcd48be91d741f7af405f6682bd6a6000e83bf5c5da8ed572467131f98234158f86deac6c8881736fa47b6a89149edbe10c00729e863b5 DIST pygccxml-3.0.2.gh.tar.gz 3156023 BLAKE2B add33e230db83cadd5fd394e7e65c8815227abb3d5f86e76c54bcbc13ba52ffa55698d98785802ac51d9396f009972a093476e489280548469d5000aff8aa010 SHA512 d94b9175bd88bc92d039b758e2052d3c72e510cc381cbd974d670ff6cc06f80f7918bcd8da06efd82729d294e0972cee60690c7b0e24ab2c62a53c366bae9fb5 diff --git a/dev-python/pygccxml/files/pygccxml-2.6.1-xml_generator.patch b/dev-python/pygccxml/files/pygccxml-2.6.1-xml_generator.patch deleted file mode 100644 index 1daf9e7afbf1..000000000000 --- a/dev-python/pygccxml/files/pygccxml-2.6.1-xml_generator.patch +++ /dev/null @@ -1,9 +0,0 @@ -diff --git a/tests/xml_generator.cfg b/tests/xml_generator.cfg -new file mode 100644 -index 0000000..44aea50 ---- /dev/null -+++ b/tests/xml_generator.cfg -@@ -0,0 +1,3 @@ -+[xml_generator] -+cflags="-std=c++14" -+ diff --git a/dev-python/pygccxml/pygccxml-2.6.1.ebuild b/dev-python/pygccxml/pygccxml-2.6.1.ebuild deleted file mode 100644 index e9b0df552297..000000000000 --- a/dev-python/pygccxml/pygccxml-2.6.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) - -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} -" - -distutils_enable_tests pytest -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme - -EPYTEST_DESELECT=( - # fails with >=gcc-14 - # with 'unable to find actual class definition 'type'' - tests/test_cached_source_file.py - tests/test_core.py - tests/test_cpp_standards.py - tests/test_decl_printer.py - tests/test_declarations_comparison.py - tests/test_file_cache.py - tests/test_non_copyable_recursive.py - tests/test_null_comparison.py - tests/test_overrides.py - tests/test_pattern_parser.py::test_template_split_std_vector - tests/test_project_reader_correctness.py - tests/test_xmlfile_reader.py - - tests/test_example.py - - # spaces inside < > - tests/test_variable_matcher.py::test_no_defaults - tests/test_vector_traits.py::test_element_type - tests/test_remove_template_defaults.py - tests/test_find_container_traits.py -) - -python_prepare_all() { - local PATCHES=( - # force -std=c++14 as default for tests because of errors due to - # test files with dynamic exception specification - "${FILESDIR}/${PN}-2.6.1-xml_generator.patch" - "${FILESDIR}/${PN}-2.4.0-doc.patch" - ) - - distutils-r1_python_prepare_all -} diff --git a/dev-python/pygccxml/pygccxml-3.0.0.ebuild b/dev-python/pygccxml/pygccxml-3.0.0.ebuild deleted file mode 100644 index a9410da95bbd..000000000000 --- a/dev-python/pygccxml/pygccxml-3.0.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) - -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} -" - -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 -} |
