* [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9.
@ 2022-12-07 22:37 Sharlatan Hellseher
2022-12-07 22:41 ` ( via Guix-patches via
2022-12-09 0:27 ` Sharlatan Hellseher
0 siblings, 2 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2022-12-07 22:37 UTC (permalink / raw)
To: 59890; +Cc: Sharlatan Hellseher
* gnu/packages/photo.scm (rawtherapee): Update to 5.9.
[arguments]: Use gexp.
[inputs]: Remove labels.
---
gnu/packages/photo.scm | 67 +++++++++++++++++++++---------------------
1 file changed, 34 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index d86d4e7294..d8b0df22d1 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -755,50 +755,51 @@ (define-public hugin
(define-public rawtherapee
(package
(name "rawtherapee")
- (version "5.8")
+ (version "5.9")
(source (origin
(method url-fetch)
(uri (string-append "https://rawtherapee.com/shared/source/"
"rawtherapee-" version ".tar.xz"))
(sha256
(base32
- "0lq8qi7g0a28h3rab7bk5bbbd4gvfma42bvlz1dfn8p9mah2h19n"))))
+ "08s81mxnrj183bss2rb0hac1qyn7bmcnk3x2ymg1cp0q5322ibwf"))))
(build-system cmake-build-system)
(arguments
- '(#:tests? #f ; no test suite
- #:build-type "release"
- #:configure-flags
- (list (string-append "-DLENSFUNDBDIR="
- (assoc-ref %build-inputs "lensfun")
- "/share/lensfun")
- ;; Don't optimize the build for the host machine. See the file
- ;; 'ProcessorTargets.cmake' in the source distribution for more
- ;; information.
- "-DPROC_TARGET_NUMBER=1"
- ;; These flags are recommended by upstream for distributed packages.
- ;; See the file 'RELEASE_NOTES.txt' in the source distribution.
- "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
- "-DCMAKE_C_FLAGS=-O3 -fPIC"
- "-DCACHE_NAME_SUFFIX=\"\"")))
+ (list
+ #:tests? #f ; no test suite
+ #:build-type "release"
+ #:configure-flags
+ #~(list (string-append "-DLENSFUNDBDIR="
+ (assoc-ref %build-inputs "lensfun")
+ "/share/lensfun")
+ ;; Don't optimize the build for the host machine. See the file
+ ;; 'ProcessorTargets.cmake' in the source distribution for more
+ ;; information.
+ "-DPROC_TARGET_NUMBER=1"
+ ;; These flags are recommended by upstream for distributed packages.
+ ;; See the file 'RELEASE_NOTES.txt' in the source distribution.
+ "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
+ "-DCMAKE_C_FLAGS=-O3 -fPIC"
+ "-DCACHE_NAME_SUFFIX=\"\"")))
(native-inputs
(list pkg-config))
(inputs
- `(("expat" ,expat)
- ("fftw" ,fftwf)
- ("glib" ,glib)
- ("glibmm" ,glibmm)
- ("gtk+" ,gtk+)
- ("gtkmm" ,gtkmm-3)
- ("lcms" ,lcms)
- ("lensfun" ,lensfun)
- ("libcanberra" ,libcanberra)
- ("libiptcdata" ,libiptcdata)
- ("libjpeg" ,libjpeg-turbo)
- ("libpng" ,libpng)
- ("librsvg" ,librsvg)
- ("libsigc++" ,libsigc++)
- ("libtiff" ,libtiff)
- ("zlib" ,zlib)))
+ (list expat
+ fftwf
+ glib
+ glibmm
+ gtk+
+ gtkmm-3
+ lcms
+ lensfun
+ libcanberra
+ libiptcdata
+ libjpeg-turbo
+ libpng
+ librsvg
+ libsigc++
+ libtiff
+ zlib))
(home-page "https://rawtherapee.com")
(synopsis "Raw image developing and processing")
(description "RawTherapee is a raw image processing suite. It comprises a
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9.
2022-12-07 22:37 [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9 Sharlatan Hellseher
@ 2022-12-07 22:41 ` ( via Guix-patches via
2022-12-09 0:27 ` Sharlatan Hellseher
1 sibling, 0 replies; 4+ messages in thread
From: ( via Guix-patches via @ 2022-12-07 22:41 UTC (permalink / raw)
To: Sharlatan Hellseher, 59890
[-- Attachment #1: Type: text/plain, Size: 457 bytes --]
Heya,
On Wed Dec 7, 2022 at 10:37 PM GMT, Sharlatan Hellseher wrote:
> * gnu/packages/photo.scm (rawtherapee): Update to 5.9.
> [arguments]: Use gexp.
> [inputs]: Remove labels.
> --- a/gnu/packages/photo.scm
> +++ b/gnu/packages/photo.scm
> @@ -755,50 +755,51 @@ (define-public hugin
> + (assoc-ref %build-inputs "lensfun")
You should replace this with:
#$(this-package-input "lensfun")
-- (
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9.
2022-12-07 22:37 [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9 Sharlatan Hellseher
2022-12-07 22:41 ` ( via Guix-patches via
@ 2022-12-09 0:27 ` Sharlatan Hellseher
2022-12-09 6:19 ` bug#59890: " 宋文武 via Guix-patches via
1 sibling, 1 reply; 4+ messages in thread
From: Sharlatan Hellseher @ 2022-12-09 0:27 UTC (permalink / raw)
To: 59890; +Cc: Sharlatan Hellseher
* gnu/packages/photo.scm (rawtherapee): Update to 5.9.
[arguments]: Use gexp.
[inputs]: Remove labels.
---
gnu/packages/photo.scm | 67 +++++++++++++++++++++---------------------
1 file changed, 34 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index d86d4e7294..4d85611101 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -755,50 +755,51 @@ (define-public hugin
(define-public rawtherapee
(package
(name "rawtherapee")
- (version "5.8")
+ (version "5.9")
(source (origin
(method url-fetch)
(uri (string-append "https://rawtherapee.com/shared/source/"
"rawtherapee-" version ".tar.xz"))
(sha256
(base32
- "0lq8qi7g0a28h3rab7bk5bbbd4gvfma42bvlz1dfn8p9mah2h19n"))))
+ "08s81mxnrj183bss2rb0hac1qyn7bmcnk3x2ymg1cp0q5322ibwf"))))
(build-system cmake-build-system)
(arguments
- '(#:tests? #f ; no test suite
- #:build-type "release"
- #:configure-flags
- (list (string-append "-DLENSFUNDBDIR="
- (assoc-ref %build-inputs "lensfun")
- "/share/lensfun")
- ;; Don't optimize the build for the host machine. See the file
- ;; 'ProcessorTargets.cmake' in the source distribution for more
- ;; information.
- "-DPROC_TARGET_NUMBER=1"
- ;; These flags are recommended by upstream for distributed packages.
- ;; See the file 'RELEASE_NOTES.txt' in the source distribution.
- "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
- "-DCMAKE_C_FLAGS=-O3 -fPIC"
- "-DCACHE_NAME_SUFFIX=\"\"")))
+ (list
+ #:tests? #f ; no test suite
+ #:build-type "release"
+ #:configure-flags
+ #~(list (string-append "-DLENSFUNDBDIR="
+ #$(this-package-input "lensfun")
+ "/share/lensfun")
+ ;; Don't optimize the build for the host machine. See the file
+ ;; 'ProcessorTargets.cmake' in the source distribution for more
+ ;; information.
+ "-DPROC_TARGET_NUMBER=1"
+ ;; These flags are recommended by upstream for distributed packages.
+ ;; See the file 'RELEASE_NOTES.txt' in the source distribution.
+ "-DCMAKE_CXX_FLAGS=-O3 -fPIC"
+ "-DCMAKE_C_FLAGS=-O3 -fPIC"
+ "-DCACHE_NAME_SUFFIX=\"\"")))
(native-inputs
(list pkg-config))
(inputs
- `(("expat" ,expat)
- ("fftw" ,fftwf)
- ("glib" ,glib)
- ("glibmm" ,glibmm)
- ("gtk+" ,gtk+)
- ("gtkmm" ,gtkmm-3)
- ("lcms" ,lcms)
- ("lensfun" ,lensfun)
- ("libcanberra" ,libcanberra)
- ("libiptcdata" ,libiptcdata)
- ("libjpeg" ,libjpeg-turbo)
- ("libpng" ,libpng)
- ("librsvg" ,librsvg)
- ("libsigc++" ,libsigc++)
- ("libtiff" ,libtiff)
- ("zlib" ,zlib)))
+ (list expat
+ fftwf
+ glib
+ glibmm
+ gtk+
+ gtkmm-3
+ lcms
+ lensfun
+ libcanberra
+ libiptcdata
+ libjpeg-turbo
+ libpng
+ librsvg
+ libsigc++
+ libtiff
+ zlib))
(home-page "https://rawtherapee.com")
(synopsis "Raw image developing and processing")
(description "RawTherapee is a raw image processing suite. It comprises a
base-commit: dfa0f34ee76e61e4343cc49ab2b302773cc04507
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#59890: [PATCH] gnu: rawtherapee: Update to 5.9.
2022-12-09 0:27 ` Sharlatan Hellseher
@ 2022-12-09 6:19 ` 宋文武 via Guix-patches via
0 siblings, 0 replies; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2022-12-09 6:19 UTC (permalink / raw)
To: Sharlatan Hellseher; +Cc: 59890-done
Sharlatan Hellseher <sharlatanus@gmail.com> writes:
> * gnu/packages/photo.scm (rawtherapee): Update to 5.9.
> [arguments]: Use gexp.
> [inputs]: Remove labels.
Pushed, thank you!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-12-09 6:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-07 22:37 [bug#59890] [PATCH] gnu: rawtherapee: Update to 5.9 Sharlatan Hellseher
2022-12-07 22:41 ` ( via Guix-patches via
2022-12-09 0:27 ` Sharlatan Hellseher
2022-12-09 6:19 ` bug#59890: " 宋文武 via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).