commit:     91f4dc1a22136e6cbba78bb8cb7abdba7949b98a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  9 06:57:57 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  9 07:00:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91f4dc1a

media-gfx/curaengine: Remove old

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

 media-gfx/curaengine/Manifest                 |  2 -
 media-gfx/curaengine/curaengine-4.12.1.ebuild | 85 ---------------------------
 media-gfx/curaengine/curaengine-4.9.1.ebuild  | 85 ---------------------------
 3 files changed, 172 deletions(-)

diff --git a/media-gfx/curaengine/Manifest b/media-gfx/curaengine/Manifest
index e60a491f42dd..b2be0b507ec5 100644
--- a/media-gfx/curaengine/Manifest
+++ b/media-gfx/curaengine/Manifest
@@ -1,3 +1 @@
-DIST curaengine-4.12.1.tar.gz 1726565 BLAKE2B 
be231ec43792e1f27a6c720444c6755f71bbc3dbaea45b714c73f9b5b51753d58dafeef7ad2ed1bc21de1c39fe9f2a325ab8b85d3eb5b7f075a472dac98654b7
 SHA512 
c0c703ec9c7fb05389806f45174d45dd65bece169e3ad88aa1744091ce3c3c1e1e4f5af32cb55cfa9f1a4a8bffe0a008d5924a6e5d02baed00996c9112fbafef
 DIST curaengine-4.13.1.tar.gz 1727935 BLAKE2B 
d306f990b86e6120705b36eba6f3363adc67cf8c93c66c2da506c1ee461a5a6bdd27a4e04880daeb6cebab3ecc736d9a52eec27bf17aa9f032237a4c8ee1d2a3
 SHA512 
224379a40e26ae0026a3849d582353e49edf99520401e1fef56c9504638c68c62cfe394dab0eb40e4a447bfe0bfa506a880512e84fd6057a839b6384087c46d0
-DIST curaengine-4.9.1.tar.gz 1694141 BLAKE2B 
84119a2dd66340bdc3a4bd58384f300fb839aa7c5920de87d070945d3c436ace0f8686cd907a204e5825bdc17809d9f9052e37fb96b37e34a20650ca625d7b1e
 SHA512 
cfa918c6301c9948713306256d74a2a84a1fefbc0f85c7ac0eb182d8363f1eae97aecdcb91c207a2e7e1ab252f63cf4b513734b50d4229da7aa35e095ef88bee

diff --git a/media-gfx/curaengine/curaengine-4.12.1.ebuild 
b/media-gfx/curaengine/curaengine-4.12.1.ebuild
deleted file mode 100644
index 98b1c9901eb8..000000000000
--- a/media-gfx/curaengine/curaengine-4.12.1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-MY_PN="CuraEngine"
-
-DESCRIPTION="A 3D model slicing engine for 3D printing"
-HOMEPAGE="https://github.com/Ultimaker/CuraEngine";
-SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="+arcus doc openmp test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       ${PYTHON_DEPS}
-       arcus? (
-               ~dev-libs/libarcus-${PV}:*
-               dev-libs/protobuf:=
-       )
-       dev-libs/clipper
-       dev-libs/rapidjson
-       dev-libs/stb"
-
-DEPEND="${RDEPEND}
-       test? ( dev-cpp/gtest )"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-DOCS=( README.md )
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
-       rm -r "${S}"/libs || die
-
-       # remove static linking
-       # respect cflags
-       sed -i \
-               -e "s/-static-libstdc++//g" \
-               -e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")//g' \
-               -e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} 
${CMAKE_CXX_FLAGS_RELEASE_INIT}")//g' \
-               CMakeLists.txt || die
-
-       if use test; then
-               find "${S}"/tests/arcus "${S}"/tests/integration 
"${S}"/tests/settings "${S}"/tests/utils \
-                -type f -name '*.cpp' | xargs sed -i \
-                       -e 's <../src/utils/AABB.h> "../../src/utils/AABB.h" g'\
-                       -e 's <../src/utils/IntPoint.h> 
"../../src/utils/IntPoint.h" g' \
-                       -e 's <../src/utils/polygon.h> 
"../../src/utils/polygon.h" g'\
-                       -e 's <../src/utils/PolygonConnector.h> 
"../../src/utils/PolygonConnector.h" g'\
-                       -e 's <../src/utils/polygonUtils.h> 
"../../src/utils/polygonUtils.h" g'\
-                       -e 's <../src/utils/string.h> 
"../../src/utils/string.h" g' \
-                       -e 's <../src/utils/SVG.h> "../../src/utils/SVG.h" g' \
-                       -e 's#include "../src#include "../../src#g'|| die
-       fi
-
-       cmake_src_prepare
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DBUILD_TESTS=$(usex test ON OFF)
-               -DENABLE_ARCUS=$(usex arcus ON OFF)
-               -DENABLE_MORE_COMPILER_OPTIMIZATION_FLAGS=OFF
-               -DENABLE_OPENMP=$(usex openmp ON OFF)
-               -DUSE_SYSTEM_LIBS=ON
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       if use doc; then
-               doxygen || die "generating docs failed"
-               mv docs/html . || die
-               find html -type f '(' -name '*.md5' -o -name '*.map' ')' 
-delete || die
-               HTML_DOCS=( html/. )
-       fi
-}

diff --git a/media-gfx/curaengine/curaengine-4.9.1.ebuild 
b/media-gfx/curaengine/curaengine-4.9.1.ebuild
deleted file mode 100644
index 16c9ac1b8576..000000000000
--- a/media-gfx/curaengine/curaengine-4.9.1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake toolchain-funcs
-
-MY_PN="CuraEngine"
-
-DESCRIPTION="A 3D model slicing engine for 3D printing"
-HOMEPAGE="https://github.com/Ultimaker/CuraEngine";
-SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+arcus doc openmp test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       ${PYTHON_DEPS}
-       arcus? (
-               ~dev-libs/libarcus-${PV}:*
-               dev-libs/protobuf:=
-       )
-       dev-libs/clipper
-       dev-libs/rapidjson
-       dev-libs/stb"
-
-DEPEND="${RDEPEND}
-       test? ( dev-cpp/gtest )"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-DOCS=( README.md )
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
-       rm -r "${S}"/libs || die
-
-       # remove static linking
-       # respect cflags
-       sed -i \
-               -e "s/-static-libstdc++//g" \
-               -e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")//g' \
-               -e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} 
${CMAKE_CXX_FLAGS_RELEASE_INIT}")//g' \
-               CMakeLists.txt || die
-
-       if use test; then
-               find "${S}"/tests/arcus "${S}"/tests/integration 
"${S}"/tests/settings "${S}"/tests/utils \
-                -type f -name '*.cpp' | xargs sed -i \
-                       -e 's <../src/utils/AABB.h> "../../src/utils/AABB.h" g'\
-                       -e 's <../src/utils/IntPoint.h> 
"../../src/utils/IntPoint.h" g' \
-                       -e 's <../src/utils/polygon.h> 
"../../src/utils/polygon.h" g'\
-                       -e 's <../src/utils/PolygonConnector.h> 
"../../src/utils/PolygonConnector.h" g'\
-                       -e 's <../src/utils/polygonUtils.h> 
"../../src/utils/polygonUtils.h" g'\
-                       -e 's <../src/utils/string.h> 
"../../src/utils/string.h" g' \
-                       -e 's <../src/utils/SVG.h> "../../src/utils/SVG.h" g' \
-                       -e 's#include "../src#include "../../src#g'|| die
-       fi
-
-       cmake_src_prepare
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DBUILD_TESTS=$(usex test ON OFF)
-               -DENABLE_ARCUS=$(usex arcus ON OFF)
-               -DENABLE_MORE_COMPILER_OPTIMIZATION_FLAGS=OFF
-               -DENABLE_OPENMP=$(usex openmp ON OFF)
-               -DUSE_SYSTEM_LIBS=ON
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       if use doc; then
-               doxygen || die "generating docs failed"
-               mv docs/html . || die
-               find html -type f '(' -name '*.md5' -o -name '*.map' ')' 
-delete || die
-               HTML_DOCS=( html/. )
-       fi
-}

Reply via email to