public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2022-07-14 21:32 Piotr Karbowski
  0 siblings, 0 replies; 9+ messages in thread
From: Piotr Karbowski @ 2022-07-14 21:32 UTC (permalink / raw
  To: gentoo-commits

commit:     e6c5478821ff4fbe29cd2f3bb858f76ac8251086
Author:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 21:25:09 2022 +0000
Commit:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 21:32:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c54788

media-gfx/superslicer: 2.4.58.3-r1: add presets.

Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>

 media-gfx/superslicer/Manifest                                |  1 +
 ...rslicer-2.4.58.3.ebuild => superslicer-2.4.58.3-r1.ebuild} | 11 ++++++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/Manifest b/media-gfx/superslicer/Manifest
index fabb29b27e6a..bb7fbbc6ec07 100644
--- a/media-gfx/superslicer/Manifest
+++ b/media-gfx/superslicer/Manifest
@@ -1 +1,2 @@
+DIST superslicer-2.4.58.3-profiles.tar.gz 15322406 BLAKE2B cfa89697e832e0601746cb21250e258617bcc0966dd111c82ae43a9720b3ffb760f57827a1f35c8ad57a23a7ffb4c78e48ec76d6e40b364f321d0f83c4d10939 SHA512 bbdc6bfa8e21a4bdbca903a367f033f9cb5a1966bd0688bcc81314ba9ee45fee37cb892c82be35e865137c4df7c1fabceb8e6de46316338df2af4a590de91c76
 DIST superslicer-2.4.58.3.tar.gz 45203382 BLAKE2B 822af2a1cb8978b21f8efdc0eb4841ec1d86517fd07782a8dfa6be2a58514dc3e772221dca40ff62808cb798fc4f51484b24e847328a7a6f154708431f0c4d3b SHA512 00302fba9ada1cc5df3c58f42fdb7f98322f94de7b78876c6a54a2229ae289e785082ea7a69f67bee54321fc4d97811675eeb70932e5774ab78ca8859343dd4d

diff --git a/media-gfx/superslicer/superslicer-2.4.58.3.ebuild b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
similarity index 85%
rename from media-gfx/superslicer/superslicer-2.4.58.3.ebuild
rename to media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
index d12285792499..25e24b5db12a 100644
--- a/media-gfx/superslicer/superslicer-2.4.58.3.ebuild
+++ b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
@@ -10,7 +10,10 @@ inherit cmake wxwidgets xdg
 
 DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)"
 HOMEPAGE="https://github.com/supermerill/SuperSlicer/"
-SRC_URI="https://github.com/supermerill/SuperSlicer/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="
+	https://github.com/supermerill/SuperSlicer/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
+	https://github.com/slic3r/slic3r-profiles/archive/748fbdfd2ac077e4e415868e7bc963740b92aa8e.tar.gz -> ${P}-profiles.tar.gz
+"
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
 SLOT="0"
@@ -60,6 +63,12 @@ PATCHES=(
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 
+src_unpack() {
+	default
+
+	mv slic3r-profiles-*/* ${S}/resources/profiles/ || die
+}
+
 src_configure() {
 	CMAKE_BUILD_TYPE="Release"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2022-08-11 10:55 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-08-11 10:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4769bb50c373305334cf140516f3c9e42bcdf810
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 10:46:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 10:54:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4769bb50

media-gfx/superslicer: fix UnquotedVariable

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
index 25e24b5db12a..f7c31c7c0aa6 100644
--- a/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
+++ b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
@@ -66,7 +66,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 src_unpack() {
 	default
 
-	mv slic3r-profiles-*/* ${S}/resources/profiles/ || die
+	mv slic3r-profiles-*/* "${S}"/resources/profiles/ || die
 }
 
 src_configure() {


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2022-08-11 10:55 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-08-11 10:55 UTC (permalink / raw
  To: gentoo-commits

commit:     8bad9c39762a42b174b4eda7ccc2b5a55e99c812
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 10:46:30 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 10:54:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bad9c39

media-gfx/superslicer: fix WhitespaceFound

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
index f7c31c7c0aa6..54a336980045 100644
--- a/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
+++ b/media-gfx/superslicer/superslicer-2.4.58.3-r1.ebuild
@@ -22,7 +22,7 @@ IUSE="test"
 
 RESTRICT="test"
 
-# No dep on sci-libs/libigl, in-tree version cannot build 
+# No dep on sci-libs/libigl, in-tree version cannot build
 # static library currently. Using bundled one.
 RDEPEND="
 	dev-cpp/eigen:3


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2022-12-28 18:13 Piotr Karbowski
  0 siblings, 0 replies; 9+ messages in thread
From: Piotr Karbowski @ 2022-12-28 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     b7cc01d34dfa3c99b04693a9f76d5fc11449ce61
Author:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 28 17:49:23 2022 +0000
Commit:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Wed Dec 28 18:13:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7cc01d3

media-gfx/superslicer: Append -fno-strict-aliasing.

Closes: https://bugs.gentoo.org/860045
Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>

 ...{superslicer-2.5.59.0-r2.ebuild => superslicer-2.5.59.0-r3.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/superslicer-2.5.59.0-r2.ebuild b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
similarity index 96%
rename from media-gfx/superslicer/superslicer-2.5.59.0-r2.ebuild
rename to media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
index 08c74ac46f52..5316cceb3c63 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.0-r2.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 WX_GTK_VER="3.0-gtk3"
 MY_PN="SuperSlicer"
 
-inherit cmake wxwidgets xdg
+inherit cmake wxwidgets xdg flag-o-matic
 
 DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)"
 HOMEPAGE="https://github.com/supermerill/SuperSlicer/"
@@ -74,6 +74,8 @@ src_unpack() {
 src_configure() {
 	CMAKE_BUILD_TYPE="Release"
 
+	append-flags -fno-strict-aliasing
+
 	setup-wxwidgets
 
 	local mycmakeargs=(


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2022-12-28 22:25 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-12-28 22:25 UTC (permalink / raw
  To: gentoo-commits

commit:     bf42d23a305a76e3f6cd8535e40b226a572f721e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 28 22:25:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 28 22:25:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf42d23a

media-gfx/superslicer: Stabilize 2.5.59.0-r3 amd64, #888775

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
index 5316cceb3c63..083ab1fda40d 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2023-06-04 13:33 Piotr Karbowski
  0 siblings, 0 replies; 9+ messages in thread
From: Piotr Karbowski @ 2023-06-04 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     f2965726e23cb072253f04d62e2f7e672c4414a9
Author:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 13:33:18 2023 +0000
Commit:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Sun Jun  4 13:33:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2965726

media-gfx/superslicer: Fixes ExcessiveLineLength QA warning.

Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild | 3 ++-
 media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
index 083ab1fda40d..7cdeaa9cc284 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.0-r3.ebuild
@@ -5,6 +5,7 @@ EAPI=8
 
 WX_GTK_VER="3.0-gtk3"
 MY_PN="SuperSlicer"
+SLICER_PROFILES_COMMIT="748fbdfd2ac077e4e415868e7bc963740b92aa8e"
 
 inherit cmake wxwidgets xdg flag-o-matic
 
@@ -12,7 +13,7 @@ DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D
 HOMEPAGE="https://github.com/supermerill/SuperSlicer/"
 SRC_URI="
 	https://github.com/supermerill/SuperSlicer/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
-	https://github.com/slic3r/slic3r-profiles/archive/748fbdfd2ac077e4e415868e7bc963740b92aa8e.tar.gz -> ${P}-profiles.tar.gz
+	https://github.com/slic3r/slic3r-profiles/archive/${SLICER_PROFILES_COMMIT}.tar.gz -> ${P}-profiles.tar.gz
 "
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"

diff --git a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
index c29633c2bc55..572cbef82012 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
@@ -5,6 +5,7 @@ EAPI=8
 
 WX_GTK_VER="3.0-gtk3"
 MY_PN="SuperSlicer"
+SLICER_PROFILES_COMMIT="f6b1b123062a77101fe350f6d2a2a57be9adc684"
 
 inherit cmake wxwidgets xdg flag-o-matic
 
@@ -12,7 +13,7 @@ DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D
 HOMEPAGE="https://github.com/supermerill/SuperSlicer/"
 SRC_URI="
 	https://github.com/supermerill/SuperSlicer/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
-	https://github.com/slic3r/slic3r-profiles/archive/f6b1b123062a77101fe350f6d2a2a57be9adc684.tar.gz -> ${P}-profiles.tar.gz
+	https://github.com/slic3r/slic3r-profiles/archive/${SLICER_PROFILES_COMMIT}.tar.gz -> ${P}-profiles.tar.gz
 "
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2023-07-15 11:50 Arthur Zamarin
  0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2023-07-15 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     578a80e55360b6b5a39fadc7eab47f33fb688db3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 15 11:50:31 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 15 11:50:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578a80e5

media-gfx/superslicer: Stabilize 2.5.59.2-r2 amd64, #907842

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
index 572cbef82012..8d4ac88db07d 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2023-11-26 12:38 Arthur Zamarin
  0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2023-11-26 12:38 UTC (permalink / raw
  To: gentoo-commits

commit:     fb0b3fbd2692c67c26870ddb9a95cb52a5341391
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 12:37:42 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 12:37:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0b3fbd

media-gfx/superslicer: Keyword 2.5.59.2-r2 arm64, #918578

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
index 8d4ac88db07d..6dcdc6a1a61e 100644
--- a/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
+++ b/media-gfx/superslicer/superslicer-2.5.59.2-r2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="test"
 
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/
@ 2024-07-16  7:24 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-07-16  7:24 UTC (permalink / raw
  To: gentoo-commits

commit:     7f22a961465cbd9c83d63d96f5e614563b756434
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 16 07:22:27 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 16 07:22:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f22a961

media-gfx/superslicer: add 2.5.59.10

Bug: https://bugs.gentoo.org/918510
Closes: https://bugs.gentoo.org/924105
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/superslicer/Manifest                     |   2 +
 media-gfx/superslicer/superslicer-2.5.59.10.ebuild | 108 +++++++++++++++++++++
 2 files changed, 110 insertions(+)

diff --git a/media-gfx/superslicer/Manifest b/media-gfx/superslicer/Manifest
index ea74f49bd757..3fa62116d439 100644
--- a/media-gfx/superslicer/Manifest
+++ b/media-gfx/superslicer/Manifest
@@ -1,3 +1,5 @@
+DIST superslicer-2.5.59.10-profiles.tar.gz 17933533 BLAKE2B d11e8660a9c04221ece8352695a78b302d0d934fca4cc26c17b44ba74d99271aa2f0088de4f36f718827f22073f5bdd90d1163c44d0fe0139b73e55929019ec8 SHA512 43dfe882fb52840abdcbc6c3c4441f7a02b2f21bfa986594e2c6399823508433a29d7372cdf28dab442ae831c0b89d1792e349944e797c899aaffeaf6b738ad6
+DIST superslicer-2.5.59.10.tar.gz 46034708 BLAKE2B 7d30b7e365d336725606f298b0b8ecbf56170e822c8d00a323d45bdf93ae399fb0a312e542ebde51642b7404820604338bd3606add60aad5c3e492e73ef5a28f SHA512 44f46a739f8e1769dd1883dd8ff88c6b3f0efbea2abcf9281cca22e48693ca8643a911c24325f0b8df7c66e3d32ad2e51854f09a67a4f2738ce0673c19485f1b
 DIST superslicer-2.5.59.2-profiles.tar.gz 16253775 BLAKE2B 20c99b14ba8ee26ea2a210962e78ea21928a5f32b1e799cbdbe60a3ef587ae1368efce885f5d253468ee9974af6a4419890e56d7df33761732bcefe8dbbc019e SHA512 c20ec66a95d5ec3e1e4fd8b1936bf1a4fc32fbad2c3d78774d5c2480be8a9dcacba5e561c57774a2c761d5189466083e7b6bd9b021a4ca7676e6a5e9676439d7
 DIST superslicer-2.5.59.2.tar.gz 45622782 BLAKE2B ff2fecf233d2710d706b64eb2191bfac39df3f631634de5f9eb1bca6ca712e94b0283beb7c6e9f3b293dc308b50240871ef8651a5355a4d7c5ea6092ac1a836b SHA512 af8878bd8e0c3e0dd5247ce01bdbd2b42b6766d81efbde11b71c6642787a12dfeaea91e653ac928066b9610cd911ea1f4dc77cf4823639030b3c104d955b8cbd
 DIST superslicer-2.5.59.8-profiles.tar.gz 17931886 BLAKE2B 953a777dd12971c355a5f48148d4c3831b9435cf08f1baecb32ff0ef6245678f81c53bf5078cc4d6d04642e9ee18e1023d5d1578ebdf1384c7c1ce44a1153c50 SHA512 2e4561de7c57308a91c8964c8a957bc10c5e4cedc47c5fc37633bbcf78e3576ed1eaa6d7126485e94eb0aa593940c73a460f3d5ad65f33001d32953caa2fb4e1

diff --git a/media-gfx/superslicer/superslicer-2.5.59.10.ebuild b/media-gfx/superslicer/superslicer-2.5.59.10.ebuild
new file mode 100644
index 000000000000..054295f8cc12
--- /dev/null
+++ b/media-gfx/superslicer/superslicer-2.5.59.10.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+WX_GTK_VER="3.0-gtk3"
+MY_PN="SuperSlicer"
+SLICER_PROFILES_COMMIT="ca25c7ec55dcc6073da61e39692c321cdb6497dc"
+
+inherit cmake wxwidgets xdg flag-o-matic
+
+DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)"
+HOMEPAGE="https://github.com/supermerill/SuperSlicer/"
+SRC_URI="
+	https://github.com/supermerill/SuperSlicer/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
+	https://github.com/slic3r/slic3r-profiles/archive/${SLICER_PROFILES_COMMIT}.tar.gz -> ${P}-profiles.tar.gz
+"
+
+LICENSE="AGPL-3 Boost-1.0 GPL-2 LGPL-3 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+RESTRICT="test"
+
+# No dep on sci-libs/libigl, in-tree version cannot build
+# static library currently. Using bundled one.
+RDEPEND="
+	dev-cpp/eigen:3
+	dev-cpp/tbb:=
+	dev-libs/boost:=[nls]
+	dev-libs/cereal
+	dev-libs/expat
+	dev-libs/glib:2
+	dev-libs/gmp:=
+	dev-libs/mpfr:=
+	dev-libs/imath:=
+	>=media-gfx/openvdb-8.2:=
+	net-misc/curl[adns]
+	media-libs/glew:0=
+	media-libs/libpng:0=
+	media-libs/qhull:=
+	sci-libs/nlopt
+	sci-libs/opencascade:=
+	>=sci-mathematics/cgal-5.0:=
+	sys-apps/dbus
+	sys-libs/zlib:=
+	virtual/glu
+	virtual/opengl
+	x11-libs/gtk+:3
+	x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]
+"
+DEPEND="${RDEPEND}
+	media-libs/qhull[static-libs]
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.5.59.2-boost.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-cereal.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-dont-install-angelscript.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-gcodeviewer-symlink-fix.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-missing-includes-fix.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-openexr3.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-wxgtk3-wayland-fix.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-relax-OpenCASCADE-dep.patch"
+	"${FILESDIR}/${PN}-2.5.59.2-link-occtwrapper-statically.patch"
+	"${FILESDIR}/${PN}-2.5.59.8-additional-imports-fixes.patch"
+	"${FILESDIR}/${PN}-2.5.59.8-fix-compilation-error-gnu17.patch"
+	"${FILESDIR}/${PN}-2.5.59.8-libnest2d-link-xcb.patch"
+	"${FILESDIR}/${PN}-2.5.59.8-boost-replace-load-string-file.patch"
+)
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_unpack() {
+	default
+
+	mv slic3r-profiles-*/* "${S}"/resources/profiles/ || die
+}
+
+src_configure() {
+	CMAKE_BUILD_TYPE="Release"
+
+	append-flags -fno-strict-aliasing
+
+	setup-wxwidgets
+
+	local mycmakeargs=(
+		-DOPENVDB_FIND_MODULE_PATH="/usr/$(get_libdir)/cmake/OpenVDB"
+
+		-DSLIC3R_BUILD_TESTS=$(usex test)
+		-DSLIC3R_FHS=ON
+		-DSLIC3R_GTK=3
+		-DSLIC3R_GUI=ON
+		-DSLIC3R_PCH=OFF
+		-DSLIC3R_STATIC=OFF
+		-DSLIC3R_WX_STABLE=ON
+		-Wno-dev
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	rm "${ED}/usr/lib/udev/rules.d/90-3dconnexion.rules" || die
+}


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

end of thread, other threads:[~2024-07-16  7:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-14 21:32 [gentoo-commits] repo/gentoo:master commit in: media-gfx/superslicer/ Piotr Karbowski
  -- strict thread matches above, loose matches on Subject: below --
2022-08-11 10:55 Sam James
2022-08-11 10:55 Sam James
2022-12-28 18:13 Piotr Karbowski
2022-12-28 22:25 Sam James
2023-06-04 13:33 Piotr Karbowski
2023-07-15 11:50 Arthur Zamarin
2023-11-26 12:38 Arthur Zamarin
2024-07-16  7:24 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox