GNU bug report logs

#76885 [PATCH] gnu: Add kamera.

PackageSource(s)Maintainer(s)
guix-patches PTS Buildd Popcon
Reply or subscribe to this bug. View this bug as an mbox, status mbox, or maintainer mbox

Report forwarded to guix-patches@gnu.org:
bug#76885; Package guix-patches. (Sun, 09 Mar 2025 10:21:03 GMT) (full text, mbox, link).


Acknowledgement sent to Sughosha <sughosha@disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches@gnu.org. (Sun, 09 Mar 2025 10:21:03 GMT) (full text, mbox, link).


Message #5 received at submit@debbugs.gnu.org (full text, mbox, reply):

From: Sughosha <sughosha@disroot.org>
To: guix-patches@gnu.org
Cc: Sughosha <sughosha@disroot.org>
Subject: [PATCH] gnu: Add kamera.
Date: Sun, 9 Mar 2025 15:49:30 +0530
* 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@gnu.org:
bug#76885; Package guix-patches. (Sun, 09 Mar 2025 10:33:01 GMT) (full text, mbox, link).


Message #8 received at 76885@debbugs.gnu.org (full text, mbox, reply):

From: Sughosha <sughosha@disroot.org>
To: 76885@debbugs.gnu.org
Cc: Sughosha <sughosha@disroot.org>
Subject: [PATCH v2] gnu: Add kamera.
Date: Sun, 9 Mar 2025 16:02:02 +0530
* 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@gnu.org:
bug#76885; Package guix-patches. (Sun, 09 Mar 2025 16:23:01 GMT) (full text, mbox, link).


Message #11 received at submit@debbugs.gnu.org (full text, mbox, reply):

From: Z572 <z572@z572.online>
To: Sughosha via Guix-patches via <guix-patches@gnu.org>
Cc: 76885-done@debbugs.gnu.org, Sughosha <sughosha@disroot.org>
Subject: Re: [bug#76885] [PATCH v2] gnu: Add kamera.
Date: Mon, 10 Mar 2025 00:22:23 +0800
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches@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@z572.online>:
You have taken responsibility. (Sun, 09 Mar 2025 16:23:03 GMT) (full text, mbox, link).


Notification sent to Sughosha <sughosha@disroot.org>:
bug acknowledged by developer. (Sun, 09 Mar 2025 16:23:03 GMT) (full text, mbox, link).


bug archived. Request was from Debbugs Internal Request <help-debbugs@gnu.org> to internal_control@debbugs.gnu.org. (Mon, 07 Apr 2025 11:24:06 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


debbugs.gnu.org maintainers <help-debbugs@gnu.org>. Last modified: Wed Apr 16 03:23:05 2025; Machine Name: wallace-server

GNU bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.