summaryrefslogtreecommitdiff
path: root/dev-python/pycollada
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-01 07:00:58 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-01 07:00:58 +0000
commit74755341b8504dc85ac08673144c0ec341b3a166 (patch)
tree2da80e68abe47dc35b22c6d7ff8a62ed27cd8c10 /dev-python/pycollada
parent7b2acbd09b9a228fb8beb66196f0323e1fde0dda (diff)
downloadbaldeagleos-repo-74755341b8504dc85ac08673144c0ec341b3a166.tar.gz
baldeagleos-repo-74755341b8504dc85ac08673144c0ec341b3a166.tar.xz
baldeagleos-repo-74755341b8504dc85ac08673144c0ec341b3a166.zip
Adding metadata
Diffstat (limited to 'dev-python/pycollada')
-rw-r--r--dev-python/pycollada/Manifest1
-rw-r--r--dev-python/pycollada/pycollada-0.9.2.ebuild53
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 407e5ffe1b82..5b30b3c4fd28 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1,2 @@
+DIST pycollada-0.9.2.gh.tar.gz 3587740 BLAKE2B 72b54c4ddc1931223d754c632ae26ccc366268bf6de5b2011c3cf55030b981835353a6d389ec914a514e05cc990551ddee5e7504feaa733ad33a9e17a45ada5a SHA512 7db4b23eebd7c9d4394e4d8bd096345b080c63205a3a856cc77da8f3a6577a1a4165b9a4ca65f19ff8f9cce62f86310975d50d5db94d46ba72ea9e83d807a27d
DIST pycollada-0.9.gh.tar.gz 3587769 BLAKE2B 0b0cbb7b99e90e6a51958f0ff98a50caff2fdeb5f96ff7f8d46be1b8dee20a738e2a2d480785a772e391f2730820b1720ffd9880e14505ea6d2d9b4d95e0f711 SHA512 5ce2833ef5b823139b8ceca17a70dd22c02562cd58b38c88cad4e7b06ea9eb3842073c4e1e97c37b83e3798288fc016fd6244baf5cce183989edaf0c35eca3aa
diff --git a/dev-python/pycollada/pycollada-0.9.2.ebuild b/dev-python/pycollada/pycollada-0.9.2.ebuild
new file mode 100644
index 000000000000..0099f372e561
--- /dev/null
+++ b/dev-python/pycollada/pycollada-0.9.2.ebuild
@@ -0,0 +1,53 @@
+# 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_{11..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
+}