summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Waibel <waebbl@gmail.com>2020-05-15 20:36:41 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-06-12 09:59:46 +0300
commit2dda35d4d5803026c5c36095d5416289c383b988 (patch)
tree5a59a47a46a5ace048d4f669136e245de1ead85a /media-gfx/openscad/files
parentmedia-gfx/openscad: backport r3 changes (diff)
downloadgentoo-2dda35d4d5803026c5c36095d5416289c383b988.tar.gz
gentoo-2dda35d4d5803026c5c36095d5416289c383b988.tar.bz2
gentoo-2dda35d4d5803026c5c36095d5416289c383b988.zip
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@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15809 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-gfx/openscad/files')
-rw-r--r--media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch14
-rw-r--r--media-gfx/openscad/files/openscad-2015.03_p3_fix-boost-1.70.0-build.patch13
2 files changed, 0 insertions, 27 deletions
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 ef0bcc421eb7..000000000000
--- 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 7684eba92e82..000000000000
--- 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());