commit:     2dda35d4d5803026c5c36095d5416289c383b988
Author:     Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Fri May 15 18:36:41 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jun 12 06:59:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dda35d4

media-gfx/openscad: drop old

Drop obsolete 2015.03 version.

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

 media-gfx/openscad/Manifest                        |  1 -
 .../files/openscad-2015.03_p2_uic_tr_fix.patch     | 14 ----
 ...penscad-2015.03_p3_fix-boost-1.70.0-build.patch | 13 ----
 media-gfx/openscad/openscad-2015.03_p3-r2.ebuild   | 80 ----------------------
 4 files changed, 108 deletions(-)

diff --git a/media-gfx/openscad/Manifest b/media-gfx/openscad/Manifest
index fa81bd25200..fd29bf8f45b 100644
--- a/media-gfx/openscad/Manifest
+++ b/media-gfx/openscad/Manifest
@@ -1,2 +1 @@
-DIST openscad-2015.03-3.src.tar.gz 13309147 BLAKE2B 
77f4e934474882e454dad683d9da6a2c9fe699a84c86ed5ebe1755de037f6930870ffb432dedeef3bea7a76cbc98d0f0d0694e5d0f7b469830370ca3548a650c
 SHA512 
b2cee90563bdf2cb9f7b5a0d637b2266f5fcd62add6147c9326b843a5b0975b8ec900d13a2aa86485fce4a5e7e53a08cf4171a3d1d66355e813d01ca9096faee
 DIST openscad-2019.05.tar.gz 14604881 BLAKE2B 
ed7d6088606fab44284363da73643e556f07c0f0a7a223bdf718dcc36a82158bf23e315724ea520d63a3f1331207df0ea7b0ade817f01dd39b67ca6f36529d56
 SHA512 
073053f625ffa4fea6ed836396b7ff4b87b26cf7500b06c804983afc0f1dfd3d78bfb81b3fd217c3939b0ec915d85b0c7990773eaf968512a150deaa0399df13

diff --git a/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch 
b/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch
deleted file mode 100644
index ef0bcc421eb..00000000000
--- a/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/src/qtgettext.h  2017-03-22 00:17:29.808058905 -0400
-+++ b/src/qtgettext.h  2017-03-22 00:18:55.251184835 -0400
-@@ -22,5 +22,10 @@
-       return QString::fromUtf8( _( msgid ) );
- }
- 
--#endif
-+inline QString _( const char *msgid, const char *disambiguation )
-+{
-+      Q_UNUSED( disambiguation );
-+      return QString::fromUtf8( _( msgid ) );
-+}
- 
-+#endif

diff --git 
a/media-gfx/openscad/files/openscad-2015.03_p3_fix-boost-1.70.0-build.patch 
b/media-gfx/openscad/files/openscad-2015.03_p3_fix-boost-1.70.0-build.patch
deleted file mode 100644
index 7684eba92e8..00000000000
--- a/media-gfx/openscad/files/openscad-2015.03_p3_fix-boost-1.70.0-build.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/src/CSGTermEvaluator.cc b/src/CSGTermEvaluator.cc
-index 6416f29..b3753cf 100644
---- a/src/CSGTermEvaluator.cc
-+++ b/src/CSGTermEvaluator.cc
-@@ -109,7 +109,7 @@ static shared_ptr<CSGTerm> 
evaluate_csg_term_from_geometry(const State &state,
-                       shared_ptr<const PolySet> ps = 
dynamic_pointer_cast<const PolySet>(geom);
-                       // Since is_convex() doesn't handle non-planar faces, 
we need to tessellate
-                       // also in the indeterminate state so we cannot just 
use a boolean comparison. See #1061
--                      bool convex = ps->convexValue();
-+                      bool convex{ps->convexValue()};
-                       if (ps && !convex) {
-                               assert(ps->getDimension() == 3);
-                               PolySet *ps_tri = new PolySet(3, 
ps->convexValue());

diff --git a/media-gfx/openscad/openscad-2015.03_p3-r2.ebuild 
b/media-gfx/openscad/openscad-2015.03_p3-r2.ebuild
deleted file mode 100644
index c8c9432ff43..00000000000
--- a/media-gfx/openscad/openscad-2015.03_p3-r2.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit elisp-common qmake-utils xdg
-
-# 2015.03-3
-MY_VER=$(ver_cut 1-2) # version component
-MY_REL=$(ver_cut 4) # release component, 'p' being the third component
-MY_PV=${MY_VER}-${MY_REL}
-SITEFILE="50${PN}-gentoo.el"
-
-DESCRIPTION="The Programmers Solid 3D CAD Modeller"
-HOMEPAGE="http://www.openscad.org/";
-SRC_URI="http://files.openscad.org/${PN}-${MY_PV}.src.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs"
-
-DEPEND="
-       dev-cpp/eigen:3
-       dev-libs/boost:=
-       dev-libs/glib:2
-       dev-libs/gmp:0=
-       dev-libs/mpfr:0=
-       dev-qt/qtconcurrent:5
-       dev-qt/qtcore:5
-       dev-qt/qtgui:5[-gles2-only]
-       dev-qt/qtopengl:5
-       media-gfx/opencsg
-       media-libs/fontconfig:1.0
-       media-libs/freetype:2
-       >=media-libs/glew-2.0.0:*
-       media-libs/harfbuzz
-       sci-mathematics/cgal:=
-       >=x11-libs/qscintilla-2.9.4:=[qt5(+)]
-       emacs? ( >=app-editors/emacs-23.1:* )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-2015.03_p2_uic_tr_fix.patch"
-       "${FILESDIR}/${PN}-2015.03_p3_fix-boost-1.70.0-build.patch"
-)
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_prepare() {
-       default
-
-       #Use our CFLAGS (specifically don't force x86)
-       sed -i "s/QMAKE_CXXFLAGS_RELEASE = .*//g" ${PN}.pro  || die
-       sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die
-}
-
-src_configure() {
-       eqmake5 "${PN}.pro"
-}
-
-src_compile() {
-       default
-
-       if use emacs ; then
-               elisp-compile contrib/*.el
-       fi
-}
-
-src_install() {
-       emake install INSTALL_ROOT="${D}"
-
-       if use emacs; then
-               elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-               elisp-install ${PN} contrib/*.el contrib/*.elc
-       fi
-
-       einstalldocs
-}

Reply via email to