* [bug#70149] [PATCH] gnu: Add kwalletmanager.
@ 2024-04-02 16:46 Sughosha via Guix-patches via
2024-04-03 13:57 ` Zheng Junjie
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Sughosha via Guix-patches via @ 2024-04-02 16:46 UTC (permalink / raw)
To: 70149; +Cc: Sughosha
* gnu/packages/kde-utils.scm (kwalletmanager): New variable.
---
gnu/packages/kde-utils.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index 6735bf2aea..6f8fd995d1 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -984,6 +984,44 @@ (define-public krusader
great on your desktop.")
(license license:gpl2+)))
+(define-public kwalletmanager
+ (package
+ (name "kwalletmanager")
+ (version "23.04.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/kwalletmanager-" version ".tar.xz"))
+ (sha256
+ (base32 "1g3yw32kv7yij2ymk52fpp0srncr2ijfckfvz5hc0nsn7xhyqdby"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list karchive
+ kauth
+ kcmutils
+ kconfig
+ kconfigwidgets
+ kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kio
+ kjobwidgets
+ knotifications
+ kservice
+ ktextwidgets
+ kwallet
+ kwindowsystem
+ kxmlgui))
+ (home-page "https://apps.kde.org/kwalletmanager5/")
+ (synopsis "Tool to manage passwords on KWallet")
+ (description
+ "This package provides a tool to manage passwords on @code{kwallet}.")
+ (license license:gpl2+)))
+
(define-public kxstitch
(package
(name "kxstitch")
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#70149] [PATCH] gnu: Add kwalletmanager.
2024-04-02 16:46 [bug#70149] [PATCH] gnu: Add kwalletmanager Sughosha via Guix-patches via
@ 2024-04-03 13:57 ` Zheng Junjie
2024-04-07 9:24 ` Sughosha via Guix-patches via
2024-04-07 9:24 ` [bug#70149] [PATCH v2] " Sughosha via Guix-patches via
2 siblings, 0 replies; 5+ messages in thread
From: Zheng Junjie @ 2024-04-03 13:57 UTC (permalink / raw)
To: Sughosha; +Cc: 70149
[-- Attachment #1: Type: text/plain, Size: 1861 bytes --]
Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/kde-utils.scm (kwalletmanager): New variable.
> ---
> gnu/packages/kde-utils.scm | 38 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
> index 6735bf2aea..6f8fd995d1 100644
> --- a/gnu/packages/kde-utils.scm
> +++ b/gnu/packages/kde-utils.scm
> @@ -984,6 +984,44 @@ (define-public krusader
> great on your desktop.")
> (license license:gpl2+)))
>
> +(define-public kwalletmanager
> + (package
> + (name "kwalletmanager")
> + (version "23.04.3")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://kde/stable/release-service/" version
> + "/src/kwalletmanager-" version ".tar.xz"))
> + (sha25670149
> + (base32 "1g3yw32kv7yij2ymk52fpp0srncr2ijfckfvz5hc0nsn7xhyqdby"))))
> + (build-system qt-build-system)
> + (native-inputs
> + (list extra-cmake-modules kdoctools))
> + (inputs
> + (list karchive
> + kauth
> + kcmutils
> + kconfig
> + kconfigwidgets
> + kcoreaddons
> + kcrash
> + kdbusaddons
> + ki18n
> + kio
> + kjobwidgets
> + knotifications
> + kservice
> + ktextwidgets
> + kwallet
> + kwindowsystem
> + kxmlgui))
> + (home-page "https://apps.kde.org/kwalletmanager5/")
> + (synopsis "Tool to manage passwords on KWallet")
> + (description
> + "This package provides a tool to manage passwords on @code{kwallet}.")
> + (license license:gpl2+)))
> +
> (define-public kxstitch
> (package
> (name "kxstitch")
LGTM
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#70149] [PATCH] gnu: Add kwalletmanager.
2024-04-02 16:46 [bug#70149] [PATCH] gnu: Add kwalletmanager Sughosha via Guix-patches via
2024-04-03 13:57 ` Zheng Junjie
@ 2024-04-07 9:24 ` Sughosha via Guix-patches via
2024-04-07 9:24 ` [bug#70149] [PATCH v2] " Sughosha via Guix-patches via
2 siblings, 0 replies; 5+ messages in thread
From: Sughosha via Guix-patches via @ 2024-04-07 9:24 UTC (permalink / raw)
To: 70149
I think that kwalletmanager fits better in kde-systemtools.
--
Sughosha
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#70149] [PATCH v2] gnu: Add kwalletmanager.
2024-04-02 16:46 [bug#70149] [PATCH] gnu: Add kwalletmanager Sughosha via Guix-patches via
2024-04-03 13:57 ` Zheng Junjie
2024-04-07 9:24 ` Sughosha via Guix-patches via
@ 2024-04-07 9:24 ` Sughosha via Guix-patches via
2024-04-30 15:01 ` Z572
2 siblings, 1 reply; 5+ messages in thread
From: Sughosha via Guix-patches via @ 2024-04-07 9:24 UTC (permalink / raw)
To: 70149; +Cc: Sughosha
* gnu/packages/kde-systemtools.scm (kwalletmanager): New variable.
Change-Id: I8710fcc7dc63bc6051452caa832a4996da854b32
---
gnu/packages/kde-systemtools.scm | 38 ++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm
index 56ce37fea8..888fae10cb 100644
--- a/gnu/packages/kde-systemtools.scm
+++ b/gnu/packages/kde-systemtools.scm
@@ -340,6 +340,44 @@ (define-public ksystemlog
This package is part of the KDE administration module.")
(license license:gpl2+)))
+(define-public kwalletmanager
+ (package
+ (name "kwalletmanager")
+ (version "23.04.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/kwalletmanager-" version ".tar.xz"))
+ (sha256
+ (base32 "1g3yw32kv7yij2ymk52fpp0srncr2ijfckfvz5hc0nsn7xhyqdby"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list karchive
+ kauth
+ kcmutils
+ kconfig
+ kconfigwidgets
+ kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kio
+ kjobwidgets
+ knotifications
+ kservice
+ ktextwidgets
+ kwallet
+ kwindowsystem
+ kxmlgui))
+ (home-page "https://apps.kde.org/kwalletmanager5/")
+ (synopsis "Tool to manage passwords on KWallet")
+ (description
+ "This package provides a tool to manage passwords on @code{kwallet}.")
+ (license license:gpl2+)))
+
(define-public spectacle
(package
(name "spectacle")
base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#70149] [PATCH v2] gnu: Add kwalletmanager.
2024-04-07 9:24 ` [bug#70149] [PATCH v2] " Sughosha via Guix-patches via
@ 2024-04-30 15:01 ` Z572
0 siblings, 0 replies; 5+ messages in thread
From: Z572 @ 2024-04-30 15:01 UTC (permalink / raw)
To: 70149; +Cc: sughosha
[-- Attachment #1: Type: text/plain, Size: 2140 bytes --]
Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/kde-systemtools.scm (kwalletmanager): New variable.
>
> Change-Id: I8710fcc7dc63bc6051452caa832a4996da854b32
> ---
> gnu/packages/kde-systemtools.scm | 38 ++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm
> index 56ce37fea8..888fae10cb 100644
> --- a/gnu/packages/kde-systemtools.scm
> +++ b/gnu/packages/kde-systemtools.scm
> @@ -340,6 +340,44 @@ (define-public ksystemlog
> This package is part of the KDE administration module.")
> (license license:gpl2+)))
>
> +(define-public kwalletmanager
> + (package
> + (name "kwalletmanager")
> + (version "23.04.3")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://kde/stable/release-service/" version
> + "/src/kwalletmanager-" version ".tar.xz"))
> + (sha256
> + (base32 "1g3yw32kv7yij2ymk52fpp0srncr2ijfckfvz5hc0nsn7xhyqdby"))))
> + (build-system qt-build-system)
> + (native-inputs
> + (list extra-cmake-modules kdoctools))
> + (inputs
> + (list karchive
> + kauth
> + kcmutils
> + kconfig
> + kconfigwidgets
> + kcoreaddons
> + kcrash
> + kdbusaddons
> + ki18n
> + kio
> + kjobwidgets
> + knotifications
> + kservice
> + ktextwidgets
> + kwallet
> + kwindowsystem
> + kxmlgui))
> + (home-page "https://apps.kde.org/kwalletmanager5/")
> + (synopsis "Tool to manage passwords on KWallet")
> + (description
> + "This package provides a tool to manage passwords on @code{kwallet}.")
> + (license license:gpl2+)))
> +
> (define-public spectacle
> (package
> (name "spectacle")
>
> base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b
apply, see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=d5f98aa11bc4588d0def868de225cf70545e809c
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-30 15:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-02 16:46 [bug#70149] [PATCH] gnu: Add kwalletmanager Sughosha via Guix-patches via
2024-04-03 13:57 ` Zheng Junjie
2024-04-07 9:24 ` Sughosha via Guix-patches via
2024-04-07 9:24 ` [bug#70149] [PATCH v2] " Sughosha via Guix-patches via
2024-04-30 15:01 ` Z572
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).