* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2017-10-14 15:13 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2017-10-14 15:13 UTC (permalink / raw
To: gentoo-commits
commit: 17961ffa4f36a2f0d28ecdf78420bfde1ecc4149
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 14 12:39:38 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct 14 15:06:15 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17961ffa
x11-misc/fraqtive: Drop USE=qt5
Gentoo-bug: 631884
Package-Manager: Portage-2.3.11, Repoman-2.3.3
x11-misc/fraqtive/fraqtive-0.4.8.ebuild | 23 ++++++-----------------
1 file changed, 6 insertions(+), 17 deletions(-)
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
index 5c0a787ab56..a97d45c95d5 100644
--- a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
+++ b/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
@@ -5,25 +5,18 @@ EAPI=5
inherit eutils gnome2-utils qmake-utils toolchain-funcs
DESCRIPTION="an open source, multi-platform generator of the Mandelbrot family fractals"
-HOMEPAGE="http://fraqtive.mimec.org/"
+HOMEPAGE="https://fraqtive.mimec.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="qt5 cpu_flags_x86_sse2"
+IUSE="cpu_flags_x86_sse2"
RDEPEND="
- !qt5? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- dev-qt/qtopengl:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtopengl:5
- )
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtopengl:5
virtual/glu
"
DEPEND="
@@ -49,11 +42,7 @@ src_configure() {
# Don't strip wrt #252096
echo "QMAKE_STRIP =" >> "${S}"/config.pri
- if use qt5; then
- eqmake5
- else
- eqmake4
- fi
+ eqmake5
}
src_install() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2019-04-22 10:41 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2019-04-22 10:41 UTC (permalink / raw
To: gentoo-commits
commit: 6664dbad282fa7ce931d74f9f1dbe345fad17de0
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 09:21:48 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 10:41:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6664dbad
x11-misc/fraqtive: EAPI-7 bump, add missing DEPENDs
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild | 51 ++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild
new file mode 100644
index 00000000000..331b0ef776a
--- /dev/null
+++ b/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils toolchain-funcs xdg
+
+DESCRIPTION="Open source, multi-platform generator of the Mandelbrot family fractals"
+HOMEPAGE="https://fraqtive.mimec.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_sse2"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtopengl:5
+ virtual/glu
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-qt-includes.patch" )
+
+src_configure() {
+ tc-export PKG_CONFIG
+ sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die
+ local conf="release"
+
+ if use cpu_flags_x86_sse2; then
+ conf="$conf sse2"
+ else
+ conf="$conf no-sse2"
+ fi
+
+ echo "CONFIG += $conf" > config.pri
+ echo "PREFIX = ${EPREFIX}/usr" >> config.pri
+ # Don't strip wrt #252096
+ echo "QMAKE_STRIP =" >> config.pri
+
+ eqmake5
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2019-04-22 10:41 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2019-04-22 10:41 UTC (permalink / raw
To: gentoo-commits
commit: bf9262172f711ad0c4929a1e7940e696039ea91a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 09:22:18 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 10:41:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf926217
x11-misc/fraqtive: Drop 0.4.8 (r0)
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-misc/fraqtive/fraqtive-0.4.8.ebuild | 62 ---------------------------------
1 file changed, 62 deletions(-)
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
deleted file mode 100644
index a97d45c95d5..00000000000
--- a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils qmake-utils toolchain-funcs
-
-DESCRIPTION="an open source, multi-platform generator of the Mandelbrot family fractals"
-HOMEPAGE="https://fraqtive.mimec.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cpu_flags_x86_sse2"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtopengl:5
- virtual/glu
-"
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-src_configure() {
- epatch "${FILESDIR}/${P}-qt-includes.patch"
-
- tc-export PKG_CONFIG
- sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die
- local conf="release"
-
- if use cpu_flags_x86_sse2; then
- conf="$conf sse2"
- else
- conf="$conf no-sse2"
- fi
-
- echo "CONFIG += $conf" > "${S}"/config.pri
- echo "PREFIX = ${EPREFIX}/usr" >> "${S}"/config.pri
- # Don't strip wrt #252096
- echo "QMAKE_STRIP =" >> "${S}"/config.pri
-
- eqmake5
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2020-05-29 8:05 Jeroen Roovers
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers @ 2020-05-29 8:05 UTC (permalink / raw
To: gentoo-commits
commit: 0ee8df59576601e98af0269aa96a66f2f8b713c6
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri May 29 08:04:21 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri May 29 08:05:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee8df59
x11-misc/fraqtive: Depend on dev-qt/qtxml:5
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Closes: https://bugs.gentoo.org/726040
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
.../fraqtive/{fraqtive-0.4.8-r1.ebuild => fraqtive-0.4.8-r2.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
similarity index 94%
rename from x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild
rename to x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
index 331b0ef776a..7c98c206900 100644
--- a/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild
+++ b/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
@@ -1,8 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-
inherit qmake-utils toolchain-funcs xdg
DESCRIPTION="Open source, multi-platform generator of the Mandelbrot family fractals"
@@ -21,6 +20,7 @@ DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
+ dev-qt/qtxml:5
virtual/glu
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2022-02-14 20:09 Jonas Stein
0 siblings, 0 replies; 7+ messages in thread
From: Jonas Stein @ 2022-02-14 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 7b4c1e9c713559b4a23b1513e32e2df737bd5c7b
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 14 20:07:57 2022 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Feb 14 20:08:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b4c1e9c
x11-misc/fraqtive: drop project desktop-misc
Drop project desktop-misc from the list of maintainers.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild | 4 ++--
x11-misc/fraqtive/metadata.xml | 11 ++++-------
2 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
index 0b5059a75c4d..4f7df3a77d82 100644
--- a/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
+++ b/x11-misc/fraqtive/fraqtive-0.4.8-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
inherit qmake-utils toolchain-funcs xdg
DESCRIPTION="Open source, multi-platform generator of the Mandelbrot family fractals"
-HOMEPAGE="https://fraqtive.mimec.org/"
+HOMEPAGE="https://fraqtive.mimec.org/ https://github.com/mimecorg/fraqtive"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
diff --git a/x11-misc/fraqtive/metadata.xml b/x11-misc/fraqtive/metadata.xml
index 45bdd4629ff9..c8122e8ebae5 100644
--- a/x11-misc/fraqtive/metadata.xml
+++ b/x11-misc/fraqtive/metadata.xml
@@ -1,11 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>desktop-misc@gentoo.org</email>
- <name>Gentoo Desktop Miscellaneous Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">fraqtive</remote-id>
- </upstream>
+<!-- maintainer-needed -->
+ <upstream>
+ <remote-id type="sourceforge">fraqtive</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2023-02-22 19:56 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-02-22 19:56 UTC (permalink / raw
To: gentoo-commits
commit: 93789235ae2842d02b9cb2b7d0fb4a0452db69dd
Author: Cristian Othón Martínez Vera <cfuga <AT> cfuga <DOT> mx>
AuthorDate: Wed Feb 22 19:48:06 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 19:55:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93789235
x11-misc/fraqtive: fix MissingRemoteId for maintainer-needed packages
Signed-off-by: Cristian Othón Martínez Vera <cfuga <AT> cfuga.mx>
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-misc/fraqtive/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/x11-misc/fraqtive/metadata.xml b/x11-misc/fraqtive/metadata.xml
index c8122e8ebae5..ee82dad00b2a 100644
--- a/x11-misc/fraqtive/metadata.xml
+++ b/x11-misc/fraqtive/metadata.xml
@@ -4,5 +4,6 @@
<!-- maintainer-needed -->
<upstream>
<remote-id type="sourceforge">fraqtive</remote-id>
+ <remote-id type="github">mimecorg/fraqtive</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/
@ 2024-07-21 15:12 Conrad Kostecki
0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2024-07-21 15:12 UTC (permalink / raw
To: gentoo-commits
commit: e1d7a20c2fd0bdd1fb607ada48244f3652100ddf
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Jul 16 15:57:01 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:05:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d7a20c
x11-misc/fraqtive: add 0.4.8.1
Closes: https://bugs.gentoo.org/900757
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37581
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/fraqtive/Manifest | 1 +
x11-misc/fraqtive/fraqtive-0.4.8.1.ebuild | 50 +++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/x11-misc/fraqtive/Manifest b/x11-misc/fraqtive/Manifest
index 309b824fe76e..ae656c25fbcf 100644
--- a/x11-misc/fraqtive/Manifest
+++ b/x11-misc/fraqtive/Manifest
@@ -1 +1,2 @@
+DIST fraqtive-0.4.8.1.tar.gz 291381 BLAKE2B a5f93d42767c35ff7e27c87e89133a1c9d045acbb8b59c87799c5b838361aaba47af6ef001914f29eb27e2830ec3bdebe36111c1ae65e1f18a219367d168397c SHA512 d08659305dcc698a1fd0a81a833e4ffb8bc6496f7a95d7908d9f64ba1b51f9585be9b51ff44a15ca3a051d478ba0e04803f16cfd9abc56f426c8aa2f3e094c80
DIST fraqtive-0.4.8.tar.bz2 260484 BLAKE2B 0bbbd983af324c38fb73db043e808de6cbf8e3e39073163b748215a2a3a374e53e4118b7fb0993685d3eef4ef6b65afcc51c5a7d23f4ab91ffc2dfd41305171d SHA512 8b4be81dd14fe086dbcffda123395ccb30a197e7762e590bc3ab7dc1d0aafb44dc45e1445e2f83198a0c1f4b9ea0d54a7de1989c3b85c0f2e5f474a67255d942
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8.1.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8.1.ebuild
new file mode 100644
index 000000000000..94004917cc29
--- /dev/null
+++ b/x11-misc/fraqtive/fraqtive-0.4.8.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils toolchain-funcs xdg
+
+DESCRIPTION="Open source, multi-platform generator of the Mandelbrot family fractals"
+HOMEPAGE="https://fraqtive.mimec.org/ https://github.com/mimecorg/fraqtive"
+SRC_URI="https://github.com/mimecorg/fraqtive/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_sse2"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtopengl:5
+ dev-qt/qtxml:5
+ virtual/glu
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ tc-export PKG_CONFIG
+ sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die
+ local conf="release"
+
+ if use cpu_flags_x86_sse2; then
+ conf="$conf sse2"
+ else
+ conf="$conf no-sse2"
+ fi
+
+ echo "CONFIG += $conf" > config.pri || die
+ echo "PREFIX = ${EPREFIX}/usr" >> config.pri || die
+ # Don't strip wrt #252096
+ echo "QMAKE_STRIP =" >> config.pri || die
+
+ eqmake5
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-07-21 15:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-22 19:56 [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-07-21 15:12 Conrad Kostecki
2022-02-14 20:09 Jonas Stein
2020-05-29 8:05 Jeroen Roovers
2019-04-22 10:41 Andreas Sturmlechner
2019-04-22 10:41 Andreas Sturmlechner
2017-10-14 15:13 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox