Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] openscad: update to 2019.05.
@ 2019-07-09 17:09 voidlinux-github
  2019-07-10  5:15 ` [PR PATCH] [Merged]: " voidlinux-github
  0 siblings, 1 reply; 2+ messages in thread
From: voidlinux-github @ 2019-07-09 17:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 318 bytes --]

There is a new pull request by bra1nwave against master on the void-packages repository

https://github.com/bra1nwave/void-packages openscad
https://github.com/void-linux/void-packages/pull/12949

openscad: update to 2019.05.


A patch file from https://github.com/void-linux/void-packages/pull/12949.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-openscad-12949.patch --]
[-- Type: application/text/x-diff, Size: 4218 bytes --]

From 7b2465a72a14dfea2d1255600229e4b2921c2484 Mon Sep 17 00:00:00 2001
From: bra1nwave <brainwave@openmailbox.org>
Date: Tue, 9 Jul 2019 18:58:38 +0200
Subject: [PATCH] openscad: update to 2019.05.

---
 ...4db99ce05da1c72efb8b2f572995fef2ea86.patch | 22 ------------
 srcpkgs/openscad/patches/uic_qgettext.patch   | 34 -------------------
 srcpkgs/openscad/template                     | 15 ++++----
 3 files changed, 7 insertions(+), 64 deletions(-)
 delete mode 100644 srcpkgs/openscad/patches/8fb64db99ce05da1c72efb8b2f572995fef2ea86.patch
 delete mode 100644 srcpkgs/openscad/patches/uic_qgettext.patch

diff --git a/srcpkgs/openscad/patches/8fb64db99ce05da1c72efb8b2f572995fef2ea86.patch b/srcpkgs/openscad/patches/8fb64db99ce05da1c72efb8b2f572995fef2ea86.patch
deleted file mode 100644
index df3c80a6472..00000000000
--- a/srcpkgs/openscad/patches/8fb64db99ce05da1c72efb8b2f572995fef2ea86.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 8fb64db99ce05da1c72efb8b2f572995fef2ea86 Mon Sep 17 00:00:00 2001
-From: Marius Kintel <marius@kintel.net>
-Date: Sun, 21 Oct 2018 12:02:50 -0400
-Subject: [PATCH] Build fix for boost 1.69
-
----
- src/CSGTreeEvaluator.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git src/CSGTreeEvaluator.cc src/CSGTreeEvaluator.cc
-index 245d7e07d9..51d3439348 100644
---- src/CSGTermEvaluator.cc	2015-04-01 23:10:53.000000000 +0200
-+++ -	2018-12-13 13:35:04.981075600 +0100
-@@ -109,7 +109,7 @@
- 			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/srcpkgs/openscad/patches/uic_qgettext.patch b/srcpkgs/openscad/patches/uic_qgettext.patch
deleted file mode 100644
index af3ad233394..00000000000
--- a/srcpkgs/openscad/patches/uic_qgettext.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 4fa5f0340a2b7b031a0b39f7de0ca795d52bb68b Mon Sep 17 00:00:00 2001
-From: Torsten Paul <Torsten.Paul@gmx.de>
-Date: Sun, 27 Nov 2016 19:29:04 +0100
-Subject: [PATCH] Handle 2 argument translation calls generated by Qt 5.7.1
- (fixes #1872).
-
----
- src/qtgettext.h | 12 +++++++++---
- 1 file changed, 9 insertions(+), 3 deletions(-)
-
-diff --git src/qtgettext.h src/qtgettext.h
-index 6e66716..dbc4f17 100644
---- src/qtgettext.h
-+++ src/qtgettext.h
-@@ -16,10 +16,16 @@
- 
- #define N_(String) String
- 
--inline QString _( const char *msgid, int category )
-+inline QString _(const char *msgid, int category)
- {
--	Q_UNUSED( category );
--	return QString::fromUtf8( _( msgid ) );
-+	Q_UNUSED(category);
-+	return QString::fromUtf8(_(msgid));
-+}
-+
-+inline QString _(const char *msgid, const char *disambiguation)
-+{
-+	Q_UNUSED(disambiguation);
-+	return QString::fromUtf8(_(msgid));
- }
- 
- #endif
diff --git a/srcpkgs/openscad/template b/srcpkgs/openscad/template
index 8f292210ac4..bb00882f2e8 100644
--- a/srcpkgs/openscad/template
+++ b/srcpkgs/openscad/template
@@ -1,15 +1,14 @@
 # Template file for 'openscad'
 pkgname=openscad
-version=2015.03.2
-revision=11
-_distver="${version%.*}-${version##*.}"
-wrksrc="${pkgname}-${_distver}"
+version=2019.05
+revision=1
 build_style=qmake
 hostmakedepends="bison flex pkg-config"
-makedepends="cgal-devel harfbuzz-devel opencsg-devel qscintilla-qt5-devel"
-short_desc="The programmers solid 3D CAD modeller"
+makedepends="cgal-devel harfbuzz-devel opencsg-devel qscintilla-qt5-devel
+ qt5-multimedia-devel libxml2-devel libzip-devel double-conversion-devel"
+short_desc="Solid 3D CAD modeller"
 maintainer="Pierre Allegraud <pierre.allegraud@crans.org>"
 license="GPL-2.0-or-later"
 homepage="http://www.openscad.org"
-distfiles="http://files.openscad.org/${pkgname}-${_distver}.src.tar.gz"
-checksum="a2535bb9e27d96e10e1e19268a596155164c7129d410a0c7f96edc2d09400083"
+distfiles="http://files.openscad.org/${pkgname}-${version}.src.tar.gz"
+checksum=0a16c4263ce52380819dd91c609a719d38f12f6b8c4da0e828dcbe5b70996f59

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: openscad: update to 2019.05.
  2019-07-09 17:09 [PR PATCH] openscad: update to 2019.05 voidlinux-github
@ 2019-07-10  5:15 ` voidlinux-github
  0 siblings, 0 replies; 2+ messages in thread
From: voidlinux-github @ 2019-07-10  5:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 161 bytes --]

There's a merged pull request on the void-packages repository

openscad: update to 2019.05.
https://github.com/void-linux/void-packages/pull/12949
Description: 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-10  5:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-09 17:09 [PR PATCH] openscad: update to 2019.05 voidlinux-github
2019-07-10  5:15 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).