[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72205] [PATCH 1/4] gnu: Add kdsingleapplication.
From: |
Maxim Cournoyer |
Subject: |
[bug#72205] [PATCH 1/4] gnu: Add kdsingleapplication. |
Date: |
Wed, 31 Jul 2024 15:05:21 +0900 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hi,
(I got notified for this 1/4 patch due to touching qt.scm; I haven't
checked the rest of the series).
Timotej Lazar <timotej.lazar@araneo.si> writes:
> * gnu/packages/qt.scm (kdsingleapplication): New variable.
>
> Change-Id: I08407da35712d465f9573f6bf1de0cc2e8435cb1
> ---
> gnu/packages/qt.scm | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
> index 0138fd3dbf..c150dca78b 100644
> --- a/gnu/packages/qt.scm
> +++ b/gnu/packages/qt.scm
> @@ -5214,6 +5214,32 @@ (define-public libdbusmenu-qt
> and import their menus over DBus.")
> (license license:lgpl2.1+)))
>
> +(define-public kdsingleapplication
> + (package
> + (name "kdsingleapplication")
> + (version "1.1.0")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/KDAB/KDSingleApplication")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1w7wg9w4mifrkpn7hhw1nnnwh1vhnf8i4wgfxvh44nacwslbwsb2"))))
> + (build-system qt-build-system)
> + (arguments
> + (list
> + #:qtbase qtbase
> + #:configure-flags
> + #~(list "-DKDSingleApplication_QT6=true"
> "-DKDSingleApplication_TESTS=true")))
That's a nitpick, but my impression was that ON/OFF as boolean value for
CMake were more common (or YES/NO).
> + (inputs (list libxkbcommon vulkan-headers))
> + (home-page "https://github.com/KDAB/KDSingleApplication")
> + (synopsis "Qt helper class for single-instance policy applications")
> + (description "KD SingleApplication is a helper class for single-instance
> +policy applications.")
> + (license (list license:bsd-3 license:expat))))
Is it dual licensed? Or which files/section of the source is covered by
which? A comment is needed.
--
Thanks,
Maxim
- [bug#72205] [PATCH 0/4] Update nheko, Timotej Lazar, 2024/07/20
- [bug#72205] [PATCH 3/4] gnu: mtxclient: Switch to new package style., Timotej Lazar, 2024/07/20
- [bug#72205] [PATCH 1/4] gnu: Add kdsingleapplication., Timotej Lazar, 2024/07/20
- [bug#72205] [PATCH 1/4] gnu: Add kdsingleapplication.,
Maxim Cournoyer <=
- [bug#72205] [PATCH 2/4] gnu: mtxclient: Update to 0.10.0., Timotej Lazar, 2024/07/20
- [bug#72205] [PATCH 4/4] gnu: nheko: Update to 0.12.0., Timotej Lazar, 2024/07/20
- bug#72205: [PATCH 0/4] Update nheko, Zheng Junjie, 2024/07/25