public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/fcl/
@ 2020-09-16  4:34 Dennis Lamm
  0 siblings, 0 replies; 4+ messages in thread
From: Dennis Lamm @ 2020-09-16  4:34 UTC (permalink / raw
  To: gentoo-commits

commit:     5a840ef9cea7996f9feb3360d8303b6f4dd1f54f
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 15 18:26:47 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 04:34:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a840ef9

dev-python/fcl: new package

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/17558
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-python/fcl/Manifest          |  1 +
 dev-python/fcl/fcl-0.0.12.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++
 dev-python/fcl/metadata.xml      | 16 +++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-python/fcl/Manifest b/dev-python/fcl/Manifest
new file mode 100644
index 00000000000..c8d389d0a36
--- /dev/null
+++ b/dev-python/fcl/Manifest
@@ -0,0 +1 @@
+DIST python-fcl-0.0.12.tar.gz 17204 BLAKE2B 594d466270160e71e67d99f1745b382c3b1f7754adeb9ba58443e4370e14496e45f4a7619eb7d41db22766f75fe841e088609014bf5a9ff5a6b7ee526b34eca2 SHA512 3b5462206e63e17c646edeeedb268474cc6df1ff12d64d4de0c46bcc281787a42b6306778d2fe5d4d3b2e23bc0ed86e092c9a39b74d019638c771ac5c9d9f8ce

diff --git a/dev-python/fcl/fcl-0.0.12.ebuild b/dev-python/fcl/fcl-0.0.12.ebuild
new file mode 100644
index 00000000000..56e45b519ab
--- /dev/null
+++ b/dev-python/fcl/fcl-0.0.12.ebuild
@@ -0,0 +1,43 @@
+# 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
+
+MY_PN="python-fcl"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Python bindings for the Flexible Collision Library"
+HOMEPAGE="https://github.com/BerkeleyAutomation/python-fcl https://pypi.org/project/python-fcl/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+LICENSE="BSD"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE="examples"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	~sci-libs/fcl-0.5.0
+	sci-libs/octomap
+"
+
+S=${WORKDIR}/${MY_P}
+
+distutils_enable_tests unittest
+
+python_install_all() {
+	if use examples; then
+		docompress -x "/usr/share/doc/${PF}/examples"
+		dodoc -r example
+	fi
+
+	distutils-r1_python_install_all
+}
+
+python_test() {
+	"${EPYTHON}" test/test_fcl.py -v || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/fcl/metadata.xml b/dev-python/fcl/metadata.xml
new file mode 100644
index 00000000000..4dae84fa0a4
--- /dev/null
+++ b/dev-python/fcl/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="project">
+        <email>3dprint@gentoo.org</email>
+        <name>Gentoo 3D Printer Project</name>
+    </maintainer>
+    <longdescription>
+        Python-FCL is an (unofficial) Python interface for the Flexible Collision Library (FCL), an excellent C++
+        library for performing proximity and collision queries on pairs of geometric models.
+    </longdescription>
+    <upstream>
+        <remote-id type="github">BerkeleyAutomation/python-fcl</remote-id>
+        <remote-id type="pypi">python-fcl</remote-id>
+    </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/fcl/
@ 2020-11-17 14:49 Michał Górny
  0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2020-11-17 14:49 UTC (permalink / raw
  To: gentoo-commits

commit:     3989ae4477cff04aece61ea07b6e04c940bee246
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 17 14:39:58 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov 17 14:49:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3989ae44

dev-python/fcl: Port up to py3.9

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

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

diff --git a/dev-python/fcl/fcl-0.0.12.ebuild b/dev-python/fcl/fcl-0.0.12.ebuild
index 56e45b519ab..49e3bde5d1c 100644
--- a/dev-python/fcl/fcl-0.0.12.ebuild
+++ b/dev-python/fcl/fcl-0.0.12.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..7} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/fcl/
@ 2020-12-12 15:09 Dennis Lamm
  0 siblings, 0 replies; 4+ messages in thread
From: Dennis Lamm @ 2020-12-12 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     cbeed4489c2cf2d47b138aa809414487d6d0b746
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 13:48:56 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 15:09:09 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbeed448

def-python/fcl: minor bugfix

Closes: https://bugs.gentoo.org/753287
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-python/fcl/fcl-0.0.12-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/dev-python/fcl/fcl-0.0.12-r1.ebuild b/dev-python/fcl/fcl-0.0.12-r1.ebuild
new file mode 100644
index 00000000000..960dd71a4e0
--- /dev/null
+++ b/dev-python/fcl/fcl-0.0.12-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+MY_PN="python-fcl"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Python bindings for the Flexible Collision Library"
+HOMEPAGE="https://github.com/BerkeleyAutomation/python-fcl https://pypi.org/project/python-fcl/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+LICENSE="BSD"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	~sci-libs/fcl-0.5.0
+	sci-libs/octomap
+"
+
+S=${WORKDIR}/${MY_P}
+
+distutils_enable_tests unittest
+
+python_test() {
+	"${EPYTHON}" test/test_fcl.py -v || die "tests failed with ${EPYTHON}"
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/fcl/
@ 2020-12-12 15:09 Dennis Lamm
  0 siblings, 0 replies; 4+ messages in thread
From: Dennis Lamm @ 2020-12-12 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     86f3679b4b4914aaa1bb714d448f708aaa5978e1
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 13:49:24 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 15:09:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f3679b

def-python/fcl: drop old

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-python/fcl/fcl-0.0.12.ebuild | 43 ----------------------------------------
 1 file changed, 43 deletions(-)

diff --git a/dev-python/fcl/fcl-0.0.12.ebuild b/dev-python/fcl/fcl-0.0.12.ebuild
deleted file mode 100644
index 49e3bde5d1c..00000000000
--- a/dev-python/fcl/fcl-0.0.12.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-MY_PN="python-fcl"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Python bindings for the Flexible Collision Library"
-HOMEPAGE="https://github.com/BerkeleyAutomation/python-fcl https://pypi.org/project/python-fcl/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-LICENSE="BSD"
-
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE="examples"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	~sci-libs/fcl-0.5.0
-	sci-libs/octomap
-"
-
-S=${WORKDIR}/${MY_P}
-
-distutils_enable_tests unittest
-
-python_install_all() {
-	if use examples; then
-		docompress -x "/usr/share/doc/${PF}/examples"
-		dodoc -r example
-	fi
-
-	distutils-r1_python_install_all
-}
-
-python_test() {
-	"${EPYTHON}" test/test_fcl.py -v || die "tests failed with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-12-12 15:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-17 14:49 [gentoo-commits] repo/gentoo:master commit in: dev-python/fcl/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2020-12-12 15:09 Dennis Lamm
2020-12-12 15:09 Dennis Lamm
2020-09-16  4:34 Dennis Lamm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox