diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-09 08:59:50 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-09 09:00:52 +0200 |
commit | 26070d32bdfe0c38f3f7d1bd4e559083f41a53c0 (patch) | |
tree | 86c65ee5ef99287b8af7d9ad12a06f7b34cb70bb /dev-python/pynest2d | |
parent | dev-libs/libsavitar: Remove old (diff) | |
download | gentoo-26070d32bdfe0c38f3f7d1bd4e559083f41a53c0.tar.gz gentoo-26070d32bdfe0c38f3f7d1bd4e559083f41a53c0.tar.bz2 gentoo-26070d32bdfe0c38f3f7d1bd4e559083f41a53c0.zip |
dev-python/pynest2d: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pynest2d')
5 files changed, 0 insertions, 96 deletions
diff --git a/dev-python/pynest2d/Manifest b/dev-python/pynest2d/Manifest index 953b96b37059..6e5a58045d41 100644 --- a/dev-python/pynest2d/Manifest +++ b/dev-python/pynest2d/Manifest @@ -1,3 +1 @@ -DIST pynest2d-4.12.1.tar.gz 18448 BLAKE2B 5432d7acfe600afd32a0fb4543728eed351dea442ff23c9397182919f43015c4aed530aa7ec5b59c75d6373ea6ed122262d7018eb12cdd1b4586bf3ec960586b SHA512 0494efbc0ad6379fde4bdf9cdfe902cb4cbce30129771d34e01661b58ee38d6256910e10184c121de3b2d7139e6dbfee5b4e039d7d35507347efa2c475977625 DIST pynest2d-4.13_beta.tar.gz 18455 BLAKE2B 1c5cbc72d8557f6c8031ea6e5b7e0344c7315dacfe3bf96dc98cd5fc353574811100728f665a27d538c1a9dfb90dce8a7fca477be9f8b589c6174364cc072bfb SHA512 b1918efa18c8d3b641271803ada6fd9122e456181854bb7a62dc574673791ad5a294d239c79cfc4590cb1ef760d410fed5764e81e938df64f5646751746b1250 -DIST pynest2d-4.9.1.tar.gz 18252 BLAKE2B ea98af68e7b60d615eaf6e90a68b37f8e26aa181fafecc2470b5d93d1d20a9667f5a8c903be87d419cedf47befd4e9ce757a90880c0ef19e7bb920147b2443b2 SHA512 f208e13cace4345fe691beebfe61895cbf81b7f90c19adf6a63b592928abd8591fed5c10e5b12d60c375684398856ea8d569fe8d1893a049e45d89b0ffcfc51d diff --git a/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch b/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch deleted file mode 100644 index 1fe895892de2..000000000000 --- a/dev-python/pynest2d/files/pynest2d-4.8.0-fix-cpp-version.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -17,7 +17,7 @@ find_package(Boost REQUIRED) # Dependency of libnest2d. - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DLIBNEST2D_GEOMETRIES_clipper -DLIBNEST2D_OPTIMIZERS_nlopt -DLIBNEST2D_THREADING_std") # Tell libnest2d to use Clipper and NLopt, and standard threads. - - # Some build options. --set(CMAKE_CXX_STANDARD 11) -+set(CMAKE_CXX_STANDARD 14) - if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") - endif() diff --git a/dev-python/pynest2d/files/pynest2d-4.8.0-required-flags-from-Libnest2D-target.patch b/dev-python/pynest2d/files/pynest2d-4.8.0-required-flags-from-Libnest2D-target.patch deleted file mode 100644 index c2c9452756fb..000000000000 --- a/dev-python/pynest2d/files/pynest2d-4.8.0-required-flags-from-Libnest2D-target.patch +++ /dev/null @@ -1,24 +0,0 @@ -See https://github.com/Ultimaker/pynest2d/pull/3 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -10,11 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") - find_package(PythonInterp 3.5 REQUIRED) # Dependency of SIP. - find_package(PythonLibs 3.5 REQUIRED) # Dependency of SIP. - find_package(SIP REQUIRED) # To create Python bindings. --find_package(libnest2d REQUIRED) # The library we're creating bindings for. --find_package(Clipper REQUIRED) # Dependency of libnest2d. --find_package(NLopt REQUIRED) # Dependency of libnest2d. --find_package(Boost REQUIRED) # Dependency of libnest2d. --set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DLIBNEST2D_GEOMETRIES_clipper -DLIBNEST2D_OPTIMIZERS_nlopt -DLIBNEST2D_THREADING_std") # Tell libnest2d to use Clipper and NLopt, and standard threads. -+find_package(Libnest2D REQUIRED) # The library we're creating bindings for. - - # Some build options. - set(CMAKE_CXX_STANDARD 11) -@@ -45,5 +41,5 @@ set(SIP_EXTRA_FILES_DEPEND - ) - - set(SIP_EXTRA_OPTIONS -g) # Always release the GIL before calling C++ methods. --include_directories(src/ ${SIP_INCLUDE_DIRS} ${Python3_INCLUDE_DIRS} ${CLIPPER_INCLUDE_DIRS} ${NLopt_INCLUDE_DIRS} ${LIBNEST2D_INCLUDE_DIRS}) --add_sip_python_module(pynest2d src/Pynest2D.sip ${CLIPPER_LIBRARIES} ${NLopt_LIBRARIES}) -+include_directories(src/ ${SIP_INCLUDE_DIRS}) -+add_sip_python_module(pynest2d src/Pynest2D.sip Libnest2D::libnest2d_headeronly) diff --git a/dev-python/pynest2d/pynest2d-4.12.1.ebuild b/dev-python/pynest2d/pynest2d-4.12.1.ebuild deleted file mode 100644 index f6c4eeb7065b..000000000000 --- a/dev-python/pynest2d/pynest2d-4.12.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit cmake python-single-r1 - -DESCRIPTION="Python bindings for libnest2d" -HOMEPAGE="https://github.com/Ultimaker/pynest2d" -SRC_URI="https://github.com/Ultimaker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~x86" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-libs/libnest2d - $(python_gen_cond_dep '<dev-python/sip-5[${PYTHON_USEDEP}]') - " - -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-4.12.1-required-flags-from-Libnest2D-target.patch -) diff --git a/dev-python/pynest2d/pynest2d-4.9.1.ebuild b/dev-python/pynest2d/pynest2d-4.9.1.ebuild deleted file mode 100644 index d7a3591a7c44..000000000000 --- a/dev-python/pynest2d/pynest2d-4.9.1.ebuild +++ /dev/null @@ -1,30 +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 cmake python-single-r1 - -DESCRIPTION="Python bindings for libnest2d" -HOMEPAGE="https://github.com/Ultimaker/pynest2d" -SRC_URI="https://github.com/Ultimaker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-libs/libnest2d - $(python_gen_cond_dep '<dev-python/sip-5[${PYTHON_USEDEP}]') - " - -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-4.8.0-required-flags-from-Libnest2D-target.patch - "${FILESDIR}"/${PN}-4.8.0-fix-cpp-version.patch -) |