GNU bug report logs -
#76885
[PATCH] gnu: Add kamera.
Previous Next
Reported by: Sughosha <sughosha <at> disroot.org>
Date: Sun, 9 Mar 2025 10:21:03 UTC
Severity: normal
Tags: patch
Done: Z572 <z572 <at> z572.online>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 76885 in the body.
You can then email your comments to 76885 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#76885
; Package
guix-patches
.
(Sun, 09 Mar 2025 10:21:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sughosha <sughosha <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 09 Mar 2025 10:21:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-utils.scm (kamera): New variable.
Change-Id: I30569d5a1149e8a06391f82faca5680af4b7d802
---
gnu/packages/kde-utils.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index 300b90a49f..4974b5b730 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -46,6 +46,7 @@ (define-module (gnu packages kde-utils)
#:use-module (gnu packages mp3)
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages pdf)
+ #:use-module (gnu packages photo)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages kde)
#:use-module (gnu packages kde-frameworks)
@@ -349,6 +350,38 @@ (define-public isoimagewriter
"This package provides a tool to write ISO files to USB disks.")
(license license:gpl3+)))
+(define-public kamera
+ (package
+ (name "kamera")
+ (version "24.12.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/"
+ version "/src/kamera-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1jvd5lhjpfl9zs53qg69440awqxxhzdkjni0pqk80y953kfsghx0"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase))
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list libgphoto2
+ kcmutils
+ kconfig
+ kconfigwidgets
+ kxmlgui
+ ki18n
+ kio))
+ (home-page "https://apps.kde.org/kamera/")
+ (synopsis "KDE integration to digital cameras")
+ (description
+ "Kamera provides a configuration tool and a KIO worker to read and write
+to camera devices supported by @code{libgphoto2} using
+@acronym{PTP,Pictute Transfer Protocol}.")
+ (license license:gpl2+)))
+
(define-public kate
(package
(name "kate")
base-commit: f3f09fb4a370fd0363fd216f73736164a2a29f7b
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#76885
; Package
guix-patches
.
(Sun, 09 Mar 2025 10:33:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 76885 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-utils.scm (kamera): New variable.
Change-Id: Ic1ff5c386cc40f58cd0e3b8486b9127f5b1e61fd
---
gnu/packages/kde-utils.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index 300b90a49f..3101738452 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -46,6 +46,7 @@ (define-module (gnu packages kde-utils)
#:use-module (gnu packages mp3)
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages pdf)
+ #:use-module (gnu packages photo)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages kde)
#:use-module (gnu packages kde-frameworks)
@@ -349,6 +350,38 @@ (define-public isoimagewriter
"This package provides a tool to write ISO files to USB disks.")
(license license:gpl3+)))
+(define-public kamera
+ (package
+ (name "kamera")
+ (version "24.12.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/"
+ version "/src/kamera-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1jvd5lhjpfl9zs53qg69440awqxxhzdkjni0pqk80y953kfsghx0"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase))
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list kcmutils
+ kconfig
+ kconfigwidgets
+ kxmlgui
+ ki18n
+ kio
+ libgphoto2))
+ (home-page "https://apps.kde.org/kamera/")
+ (synopsis "KDE integration to digital cameras")
+ (description
+ "Kamera provides a configuration tool and a KIO worker to read and write
+to camera devices supported by @code{libgphoto2} using
+@acronym{PTP,Pictute Transfer Protocol}.")
+ (license license:gpl2+)))
+
(define-public kate
(package
(name "kate")
base-commit: f3f09fb4a370fd0363fd216f73736164a2a29f7b
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#76885
; Package
guix-patches
.
(Sun, 09 Mar 2025 16:23:01 GMT)
Full text and
rfc822 format available.
Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/kde-utils.scm (kamera): New variable.
>
> Change-Id: Ic1ff5c386cc40f58cd0e3b8486b9127f5b1e61fd
> ---
> gnu/packages/kde-utils.scm | 33 +++++++++++++++++++++++++++++++++
> 1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
> index 300b90a49f..3101738452 100644
> --- a/gnu/packages/kde-utils.scm
> +++ b/gnu/packages/kde-utils.scm
> @@ -46,6 +46,7 @@ (define-module (gnu packages kde-utils)
> #:use-module (gnu packages mp3)
> #:use-module (gnu packages multiprecision)
> #:use-module (gnu packages pdf)
> + #:use-module (gnu packages photo)
> #:use-module (gnu packages pkg-config)
> #:use-module (gnu packages kde)
> #:use-module (gnu packages kde-frameworks)
> @@ -349,6 +350,38 @@ (define-public isoimagewriter
> "This package provides a tool to write ISO files to USB disks.")
> (license license:gpl3+)))
>
> +(define-public kamera
> + (package
> + (name "kamera")
> + (version "24.12.3")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "mirror://kde/stable/release-service/"
> + version "/src/kamera-" version ".tar.xz"))
> + (sha256
> + (base32
> + "1jvd5lhjpfl9zs53qg69440awqxxhzdkjni0pqk80y953kfsghx0"))))
> + (build-system qt-build-system)
> + (arguments
> + (list #:qtbase qtbase))
> + (native-inputs
> + (list extra-cmake-modules kdoctools))
> + (inputs
> + (list kcmutils
> + kconfig
> + kconfigwidgets
> + kxmlgui
> + ki18n
> + kio
> + libgphoto2))
> + (home-page "https://apps.kde.org/kamera/")
> + (synopsis "KDE integration to digital cameras")
> + (description
> + "Kamera provides a configuration tool and a KIO worker to read and write
> +to camera devices supported by @code{libgphoto2} using
> +@acronym{PTP,Pictute Transfer Protocol}.")
> + (license license:gpl2+)))
> +
> (define-public kate
> (package
> (name "kate")
>
> base-commit: f3f09fb4a370fd0363fd216f73736164a2a29f7b
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Z572 <z572 <at> z572.online>
:
You have taken responsibility.
(Sun, 09 Mar 2025 16:23:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sughosha <sughosha <at> disroot.org>
:
bug acknowledged by developer.
(Sun, 09 Mar 2025 16:23:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 07 Apr 2025 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 42 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.