summaryrefslogtreecommitdiff
path: root/dev-python/python-fcl
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-02 13:42:01 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-02 13:42:01 +0000
commit1a0207a919055e9ffc2d81fa22e02e75759cfa18 (patch)
tree062f6b9e9aa2b3de9d4496c2a2e2b4c9261b5ebc /dev-python/python-fcl
parent2e383f1a6361c504338fbb8f21d38f452c174bda (diff)
downloadbaldeagleos-repo-1a0207a919055e9ffc2d81fa22e02e75759cfa18.tar.gz
baldeagleos-repo-1a0207a919055e9ffc2d81fa22e02e75759cfa18.tar.xz
baldeagleos-repo-1a0207a919055e9ffc2d81fa22e02e75759cfa18.zip
Adding metadata
Diffstat (limited to 'dev-python/python-fcl')
-rw-r--r--dev-python/python-fcl/Manifest1
-rw-r--r--dev-python/python-fcl/files/python-fcl-0.0.12-fix-compiling-on-lld.patch12
-rw-r--r--dev-python/python-fcl/metadata.xml13
-rw-r--r--dev-python/python-fcl/python-fcl-0.0.12-r1.ebuild31
4 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/python-fcl/Manifest b/dev-python/python-fcl/Manifest
deleted file mode 100644
index c8d389d0a36c..000000000000
--- a/dev-python/python-fcl/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST python-fcl-0.0.12.tar.gz 17204 BLAKE2B 594d466270160e71e67d99f1745b382c3b1f7754adeb9ba58443e4370e14496e45f4a7619eb7d41db22766f75fe841e088609014bf5a9ff5a6b7ee526b34eca2 SHA512 3b5462206e63e17c646edeeedb268474cc6df1ff12d64d4de0c46bcc281787a42b6306778d2fe5d4d3b2e23bc0ed86e092c9a39b74d019638c771ac5c9d9f8ce
diff --git a/dev-python/python-fcl/files/python-fcl-0.0.12-fix-compiling-on-lld.patch b/dev-python/python-fcl/files/python-fcl-0.0.12-fix-compiling-on-lld.patch
deleted file mode 100644
index 0e3cf7a54196..000000000000
--- a/dev-python/python-fcl/files/python-fcl-0.0.12-fix-compiling-on-lld.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -21,8 +21,7 @@
- include_dirs = ['/usr/include',
- '/usr/local/include',
- '/usr/include/eigen3']
-- lib_dirs = ['/usr/lib',
-- '/usr/local/lib']
-+ lib_dirs = ['/usr/local/lib']
-
- if 'CPATH' in os.environ:
- include_dirs += os.environ['CPATH'].split(':')
diff --git a/dev-python/python-fcl/metadata.xml b/dev-python/python-fcl/metadata.xml
deleted file mode 100644
index 14655d8a23bb..000000000000
--- a/dev-python/python-fcl/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
-<pkgmetadata>
- <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="pypi">python-fcl</remote-id>
- <bugs-to>https://github.com/BerkeleyAutomation/python-fcl/issues</bugs-to>
- </upstream>
- <origin>gentoo-staging</origin>
-</pkgmetadata> \ No newline at end of file
diff --git a/dev-python/python-fcl/python-fcl-0.0.12-r1.ebuild b/dev-python/python-fcl/python-fcl-0.0.12-r1.ebuild
deleted file mode 100644
index 726f6ae2826b..000000000000
--- a/dev-python/python-fcl/python-fcl-0.0.12-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9,10} )
-
-inherit distutils-r1
-
-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/${PN:0:1}/${PN}/${P}.tar.gz"
-LICENSE="BSD"
-
-KEYWORDS="~amd64"
-SLOT="0"
-
-RDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- ~sci-libs/fcl-0.5.0
- sci-libs/octomap
-"
-BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-compiling-on-lld.patch )
-
-distutils_enable_tests unittest
-
-python_test() {
- "${EPYTHON}" test/test_fcl.py -v || die "tests failed with ${EPYTHON}"
-}