[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/files/, dev-python/pycollada/

2024-05-24 Thread Michał Górny
commit: 62450f869d71631ddf1f11dbce2b687f90f081ef
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 24 09:32:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 24 11:09:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62450f86

dev-python/pycollada: Fix compatibility with >=dev-python/numpy-2

Closes: https://bugs.gentoo.org/932518
Signed-off-by: Michał Górny  gentoo.org>

 .../pycollada/files/pycollada-0.8-numpy-2.patch| 76 ++
 ...ycollada-0.8.ebuild => pycollada-0.8-r1.ebuild} |  5 ++
 2 files changed, 81 insertions(+)

diff --git a/dev-python/pycollada/files/pycollada-0.8-numpy-2.patch 
b/dev-python/pycollada/files/pycollada-0.8-numpy-2.patch
new file mode 100644
index ..4ffb80a8b61e
--- /dev/null
+++ b/dev-python/pycollada/files/pycollada-0.8-numpy-2.patch
@@ -0,0 +1,76 @@
+From 2049c3625bef06ba5fad8169c042cbdb3641b4d1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Fri, 24 May 2024 11:27:57 +0200
+Subject: [PATCH] Fix tests with NumPy 2.0
+
+Replace the deprecated `string_` and `unicode_` aliases with the modern
+`bytes_` and `str_` replacements to fix compatibility with NumPy 2.0.
+This change does not change anything for NumPy 1.x where both types
+are aliases to each other.
+---
+ collada/source.py| 4 ++--
+ collada/tests/test_source.py | 8 
+ 2 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/collada/source.py b/collada/source.py
+index e7c7a06..6a0e715 100644
+--- a/collada/source.py
 b/collada/source.py
+@@ -318,7 +318,7 @@ def load(collada, localscope, node):
+ values = [v for v in arraynode.text.split()]
+ except ValueError:
+ raise DaeMalformedError('Corrupted IDREF array')
+-data = numpy.array(values, dtype=numpy.unicode_)
++data = numpy.array(values, dtype=numpy.str_)
+ paramnodes = node.findall('%s/%s/%s' % 
(collada.tag('technique_common'), collada.tag('accessor'), 
collada.tag('param')))
+ if not paramnodes:
+ raise DaeIncompleteError('No accessor info in source node')
+@@ -425,7 +425,7 @@ def load(collada, localscope, node):
+ values = [v for v in arraynode.text.split()]
+ except ValueError:
+ raise DaeMalformedError('Corrupted Name array')
+-data = numpy.array(values, dtype=numpy.unicode_)
++data = numpy.array(values, dtype=numpy.str_)
+ paramnodes = node.findall('%s/%s/%s' % (tag('technique_common'), 
tag('accessor'), tag
+ ('param')))
+ if not paramnodes:
+diff --git a/collada/tests/test_source.py b/collada/tests/test_source.py
+index 9ec0529..81dda61 100644
+--- a/collada/tests/test_source.py
 b/collada/tests/test_source.py
+@@ -31,7 +31,7 @@ def test_float_source_saving(self):
+ 
+ def test_idref_source_saving(self):
+ idrefsource = collada.source.IDRefSource("myidrefsource",
+- numpy.array(['Ref1', 
'Ref2'], dtype=numpy.string_),
++ numpy.array(['Ref1', 
'Ref2'], dtype=numpy.bytes_),
+  ('MORPH_TARGET',))
+ self.assertEqual(idrefsource.id, "myidrefsource")
+ self.assertEqual(len(idrefsource), 2)
+@@ -39,7 +39,7 @@ def test_idref_source_saving(self):
+ self.assertIsNotNone(str(idrefsource))
+ idrefsource.id = "youridrefsource"
+ idrefsource.components = ('JOINT_TARGET', 'WHATEVER_TARGET')
+-idrefsource.data = numpy.array(['Ref5', 'Ref6', 'Ref7', 'Ref8', 
'Ref9', 'Ref10'], dtype=numpy.string_)
++idrefsource.data = numpy.array(['Ref5', 'Ref6', 'Ref7', 'Ref8', 
'Ref9', 'Ref10'], dtype=numpy.bytes_)
+ idrefsource.save()
+ loaded_idrefsource = collada.source.Source.load(self.dummy, {}, 
fromstring(tostring(idrefsource.xmlnode)))
+ self.assertTrue(isinstance(loaded_idrefsource, 
collada.source.IDRefSource))
+@@ -49,7 +49,7 @@ def test_idref_source_saving(self):
+ 
+ def test_name_source_saving(self):
+ namesource = collada.source.NameSource("mynamesource",
+-   numpy.array(['Name1', 
'Name2'], dtype=numpy.string_),
++   numpy.array(['Name1', 
'Name2'], dtype=numpy.bytes_),
+('JOINT',))
+ self.assertEqual(namesource.id, "mynamesource")
+ self.assertEqual(len(namesource), 2)
+@@ -57,7 +57,7 @@ def test_name_source_saving(self):
+ self.assertIsNotNone(str(namesource))
+ namesource.id = "yournamesource"
+ namesource.components = ('WEIGHT', 'WHATEVER')
+-namesource.data = numpy.array(['Name1', 'Name2', 'Name3', 'Name4', 
'Name5', 'Name6'], dtype=numpy.string_)
++namesource.data = 

[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2024-05-24 Thread Michał Górny
commit: 23aa2d70d5961c2abdec1d9e40f47d9efd31d1bb
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 24 09:32:56 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 24 11:09:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23aa2d70

dev-python/pycollada: Enable py3.13

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/pycollada-0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.8-r1.ebuild 
b/dev-python/pycollada/pycollada-0.8-r1.ebuild
index d565b4949a52..6468d680d9fc 100644
--- a/dev-python/pycollada/pycollada-0.8-r1.ebuild
+++ b/dev-python/pycollada/pycollada-0.8-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2024-01-24 Thread Michał Górny
commit: 5e7ff74060bc9c134779f8b21955c47d478e1ac2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 24 19:06:53 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 24 19:06:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7ff740

dev-python/pycollada: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest  |  1 -
 dev-python/pycollada/pycollada-0.7.2-r1.ebuild | 53 --
 2 files changed, 54 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index ed7aac9deaa9..eaa16dee4e15 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1,2 +1 @@
-DIST pycollada-0.7.2.gh.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe
 DIST pycollada-0.8.gh.tar.gz 3586706 BLAKE2B 
533a2a309b4c7ee60671edfd241b80e7128330b2cd85d2707fc4f83b0aceb2d792d8efec77f9a6a8600eec0704878a4342449fde68f77e42617eff30965973a5
 SHA512 
7171469b8434a7c24ec2ebadefa9ad5268382659cb5b2b3712cf0ba73c7948e7fa4061ecfa02001862c76e1139293ab68cf42547348e28efa28bc75f844f

diff --git a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild 
b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
deleted file mode 100644
index 00bd5d36083b..
--- a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-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-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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2024-01-24 Thread Michał Górny
commit: d49072ebe55813015c5b80bd9b5d884930a74df7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 24 19:05:39 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 24 19:05:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49072eb

dev-python/pycollada: Stabilize 0.8 ALLARCHES, #922843

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/pycollada-0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.8.ebuild 
b/dev-python/pycollada/pycollada-0.8.ebuild
index 396c0f814d49..6b416a491a78 100644
--- a/dev-python/pycollada/pycollada-0.8.ebuild
+++ b/dev-python/pycollada/pycollada-0.8.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2024-01-07 Thread Michał Górny
commit: ceebbab1dd48e9c2acd5161dd5d2318d43d24ac0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  8 03:25:59 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  8 03:47:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceebbab1

dev-python/pycollada: Bump to 0.8

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest |  1 +
 dev-python/pycollada/pycollada-0.8.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 6771f0d627b1..ed7aac9deaa9 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1,2 @@
 DIST pycollada-0.7.2.gh.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe
+DIST pycollada-0.8.gh.tar.gz 3586706 BLAKE2B 
533a2a309b4c7ee60671edfd241b80e7128330b2cd85d2707fc4f83b0aceb2d792d8efec77f9a6a8600eec0704878a4342449fde68f77e42617eff30965973a5
 SHA512 
7171469b8434a7c24ec2ebadefa9ad5268382659cb5b2b3712cf0ba73c7948e7fa4061ecfa02001862c76e1139293ab68cf42547348e28efa28bc75f844f

diff --git a/dev-python/pycollada/pycollada-0.8.ebuild 
b/dev-python/pycollada/pycollada-0.8.ebuild
new file mode 100644
index ..396c0f814d49
--- /dev/null
+++ b/dev-python/pycollada/pycollada-0.8.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+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-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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2023-11-24 Thread Arthur Zamarin
commit: 823399c7149c2e08e7caff9da343e43a67c00db5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov 24 15:45:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov 24 15:45:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823399c7

dev-python/pycollada: Stabilize 0.7.2-r1 arm64, #918313

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pycollada/pycollada-0.7.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild 
b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
index 5773a6526984..00bd5d36083b 100644
--- a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2023-11-22 Thread Michał Górny
commit: c42748dc4920e5f5394073e60b65010329c2a91a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 22 14:29:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 22 14:30:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42748dc

dev-python/pycollada: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest   |  1 -
 dev-python/pycollada/pycollada-0.7.2.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index fb5860e6ef32..6771f0d627b1 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1,2 +1 @@
 DIST pycollada-0.7.2.gh.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe
-DIST pycollada-0.7.2.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe

diff --git a/dev-python/pycollada/pycollada-0.7.2.ebuild 
b/dev-python/pycollada/pycollada-0.7.2.ebuild
deleted file mode 100644
index a34c60185bcb..
--- a/dev-python/pycollada/pycollada-0.7.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing COLLADA documents"
-HOMEPAGE="https://pycollada.readthedocs.io/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.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-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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2023-11-22 Thread Arthur Zamarin
commit: 6d91316208d2d250cb3efaff773347dca108515c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 22 13:11:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 22 13:11:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d913162

dev-python/pycollada: Stabilize 0.7.2-r1 ALLARCHES, #917719

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pycollada/pycollada-0.7.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild 
b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
index 82a1f408170a..5773a6526984 100644
--- a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2023-10-20 Thread Michał Górny
commit: 319ef622995fa90a059088dbd9583dba33e770d1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 20 13:41:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 20 13:42:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319ef622

dev-python/pycollada: Modernize, PEP517, py3.12

Closes: https://bugs.gentoo.org/909936
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest  |  1 +
 dev-python/pycollada/pycollada-0.7.2-r1.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index f79df3dbbbf4..fb5860e6ef32 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1,2 @@
+DIST pycollada-0.7.2.gh.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe
 DIST pycollada-0.7.2.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe

diff --git a/dev-python/pycollada/pycollada-0.7.2-r1.ebuild 
b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
new file mode 100644
index ..82a1f408170a
--- /dev/null
+++ b/dev-python/pycollada/pycollada-0.7.2-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+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-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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2022-09-22 Thread Marek Szuba
commit: e1d7960a1ebc4511330e2a4f2b5a068382a818bc
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Sep 22 11:30:59 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Sep 22 14:29:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d7960a

dev-python/pycollada: enable py3.11

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/pycollada/pycollada-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.7.2.ebuild 
b/dev-python/pycollada/pycollada-0.7.2.ebuild
index c04b5fb114c6..10420926170d 100644
--- a/dev-python/pycollada/pycollada-0.7.2.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 inherit distutils-r1
 
 DESCRIPTION="Python library for reading and writing COLLADA documents"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2022-06-04 Thread Michał Górny
commit: adfc8b4f5078ee32780a6ec2ffb104689fc183f5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun  5 05:38:22 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun  5 05:40:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adfc8b4f

dev-python/pycollada: Add python@ as co-maint.

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index 75c1b17e5e5d..11dc00fdfffa 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -9,6 +9,10 @@
 proxy-ma...@gentoo.org
 Proxy Maintainers
   
+  
+pyt...@gentoo.org
+Python
+  
   
   
   A python module for creating, editing and loading COLLADA, which is a



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2022-03-10 Thread Jakov Smolić
commit: 67199657861454fc594d9700b83f42ef84abaaae
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 10 21:20:50 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 10 21:20:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67199657

dev-python/pycollada: Stabilize 0.7.2 amd64, #834389

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/pycollada/pycollada-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.7.2.ebuild 
b/dev-python/pycollada/pycollada-0.7.2.ebuild
index 443636e1bf51..c04b5fb114c6 100644
--- a/dev-python/pycollada/pycollada-0.7.2.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2022-02-11 Thread Arthur Zamarin
commit: 41f296b6313e3c80e10693b9917a2410541fdaa2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 11 20:25:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 11 20:25:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f296b6

dev-python/pycollada: Keyword 0.7.2 arm64, #833120

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pycollada/pycollada-0.7.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycollada/pycollada-0.7.2.ebuild 
b/dev-python/pycollada/pycollada-0.7.2.ebuild
index d219b4090d8f..443636e1bf51 100644
--- a/dev-python/pycollada/pycollada-0.7.2.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-11-14 Thread Michał Górny
commit: db0b1ce96ceaecceafbd416fc26bceda997c5959
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 14 09:26:06 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 14 09:28:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0b1ce9

dev-python/pycollada: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest   |  1 -
 dev-python/pycollada/pycollada-0.7.1.ebuild | 45 -
 2 files changed, 46 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index f76004ad45f2..f79df3dbbbf4 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1,2 +1 @@
-DIST pycollada-0.7.1.tar.gz 3526373 BLAKE2B 
9adcbff206bc856fce1eef1784734c5604800cff350d32a83d53a4eaf965673adac797f510662dffc70fcfd76a7102fdb9321ead89d765954ffccc9338df446a
 SHA512 
ac4d88b2398bf0364beaaf3e2e468be9131dc0f8088bfce8be18d9eb5a7c093db84a364931884fa7c493dfae81036ec63bc7c689ebf49e961eefc0c4853a0131
 DIST pycollada-0.7.2.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe

diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild 
b/dev-python/pycollada/pycollada-0.7.1.ebuild
deleted file mode 100644
index 895b64d55b5d..
--- a/dev-python/pycollada/pycollada-0.7.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing COLLADA documents"
-HOMEPAGE="https://pycollada.readthedocs.io/;
-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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-11-13 Thread Michał Górny
commit: dd06e2c0ccb69d87c3384c0fc696b980f4baf1dd
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 13 07:36:01 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 13 09:37:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd06e2c0

dev-python/pycollada: Bump to 0.7.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/Manifest   |  1 +
 dev-python/pycollada/pycollada-0.7.2.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 3ba357d1770..f76004ad45f 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1,2 @@
 DIST pycollada-0.7.1.tar.gz 3526373 BLAKE2B 
9adcbff206bc856fce1eef1784734c5604800cff350d32a83d53a4eaf965673adac797f510662dffc70fcfd76a7102fdb9321ead89d765954ffccc9338df446a
 SHA512 
ac4d88b2398bf0364beaaf3e2e468be9131dc0f8088bfce8be18d9eb5a7c093db84a364931884fa7c493dfae81036ec63bc7c689ebf49e961eefc0c4853a0131
+DIST pycollada-0.7.2.tar.gz 3526845 BLAKE2B 
3d8b4d2478fa4937756db69afbd8716ccd2dd4e0bec8e7dc045e84f06573605c0872d31bdee3d6ccca4b800699746877530f2fa81b5790c3f5c0cb3e7583fa66
 SHA512 
5c21155d52d54de62d192d4da0385bc7110ddd3962fe3e0e9e5904bbcd0e66cb1a95765c9996cdc5beef0edb30ee2123ae23b904d029be1c119e902d2fc4e7fe

diff --git a/dev-python/pycollada/pycollada-0.7.2.ebuild 
b/dev-python/pycollada/pycollada-0.7.2.ebuild
new file mode 100644
index 000..d219b4090d8
--- /dev/null
+++ b/dev-python/pycollada/pycollada-0.7.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing COLLADA documents"
+HOMEPAGE="https://pycollada.readthedocs.io/;
+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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-10-12 Thread Arthur Zamarin
commit: 5852ae3480c798084febf0d4e8ce1163abd2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Oct 12 15:52:58 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Oct 12 17:22:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5852accc

dev-python/pycollada: enable py3.10

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pycollada/pycollada-0.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild 
b/dev-python/pycollada/pycollada-0.7.1.ebuild
index 95554b5dbc4..895b64d55b5 100644
--- a/dev-python/pycollada/pycollada-0.7.1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.1.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-03-16 Thread Michał Górny
commit: ba8f49b8f603f01c1f0128de09f6b440291ef638
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 16 14:08:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 16 16:42:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8f49b8

dev-python/pycollada: metadata.xml, description → name

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index 9a21cf4eec8..73b12ba6c1e 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -7,7 +7,7 @@
   
   
 proxy-ma...@gentoo.org
-Proxy Maintainers
+Proxy Maintainers
   
   
   



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-03-12 Thread Joonas Niilola
commit: 01cf891b432f40e067c161ab574714b987a2b485
Author: Bernd Waibel  posteo  net>
AuthorDate: Fri Mar 12 19:31:27 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Mar 13 07:30:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01cf891b

dev-python/pycollada: add support for python 3.9

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Bernd Waibel  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/19899
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/pycollada-0.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild 
b/dev-python/pycollada/pycollada-0.7.1.ebuild
index d6e0f56b03d..95554b5dbc4 100644
--- a/dev-python/pycollada/pycollada-0.7.1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-03-12 Thread Joonas Niilola
commit: c9dc2aee50082d44e2c3290eab9464b1b7900788
Author: Bernd Waibel  posteo  net>
AuthorDate: Fri Mar 12 19:22:53 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Mar 13 07:30:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9dc2aee

dev-python/pycollada: add allarches to metadata

Adding stabilize-allarches tag to metadata.xml, following
a call from Sam in gentoo-dev.

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/metadata.xml | 35 ++-
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index 83b01daab49..bff7b286e7f 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -1,21 +1,22 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   waebbl-gen...@posteo.net
-   Bernd Waibel
-   
-   
-   proxy-ma...@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
-   pycollada
-   
+  
+waebbl-gen...@posteo.net
+Bernd Waibel
+  
+  
+proxy-ma...@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
+pycollada
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2021-02-07 Thread Conrad Kostecki
commit: 5f3f5b036ab09f5fb75d06c1e56657a0971a48ea
Author: Bernd Waibel  posteo  net>
AuthorDate: Sun Feb  7 16:09:36 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Feb  7 17:07:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f3f5b03

dev-python/pycollada: fix metadata email

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-python/pycollada/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index d6b750a874e..83b01daab49 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   wae...@gmail.com
+   waebbl-gen...@posteo.net
Bernd Waibel





[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2020-12-11 Thread Michał Górny
commit: 5e6708f4211263f260748ec29d3a41c728d9157b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 11 14:58:56 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 11 15:01:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e6708f4

dev-python/pycollada: Update HOMEPAGE

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/metadata.xml   | 25 +
 dev-python/pycollada/pycollada-0.7.1.ebuild |  2 +-
 2 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index e0cc39c3268..d6b750a874e 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -1,20 +1,21 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   wae...@gmail.com
-   Bernd Waibel
-
-
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-
-
+   
+   wae...@gmail.com
+   Bernd Waibel
+   
+   
+   proxy-ma...@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
-
+   
+   pycollada/pycollada
+   pycollada
+   
 

diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild 
b/dev-python/pycollada/pycollada-0.7.1.ebuild
index 034743cccba..09a5b6a47e8 100644
--- a/dev-python/pycollada/pycollada-0.7.1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8} )
 inherit distutils-r1
 
 DESCRIPTION="Python library for reading and writing COLLADA documents"
-HOMEPAGE="https://pycollada.readthedocs.org/;
+HOMEPAGE="https://pycollada.readthedocs.io/;
 SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2020-04-21 Thread Joonas Niilola
commit: 1fb95da94a77f9c4e3ad4370412813f6d93f5cbd
Author: Bernd Waibel  gmail  com>
AuthorDate: Fri Apr 17 13:36:31 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Apr 21 08:16:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb95da9

dev-python/pycollada: bump to 0.7.1

Closes: https://bugs.gentoo.org/717566
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bernd Waibel  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/Manifest   |  1 +
 dev-python/pycollada/metadata.xml   |  5 ++--
 dev-python/pycollada/pycollada-0.7.1.ebuild | 45 +
 3 files changed, 49 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 1b273279a3a..47d5abe8cb1 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1,2 @@
 DIST pycollada-0.6.tar.gz 3109963 BLAKE2B 
92e9b3a28c959700fad4f4af1c6375f47b1a3cabb4ff3b8eec47a5625bd680d7088b7c9677e0d395f3be296d555996e5e5819f11ab82a0fa37b0c6fbec33795f
 SHA512 
043eaafbd97a588897870e89202e281777094e4bf63ea56a979b6f7aef7ad549fc2b71f3b575c0b9c413bc10756ba36e02cc7cbd497a6cbaa51f06e99b34f0cd
+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
index 04ffb3bbb4c..e0cc39c3268 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -10,8 +10,9 @@
Proxy Maintainers
 
 
-A python COLLADA library, which can be used to create, edit and load
-COLLADA documents.
+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

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 000..9e07aa9cc4f
--- /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/${P}/
+   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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2020-04-21 Thread Joonas Niilola
commit: 89d2a6c1a58b5ae9b2220b8553964973271df320
Author: Bernd Waibel  gmail  com>
AuthorDate: Fri Apr 17 13:39:02 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Apr 21 08:16:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d2a6c1

dev-python/pycollada: drop old 0.6.1

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bernd Waibel  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15384
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/Manifest|  1 -
 dev-python/pycollada/pycollada-0.6-r1.ebuild | 63 
 2 files changed, 64 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 47d5abe8cb1..3ba357d1770 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1,2 +1 @@
-DIST pycollada-0.6.tar.gz 3109963 BLAKE2B 
92e9b3a28c959700fad4f4af1c6375f47b1a3cabb4ff3b8eec47a5625bd680d7088b7c9677e0d395f3be296d555996e5e5819f11ab82a0fa37b0c6fbec33795f
 SHA512 
043eaafbd97a588897870e89202e281777094e4bf63ea56a979b6f7aef7ad549fc2b71f3b575c0b9c413bc10756ba36e02cc7cbd497a6cbaa51f06e99b34f0cd
 DIST pycollada-0.7.1.tar.gz 3526373 BLAKE2B 
9adcbff206bc856fce1eef1784734c5604800cff350d32a83d53a4eaf965673adac797f510662dffc70fcfd76a7102fdb9321ead89d765954ffccc9338df446a
 SHA512 
ac4d88b2398bf0364beaaf3e2e468be9131dc0f8088bfce8be18d9eb5a7c093db84a364931884fa7c493dfae81036ec63bc7c689ebf49e961eefc0c4853a0131

diff --git a/dev-python/pycollada/pycollada-0.6-r1.ebuild 
b/dev-python/pycollada/pycollada-0.6-r1.ebuild
deleted file mode 100644
index b1249b836a2..000
--- a/dev-python/pycollada/pycollada-0.6-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-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="doc examples test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.2[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? ( ${RDEPEND} )
-"
-
-DOCS=( AUTHORS.md CHANGELOG.rst COPYING README.markdown )
-
-python_compile_all() {
-   if use doc ; then
-   pushd docs > /dev/null || die
-   emake html
-   popd > /dev/null || die
-   fi
-}
-
-python_install_all() {
-   if use examples ; then
-   insinto /usr/share/${P}/
-   doins -r examples
-   fi
-
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   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
-}
-
-python_test() {
-   "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2020-04-21 Thread Joonas Niilola
commit: e90e330caac1018ae7079db2eb3bc73a02830ed7
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Apr 21 07:31:37 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Apr 21 08:16:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90e330c

dev-python/pycollada: fix docdir path

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/pycollada-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild 
b/dev-python/pycollada/pycollada-0.7.1.ebuild
index 9e07aa9cc4f..034743cccba 100644
--- a/dev-python/pycollada/pycollada-0.7.1.ebuild
+++ b/dev-python/pycollada/pycollada-0.7.1.ebuild
@@ -29,7 +29,7 @@ distutils_enable_tests unittest
 
 python_install_all() {
if use examples ; then
-   insinto /usr/share/${P}/
+   insinto /usr/share/${PF}/
doins -r examples
fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2019-08-18 Thread Joonas Niilola
commit: 4af779aaf591fb57d4e381e75c4dbde7f77be023
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Aug 18 10:51:21 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Aug 18 11:56:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4af779aa

dev-python/pycollada: drop old

Drop obsolete 0.6 ebuild.

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Bernd Waibel  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12739
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pycollada/pycollada-0.6.ebuild | 69 ---
 1 file changed, 69 deletions(-)

diff --git a/dev-python/pycollada/pycollada-0.6.ebuild 
b/dev-python/pycollada/pycollada-0.6.ebuild
deleted file mode 100644
index 1cd5c01d2d9..000
--- a/dev-python/pycollada/pycollada-0.6.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-PYTHON_MULTIPLE_ABI=1
-
-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="doc examples test"
-
-RDEPEND="
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.2[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? ( dev-python/python-dateutil[${PYTHON_USEDEP}] )
-"
-
-REQUIRED_USE="${PYTHON_REQ_USE}"
-
-DOCS=( AUTHORS.md CHANGELOG.rst COPYING README.markdown )
-
-src_compile() {
-   distutils-r1_src_compile
-
-   if use doc ; then
-   pushd docs > /dev/null || die
-   emake html
-   popd > /dev/null || die
-   fi
-}
-
-src_install() {
-   distutils-r1_src_install
-
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-   einstalldocs
-
-   if use examples ; then
-   insinto /usr/share/${P}/
-   doins -r examples
-   fi
-
-   install_test_data() {
-   insinto $(python_get_sitedir)/collada/tests/
-   doins -r collada/tests/data
-   }
-   python_foreach_impl install_test_data
-}
-
-src_test() {
-   test_collada() {
-   for script in "${S}"/collada/tests/*.py ; do
-   PYTHONPATH="${S}" $EPYTHON "${script}"
-   done
-   }
-   python_foreach_impl test_collada
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2019-07-15 Thread Michał Górny
commit: 5343faf039addea236c6979cb65e5f4b259f862b
Author: Bernd Waibel  gmail  com>
AuthorDate: Tue Jun 18 11:21:46 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 15 19:55:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5343faf0

dev-python/pycollada: add python-3.7 support

- Fix implementation to comply to distutils-r1 eclass.
- Install test data only once
- Guard test running with ebegin / eend
- Test only 'test_*.py' files

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Bernd Waibel  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12253
[mgorny: use unittest module to run tests]
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycollada/pycollada-0.6-r1.ebuild | 63 
 1 file changed, 63 insertions(+)

diff --git a/dev-python/pycollada/pycollada-0.6-r1.ebuild 
b/dev-python/pycollada/pycollada-0.6-r1.ebuild
new file mode 100644
index 000..47a0d743495
--- /dev/null
+++ b/dev-python/pycollada/pycollada-0.6-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+
+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="doc examples test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.2[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( ${RDEPEND} )
+"
+
+DOCS=( AUTHORS.md CHANGELOG.rst COPYING README.markdown )
+
+python_compile_all() {
+   if use doc ; then
+   pushd docs > /dev/null || die
+   emake html
+   popd > /dev/null || die
+   fi
+}
+
+python_install_all() {
+   if use examples ; then
+   insinto /usr/share/${P}/
+   doins -r examples
+   fi
+
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   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
+}
+
+python_test() {
+   "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2019-02-07 Thread Patrice Clement
commit: 824a3e45c0a79d7571267d4d525ab274a0cc2e93
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Dec 23 22:21:11 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Feb  7 23:03:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=824a3e45

dev-python/pycollada: version bump.

* remove old 0.4
* bump to EAPI 7
* add myself as maintainer (see
https://archives.gentoo.org/gentoo-dev/message/3d497dc197a35250614437572ef80e4b)

Closes: https://bugs.gentoo.org/518388
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Bernd Waibel  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10689
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/pycollada/Manifest  |  2 +-
 dev-python/pycollada/metadata.xml  | 19 ---
 .../{pycollada-0.4.ebuild => pycollada-0.6.ebuild} | 39 --
 3 files changed, 38 insertions(+), 22 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index 8b9b16a339e..1b273279a3a 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1 @@
-DIST pycollada-0.4.tar.gz 519732 BLAKE2B 
9fd9b7ca369943cb6b2d9960b343ed39a9e578bb2e94c06d5e7c027a814220b13ff66d6137371edab150befd4b4301e9cf5420385f7dd3ad72dc11a38c38afa9
 SHA512 
6e9569b858f2014aa08764d0bf328c8317b94edc91e99c2a7c97bf2355983555ea103012d6e6f197862cb3df113ca9263de18fc47edb3c60e74fa8e58b5ca8b0
+DIST pycollada-0.6.tar.gz 3109963 BLAKE2B 
92e9b3a28c959700fad4f4af1c6375f47b1a3cabb4ff3b8eec47a5625bd680d7088b7c9677e0d395f3be296d555996e5e5819f11ab82a0fa37b0c6fbec33795f
 SHA512 
043eaafbd97a588897870e89202e281777094e4bf63ea56a979b6f7aef7ad549fc2b71f3b575c0b9c413bc10756ba36e02cc7cbd497a6cbaa51f06e99b34f0cd

diff --git a/dev-python/pycollada/metadata.xml 
b/dev-python/pycollada/metadata.xml
index bf9cf589620..04ffb3bbb4c 100644
--- a/dev-python/pycollada/metadata.xml
+++ b/dev-python/pycollada/metadata.xml
@@ -1,8 +1,19 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   
-   pycollada/pycollada
-   
+
+   wae...@gmail.com
+   Bernd Waibel
+
+
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+
+
+A python COLLADA library, which can be used to create, edit and load
+COLLADA documents.
+
+
+   pycollada/pycollada
+
 

diff --git a/dev-python/pycollada/pycollada-0.4.ebuild 
b/dev-python/pycollada/pycollada-0.6.ebuild
similarity index 55%
rename from dev-python/pycollada/pycollada-0.4.ebuild
rename to dev-python/pycollada/pycollada-0.6.ebuild
index 91e85d338ac..dfbca8cf7b5 100644
--- a/dev-python/pycollada/pycollada-0.4.ebuild
+++ b/dev-python/pycollada/pycollada-0.6.ebuild
@@ -1,14 +1,14 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="7"
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 PYTHON_MULTIPLE_ABI=1
 
 inherit distutils-r1
 
-DESCRIPTION="python library for reading and writing collada documents"
-HOMEPAGE="https://pycollada.github.com/;
+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"
@@ -16,31 +16,36 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc examples test"
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx )
-   test? ( dev-python/python-dateutil )"
-RDEPEND="dev-python/numpy
-   dev-python/lxml
-   >=dev-python/python-dateutil-2.0"
+RDEPEND="
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.2[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( dev-python/python-dateutil[${PYTHON_USEDEP}] )
+"
+
+REQUIRED_USE="${PYTHON_REQ_USE}"
+
+DOCS=( AUTHORS.md CHANGELOG.rst COPYING README.markdown )
 
 src_compile() {
distutils-r1_src_compile
 
if use doc ; then
-   pushd docs
+   pushd docs > /dev/null || die
emake html
-   popd
+   popd > /dev/null || die
fi
 }
 
 src_install() {
distutils-r1_src_install
 
-   if use doc ; then
-   pushd docs/_build/html
-   dohtml -r *
-   popd
-   fi
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   einstalldocs
 
if use examples ; then
insinto /usr/share/${P}/



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2017-12-02 Thread Mike Gilbert
commit: 97e6b539b3d61ed72b32417874007107a6580d5a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec  2 15:13:03 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec  2 15:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e6b539

dev-python/pycollada: depend on setuptools

Closes: https://bugs.gentoo.org/639190
Package-Manager: Portage-2.3.15, Repoman-2.3.6_p7

 dev-python/pycollada/Manifest | 2 +-
 dev-python/pycollada/pycollada-0.4.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycollada/Manifest b/dev-python/pycollada/Manifest
index f0de7041cf8..8b9b16a339e 100644
--- a/dev-python/pycollada/Manifest
+++ b/dev-python/pycollada/Manifest
@@ -1 +1 @@
-DIST pycollada-0.4.tar.gz 519732 SHA256 
62a69cce29759900cce0400dac8796d7210de1910dad4c60d4094248c7738121 SHA512 
6e9569b858f2014aa08764d0bf328c8317b94edc91e99c2a7c97bf2355983555ea103012d6e6f197862cb3df113ca9263de18fc47edb3c60e74fa8e58b5ca8b0
 WHIRLPOOL 
ce54dcb29cab7e1d97ac8c2eaa3718182373dfa79c7647c7c46f5a2afde88bf7832f98db4a89bdfb58964ccbab041787ac17a25dabc148e963e0739bac27780e
+DIST pycollada-0.4.tar.gz 519732 BLAKE2B 
9fd9b7ca369943cb6b2d9960b343ed39a9e578bb2e94c06d5e7c027a814220b13ff66d6137371edab150befd4b4301e9cf5420385f7dd3ad72dc11a38c38afa9
 SHA512 
6e9569b858f2014aa08764d0bf328c8317b94edc91e99c2a7c97bf2355983555ea103012d6e6f197862cb3df113ca9263de18fc47edb3c60e74fa8e58b5ca8b0

diff --git a/dev-python/pycollada/pycollada-0.4.ebuild 
b/dev-python/pycollada/pycollada-0.4.ebuild
index 2f8bf970086..91e85d338ac 100644
--- a/dev-python/pycollada/pycollada-0.4.ebuild
+++ b/dev-python/pycollada/pycollada-0.4.ebuild
@@ -16,7 +16,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc examples test"
 
-DEPEND="doc? ( dev-python/sphinx )
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx )
test? ( dev-python/python-dateutil )"
 RDEPEND="dev-python/numpy
dev-python/lxml



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycollada/

2017-12-02 Thread Mike Gilbert
commit: 9af70593b03abe5cdcf98931a4f7be2ba0802181
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec  2 15:13:32 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec  2 15:13:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af70593

dev-python/pycollada: drop live ebuild

Package-Manager: Portage-2.3.15, Repoman-2.3.6_p7

 dev-python/pycollada/pycollada-.ebuild | 63 --
 1 file changed, 63 deletions(-)

diff --git a/dev-python/pycollada/pycollada-.ebuild 
b/dev-python/pycollada/pycollada-.ebuild
deleted file mode 100644
index f0b16d86345..000
--- a/dev-python/pycollada/pycollada-.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_MULTIPLE_ABI=1
-
-inherit distutils-r1 git-2
-
-DESCRIPTION="python library for reading and writing collada documents"
-HOMEPAGE="https://pycollada.github.com/;
-EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc examples test"
-
-DEPEND="doc? ( dev-python/sphinx )
-   test? ( dev-python/python-dateutil )"
-RDEPEND="dev-python/numpy
-   dev-python/lxml
-   >=dev-python/python-dateutil-2.0"
-
-src_compile() {
-   distutils-r1_src_compile
-
-   if use doc ; then
-   pushd docs
-   emake html
-   popd
-   fi
-}
-
-src_install() {
-   distutils-r1_src_install
-
-   if use doc ; then
-   pushd docs/_build/html
-   dohtml -r *
-   popd
-   fi
-
-   if use examples ; then
-   insinto /usr/share/${P}/
-   doins -r examples
-   fi
-
-   install_test_data() {
-   insinto $(python_get_sitedir)/collada/tests/
-   doins -r collada/tests/data
-   }
-   python_foreach_impl install_test_data
-}
-
-src_test() {
-   test_collada() {
-   for script in "${S}"/collada/tests/*.py ; do
-   PYTHONPATH="${S}" $EPYTHON "${script}"
-   done
-   }
-   python_foreach_impl test_collada
-}