summaryrefslogtreecommitdiff
path: root/dev-python/pycollada
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pycollada')
-rw-r--r--dev-python/pycollada/Manifest1
-rw-r--r--dev-python/pycollada/metadata.xml26
-rw-r--r--dev-python/pycollada/pycollada-0.9.3.ebuild53
3 files changed, 0 insertions, 80 deletions
diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
deleted file mode 100644
index db88347a4478..000000000000
--- a/dev-python/pycollada/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pycollada-0.9.3.gh.tar.gz 3589631 BLAKE2B b772faee496d8b1b36df86c0b129743b84e4c4faa4a7c3fc221b14d086c6d67616e0d8f609289844add498751fabf51a782abeb0d1abe4fc3339bc7f7638b5f3 SHA512 ffd73d130c797ddc25a660a33c1d8957d826af2423b76200f82e73454d02184628728d3c2dc6980c2235f69e14f1c563c8da4946a8328f8827692d30d19326e9
diff --git a/dev-python/pycollada/metadata.xml b/dev-python/pycollada/metadata.xml
deleted file mode 100644
index 11dc00fdfffa..000000000000
--- a/dev-python/pycollada/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>waebbl-gentoo@posteo.net</email>
- <name>Bernd Waibel</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches/>
- <longdescription>
- A python module for creating, editing and loading COLLADA, which is a
- COLLAborative Design Activity for establishing an interchange file format
- for interactive 3D applications.
- </longdescription>
- <upstream>
- <remote-id type="github">pycollada/pycollada</remote-id>
- <remote-id type="pypi">pycollada</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pycollada/pycollada-0.9.3.ebuild b/dev-python/pycollada/pycollada-0.9.3.ebuild
deleted file mode 100644
index 664c9b138731..000000000000
--- a/dev-python/pycollada/pycollada-0.9.3.ebuild
+++ /dev/null
@@ -1,53 +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="Python library for reading and writing COLLADA documents"
-HOMEPAGE="
- https://pycollada.readthedocs.io/
- https://github.com/pycollada/pycollada/
- https://pypi.org/project/pycollada/
-"
-SRC_URI="
- https://github.com/pycollada/pycollada/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~x86"
-IUSE="examples"
-
-RDEPEND="
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-DOCS=( AUTHORS.md COPYING README.markdown )
-
-distutils_enable_sphinx docs
-distutils_enable_tests unittest
-
-python_install_all() {
- if use examples ; then
- insinto /usr/share/${PF}/
- doins -r examples
- fi
-
- distutils-r1_python_install_all
-}
-
-python_install() {
- distutils-r1_python_install
-
- # ensure data files for tests are getting installed too
- python_moduleinto collada/tests/
- python_domodule collada/tests/data
-}