public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/rawtherapee/
Date: Sun, 18 Dec 2022 07:46:51 +0000 (UTC)	[thread overview]
Message-ID: <1671349595.7e249d8949fe06eca27f6fa1c2a517fc7cc87140.sam@gentoo> (raw)

commit:     7e249d8949fe06eca27f6fa1c2a517fc7cc87140
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 07:31:14 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 07:46:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e249d89

media-gfx/rawtherapee: fix revbump order

Sorry for the noise. The script didn't get ordering right
in all cases.

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

 media-gfx/rawtherapee/rawtherapee-5.8-r2.ebuild    | 75 ----------------------
 ...pee-5.8-r1.ebuild => rawtherapee-5.8-r3.ebuild} |  0
 ...erapee-5.9.ebuild => rawtherapee-5.9-r1.ebuild} | 11 +++-
 3 files changed, 8 insertions(+), 78 deletions(-)

diff --git a/media-gfx/rawtherapee/rawtherapee-5.8-r2.ebuild b/media-gfx/rawtherapee/rawtherapee-5.8-r2.ebuild
deleted file mode 100644
index dc930b95e291..000000000000
--- a/media-gfx/rawtherapee/rawtherapee-5.8-r2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P=${P/_rc/-rc}
-inherit cmake flag-o-matic toolchain-funcs xdg-utils
-
-DESCRIPTION="A powerful cross-platform raw image processing program"
-HOMEPAGE="https://www.rawtherapee.com/"
-SRC_URI="https://rawtherapee.com/shared/source/${MY_P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="openmp tcmalloc"
-
-RDEPEND="
-	dev-libs/expat
-	dev-libs/libsigc++:2
-	media-libs/lcms:2
-	media-libs/lensfun
-	media-libs/libcanberra[gtk3]
-	media-libs/libiptcdata
-	media-libs/libjpeg-turbo:=
-	media-libs/libpng:0=
-	media-libs/tiff:=
-	sci-libs/fftw:3.0=
-	sys-libs/zlib
-	x11-libs/gtk+:3
-	tcmalloc? ( dev-util/google-perftools )"
-DEPEND="${RDEPEND}
-	dev-cpp/gtkmm:3.0
-	gnome-base/librsvg"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
-	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_configure() {
-	# upstream tested that "fast-math" give wrong results, so filter it
-	# https://bugs.gentoo.org/show_bug.cgi?id=606896#c2
-	filter-flags -ffast-math
-	# -Ofast enable "fast-math" both in gcc and clang
-	replace-flags -Ofast -O3
-	# In case we add an ebuild for klt we can (i)use that one,
-	# see http://cecas.clemson.edu/~stb/klt/
-	local mycmakeargs=(
-		-DOPTION_OMP=$(usex openmp)
-		-DDOCDIR=/usr/share/doc/${PF}
-		-DCREDITSDIR=/usr/share/${PN}
-		-DLICENCEDIR=/usr/share/${PN}
-		-DCACHE_NAME_SUFFIX=""
-		-DWITH_SYSTEM_KLT="off"
-		-DENABLE_TCMALLOC=$(usex tcmalloc)
-	)
-	cmake_src_configure
-}
-
-pkg_postinst() {
-	xdg_icon_cache_update
-	xdg_desktop_database_update
-}
-
-pkg_postrm() {
-	xdg_icon_cache_update
-	xdg_desktop_database_update
-}

diff --git a/media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild b/media-gfx/rawtherapee/rawtherapee-5.8-r3.ebuild
similarity index 100%
rename from media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild
rename to media-gfx/rawtherapee/rawtherapee-5.8-r3.ebuild

diff --git a/media-gfx/rawtherapee/rawtherapee-5.9.ebuild b/media-gfx/rawtherapee/rawtherapee-5.9-r1.ebuild
similarity index 92%
rename from media-gfx/rawtherapee/rawtherapee-5.9.ebuild
rename to media-gfx/rawtherapee/rawtherapee-5.9-r1.ebuild
index ce58450f30cb..29147172e67c 100644
--- a/media-gfx/rawtherapee/rawtherapee-5.9.ebuild
+++ b/media-gfx/rawtherapee/rawtherapee-5.9-r1.ebuild
@@ -16,8 +16,15 @@ KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="openmp tcmalloc"
 
 RDEPEND="
+	dev-cpp/atkmm:=
+	dev-cpp/cairomm:=
+	dev-cpp/glibmm:=
+	dev-cpp/gtkmm:3.0
+	dev-cpp/pangomm:=
 	dev-libs/expat
+	dev-libs/glib:=
 	dev-libs/libsigc++:2
+	gnome-base/librsvg
 	media-libs/lcms:2
 	media-libs/lensfun
 	media-libs/libcanberra[gtk3]
@@ -29,9 +36,7 @@ RDEPEND="
 	sys-libs/zlib
 	x11-libs/gtk+:3
 	tcmalloc? ( dev-util/google-perftools )"
-DEPEND="${RDEPEND}
-	dev-cpp/gtkmm:3.0
-	gnome-base/librsvg"
+DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
 S="${WORKDIR}/${MY_P}"


             reply	other threads:[~2022-12-18  7:46 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-18  7:46 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-04 18:39 [gentoo-commits] repo/gentoo:master commit in: media-gfx/rawtherapee/ Andreas Sturmlechner
2024-10-23 23:24 Jakov Smolić
2024-10-23 15:56 Sam James
2024-10-16 12:00 Ben Kohler
2024-10-16 11:44 Ben Kohler
2024-10-03 10:33 Jakov Smolić
2024-10-02 20:50 Sam James
2024-08-30 15:37 Ben Kohler
2024-04-27 12:16 Ben Kohler
2024-04-26 14:31 Ben Kohler
2024-03-10 13:11 Ben Kohler
2024-02-19 13:15 Ben Kohler
2023-03-30 18:05 Ben Kohler
2023-03-08 21:25 Ben Kohler
2023-02-25 14:10 Ben Kohler
2023-02-09 13:34 Joonas Niilola
2023-02-09  8:50 Joonas Niilola
2022-12-22 17:49 Ben Kohler
2022-12-18  5:28 Yixun Lan
2022-12-18  1:40 Sam James
2022-12-17 22:37 Ben Kohler
2022-09-16 13:51 Ben Kohler
2022-08-12 13:21 Yixun Lan
2022-05-14 21:30 David Seifert
2022-04-29  3:07 Sam James
2022-02-13  8:41 Jakov Smolić
2021-12-09 16:22 Agostino Sarubbo
2021-08-11 15:18 Joonas Niilola
2021-08-11 15:18 Joonas Niilola
2020-09-04 14:05 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-02-26 18:36 Andreas Sturmlechner
2019-09-26 15:51 Joonas Niilola
2019-09-22 20:48 Andreas Sturmlechner
2019-07-18 15:30 Andreas Sturmlechner
2019-07-18 11:44 Agostino Sarubbo
2019-07-18  9:54 Agostino Sarubbo
2019-05-15 12:31 Andreas Sturmlechner
2019-05-15 12:31 Andreas Sturmlechner
2019-04-13 19:10 Agostino Sarubbo
2019-01-04 13:02 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2019-01-04 13:00 Andreas Sturmlechner
2018-10-27 19:00 Mikle Kolyada
2018-10-26  0:52 Thomas Deutschmann
2018-03-29 12:42 Michał Górny
2018-03-29 12:42 Michał Górny
2017-10-26 18:54 Thomas Deutschmann
2017-10-03 21:52 Patrice Clement
2017-05-23 21:31 Patrice Clement
2017-03-22 10:45 Marek Szuba
2017-03-20 13:31 Luca Barbato
2015-12-15 20:16 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1671349595.7e249d8949fe06eca27f6fa1c2a517fc7cc87140.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox