From ecdac123787b96ce6649f0f91da12ea6458cc2b1 Mon Sep 17 00:00:00 2001 From: Palica Date: Tue, 23 Jun 2020 22:35:08 +0200 Subject: Updating liguros repo --- dev-python/pycollada/Manifest | 1 + dev-python/pycollada/metadata.xml | 21 ++++++++++++++ dev-python/pycollada/pycollada-0.7.1.ebuild | 45 +++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 dev-python/pycollada/Manifest create mode 100644 dev-python/pycollada/metadata.xml create mode 100644 dev-python/pycollada/pycollada-0.7.1.ebuild (limited to 'dev-python/pycollada') diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest new file mode 100644 index 000000000000..3ba357d17709 --- /dev/null +++ b/dev-python/pycollada/Manifest @@ -0,0 +1 @@ +DIST pycollada-0.7.1.tar.gz 3526373 BLAKE2B 9adcbff206bc856fce1eef1784734c5604800cff350d32a83d53a4eaf965673adac797f510662dffc70fcfd76a7102fdb9321ead89d765954ffccc9338df446a SHA512 ac4d88b2398bf0364beaaf3e2e468be9131dc0f8088bfce8be18d9eb5a7c093db84a364931884fa7c493dfae81036ec63bc7c689ebf49e961eefc0c4853a0131 diff --git a/dev-python/pycollada/metadata.xml b/dev-python/pycollada/metadata.xml new file mode 100644 index 000000000000..27eb0e5d2b22 --- /dev/null +++ b/dev-python/pycollada/metadata.xml @@ -0,0 +1,21 @@ + + + + + waebbl@gmail.com + Bernd Waibel + + + proxy-maint@gentoo.org + Proxy Maintainers + + +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. + + + pycollada/pycollada + + gentoo-staging + diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild b/dev-python/pycollada/pycollada-0.7.1.ebuild new file mode 100644 index 000000000000..034743cccba5 --- /dev/null +++ b/dev-python/pycollada/pycollada-0.7.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Python library for reading and writing COLLADA documents" +HOMEPAGE="https://pycollada.readthedocs.org/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +RDEPEND=" + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.2[${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 +} -- cgit v1.3.1