GNU bug report logs -
#70253
[PATCH] gnu: Add kmail-account-wizard.
Previous Next
Reported by: Sughosha <sughosha <at> disroot.org>
Date: Sun, 7 Apr 2024 08:35:02 UTC
Severity: normal
Tags: patch
Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
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 70253 in the body.
You can then email your comments to 70253 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#70253
; Package
guix-patches
.
(Sun, 07 Apr 2024 08:35:02 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, 07 Apr 2024 08:35:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-pim.scm (kmail-account-wizard): New variable.
Change-Id: I1648f588712ccfe5a8e34c16a92f440691d3af18
---
gnu/packages/kde-pim.scm | 49 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 5780b9dbca..e4ab27467c 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1329,6 +1329,55 @@ (define-public kmail
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+(define-public kmail-account-wizard
+ (package
+ (name "kmail-account-wizard")
+ (version "23.04.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/kmail-account-wizard-" version ".tar.xz"))
+ (sha256
+ (base32 "1840zjgrqwk2zgqbb33gl9nvigsrmk5grzvzg5cw116h7lb7z7xx"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules shared-mime-info))
+ (inputs
+ (list akonadi
+ akonadi-mime
+ kcrash
+ kross
+ kcmutils
+ kdbusaddons
+ kiconthemes
+ kidentitymanagement
+ kimap
+ kitemmodels
+ kldap
+ kmailtransport
+ kmime
+ knewstuff
+ knotifications
+ knotifyconfig
+ kpimcommon
+ kpimtextedit
+ ktextaddons
+ ktexteditor
+ kwallet
+ libkdepim
+ libkleo
+ qtkeychain
+ qtscript
+ qttools-5))
+ (home-page "https://invent.kde.org/pim/kmail-account-wizard")
+ (synopsis "Assistant for the configuration of accounts in KMail")
+ (description
+ "This package provides an assistant for the configuration of accounts in
+KMail.")
+ (license ;;GPL for programs, LGPL for libraries, FDL for documentation
+ (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
(define-public kmailcommon
(package
(name "kmailcommon")
base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#70253
; Package
guix-patches
.
(Thu, 18 Jul 2024 05:24:02 GMT)
Full text and
rfc822 format available.
Message #8 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-pim.scm (kmail-account-wizard): New variable.
>
> Change-Id: I1648f588712ccfe5a8e34c16a92f440691d3af18
> ---
> gnu/packages/kde-pim.scm | 49 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 49 insertions(+)
>
> diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
> index 5780b9dbca..e4ab27467c 100644
> --- a/gnu/packages/kde-pim.scm
> +++ b/gnu/packages/kde-pim.scm
> @@ -1329,6 +1329,55 @@ (define-public kmail
> (license ;; GPL for programs, LGPL for libraries, FDL for documentation
> (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
>
> +(define-public kmail-account-wizard
> + (package
> + (name "kmail-account-wizard")
> + (version "23.04.3")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://kde/stable/release-service/" version
> + "/src/kmail-account-wizard-" version ".tar.xz"))
> + (sha256
> + (base32 "1840zjgrqwk2zgqbb33gl9nvigsrmk5grzvzg5cw116h7lb7z7xx"))))
> + (build-system qt-build-system)
> + (native-inputs
> + (list extra-cmake-modules shared-mime-info))
> + (inputs
> + (list akonadi
> + akonadi-mime
> + kcrash
> + kross
> + kcmutils
> + kdbusaddons
> + kiconthemes
> + kidentitymanagement
> + kimap
> + kitemmodels
> + kldap
> + kmailtransport
> + kmime
> + knewstuff
> + knotifications
> + knotifyconfig
> + kpimcommon
> + kpimtextedit
> + ktextaddons
> + ktexteditor
> + kwallet
> + libkdepim
> + libkleo
> + qtkeychain
> + qtscript
> + qttools-5))
> + (home-page "https://invent.kde.org/pim/kmail-account-wizard")
> + (synopsis "Assistant for the configuration of accounts in KMail")
> + (description
> + "This package provides an assistant for the configuration of accounts in
> +KMail.")
> + (license ;;GPL for programs, LGPL for libraries, FDL for documentation
> + (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
> +
> (define-public kmailcommon
> (package
> (name "kmailcommon")
>
> base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b
thanks, push at https://git.savannah.gnu.org/cgit/guix.git/commit/?id=1cf2ca30a6955061757e39446c84cdabb42a6777
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Thu, 18 Jul 2024 05:24:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sughosha <sughosha <at> disroot.org>
:
bug acknowledged by developer.
(Thu, 18 Jul 2024 05:24: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
.
(Thu, 15 Aug 2024 11:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 81 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.