GNU bug report logs - #74153
[PATCH] gnu: Add kapptemplate.

Previous Next

Package: guix-patches;

Reported by: Sughosha <sughosha <at> disroot.org>

Date: Fri, 1 Nov 2024 12:02:01 UTC

Severity: normal

Tags: patch

Done: Z572 <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 74153 in the body.
You can then email your comments to 74153 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#74153; Package guix-patches. (Fri, 01 Nov 2024 12:02:01 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. (Fri, 01 Nov 2024 12:02:01 GMT) Full text and rfc822 format available.

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

From: Sughosha <sughosha <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: Sughosha <sughosha <at> disroot.org>
Subject: [PATCH] gnu: Add kapptemplate.
Date: Fri,  1 Nov 2024 17:30:20 +0530
* gnu/packages/kde.scm (kapptemplate): New variable.

Change-Id: I25b930749db5c366496f2b883bbde838aa583383
---
 gnu/packages/kde.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 95b44d80d3..3bf1b64330 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -413,6 +413,48 @@ (define-public kdenlive
 projects.")
     (license license:gpl2+)))
 
+(define-public kapptemplate
+  (package
+    (name "kapptemplate")
+    (version "24.05.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kapptemplate-" version ".tar.xz"))
+       (sha256
+        (base32 "0mgpk6879dprhpxmbdgbb6sz3ik9ycav4sihh20qmsgj09h8qp3g"))))
+    (build-system qt-build-system)
+    (arguments
+     (list #:qtbase qtbase
+           #:configure-flags
+           #~(list "-DBUILD_TESTING=ON")))
+    (native-inputs
+     (list extra-cmake-modules kdoctools))
+    (inputs
+     (list karchive
+           kcompletion
+           kconfigwidgets
+           kcoreaddons
+           ki18n
+           kio))
+    (home-page "https://apps.kde.org/kapptemplate/")
+    (synopsis "Factory for easy creation of KDE/Qt components and programs")
+    (description "KAppTemplate is an application to start development quickly
+using existing templates providing basic repeatedly written code and a proper
+structure.  It features:
+
+@itemize
+@item Templates for C++, Ruby, Python and PHP
+@item Categories
+@item Templates for different build-systems and frameworks
+@item Templates especially for KDE-development (plugins for Plasma, QtQuick
+ KTextEditor, KRunner, Akonadi)
+@item New templates using space holders and a simple CMake-command
+@item Integration into KDevelop
+@end itemize")
+    (license license:gpl2+)))
+
 (define-public kdevelop
   (package
     (name "kdevelop")

base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74153; Package guix-patches. (Sat, 02 Nov 2024 15:45:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Sughosha via Guix-patches via <guix-patches <at> gnu.org>
Cc: Sughosha <sughosha <at> disroot.org>, 74153-done <at> debbugs.gnu.org
Subject: Re: [bug#74153] [PATCH] gnu: Add kapptemplate.
Date: Sat, 02 Nov 2024 23:44:27 +0800
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/kde.scm (kapptemplate): New variable.
>
> Change-Id: I25b930749db5c366496f2b883bbde838aa583383
> ---
>  gnu/packages/kde.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>
> diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
> index 95b44d80d3..3bf1b64330 100644
> --- a/gnu/packages/kde.scm
> +++ b/gnu/packages/kde.scm
> @@ -413,6 +413,48 @@ (define-public kdenlive
>  projects.")
>      (license license:gpl2+)))
>  
> +(define-public kapptemplate
> +  (package
> +    (name "kapptemplate")
> +    (version "24.05.2")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "mirror://kde/stable/release-service/" version
> +                           "/src/kapptemplate-" version ".tar.xz"))
> +       (sha256
> +        (base32 "0mgpk6879dprhpxmbdgbb6sz3ik9ycav4sihh20qmsgj09h8qp3g"))))
> +    (build-system qt-build-system)
> +    (arguments
> +     (list #:qtbase qtbase
> +           #:configure-flags
> +           #~(list "-DBUILD_TESTING=ON")))
> +    (native-inputs
> +     (list extra-cmake-modules kdoctools))
> +    (inputs
> +     (list karchive
> +           kcompletion
> +           kconfigwidgets
> +           kcoreaddons
> +           ki18n
> +           kio))
> +    (home-page "https://apps.kde.org/kapptemplate/")
> +    (synopsis "Factory for easy creation of KDE/Qt components and programs")
> +    (description "KAppTemplate is an application to start development quickly
> +using existing templates providing basic repeatedly written code and a proper
> +structure.  It features:
> +
> +@itemize
> +@item Templates for C++, Ruby, Python and PHP
> +@item Categories
> +@item Templates for different build-systems and frameworks
> +@item Templates especially for KDE-development (plugins for Plasma, QtQuick
> + KTextEditor, KRunner, Akonadi)
> +@item New templates using space holders and a simple CMake-command
> +@item Integration into KDevelop
> +@end itemize")
> +    (license license:gpl2+)))
> +
>  (define-public kdevelop
>    (package
>      (name "kdevelop")
>
> base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718

push, close.
[signature.asc (application/pgp-signature, inline)]

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Sat, 02 Nov 2024 15:45:03 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Sat, 02 Nov 2024 15:45: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. (Sun, 01 Dec 2024 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 203 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.