[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/52: gnu: Add qmsetup.
From: |
guix-commits |
Subject: |
34/52: gnu: Add qmsetup. |
Date: |
Sat, 30 Mar 2024 20:41:45 -0400 (EDT) |
apteryx pushed a commit to branch qt-team
in repository guix.
commit 1e5503eda3bd63dfac95cce14f7d28ffc58be3de
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Mar 26 17:01:32 2024 -0400
gnu: Add qmsetup.
* gnu/packages/cmake.scm (qmsetup): New variable.
Change-Id: Iea83c59498fe7da97a01725a293915669e6714f9
---
gnu/packages/cmake.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 45 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index 9e5451d5ee..0c780fe420 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -8,7 +8,7 @@
;;; Copyright © 2017, 2018, 2020, 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2019, 2020, 2021, 2022 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
+;;; Copyright © 2019, 2020, 2021, 2022, 2024 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
;;; Copyright © 2019 Pierre-Moana Levesque <pierre.moana.levesque@gmail.com>
;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
@@ -43,8 +43,10 @@
#:use-module (gnu packages)
#:use-module (gnu packages backup)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages cpp)
#:use-module (gnu packages crypto)
#:use-module (gnu packages curl)
+ #:use-module (gnu packages elf)
#:use-module (gnu packages file)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages libevent)
@@ -434,3 +436,45 @@ and workspaces that can be used in the compiler
environment of your choice.")
(description "@code{cmakeos-mode} provides an Emacs major mode for editing
Cmake files. It supports syntax highlighting, indenting and refilling of
comments.")))
+
+(define-public qmsetup
+ (let ((commit "89fa57046241c26dfcfd97ceba174728b24bdd27")
+ (revision "0"))
+ (package
+ (name "qmsetup")
+ ;; The base version string is retrieved from the CMakeLists.txt file.
+ (version (git-version "0.0.1.5" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/stdware/qmsetup")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nqpblv08yqv97vjv7cxkpf160s3877gnd7jjqxnfrrknm2396r1"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f ;no test suite
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-paths
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "src/corecmd/utils_unix.cpp"
+ (("\"patchelf\"")
+ (format #f "~s" (search-input-file
+ inputs "bin/patchelf")))))))))
+ (inputs (list patchelf syscmdline))
+ (home-page "https://github.com/stdware/qmsetup")
+ (synopsis "CMake modules and basic libraries for C/C++ projects")
+ (description "QMSetup is a set of CMake Modules and Basic Libraries for
+C/C++ projects. It features:
+@itemize
+@item Helpful CMake utilities
+@item Generate configuration header files
+@item Reorganize header files
+@item Deploy project dependencies and fix rpaths
+@item Support calling Doxygen via CMake conveniently
+@item Support calling Qt Linguist Tools via CMake conveniently
+@end itemize")
+ (license license:expat))))
- 23/52: gnu: Add qtspeech., (continued)
- 23/52: gnu: Add qtspeech., guix-commits, 2024/03/30
- 46/52: gnu: extra-cmake-modules: Update to 6.0.0., guix-commits, 2024/03/30
- 42/52: gnu: python-pyqt-6: Update to 6.6.1., guix-commits, 2024/03/30
- 32/52: gnu: ffmpeg-jami: Apply patch adding pipewire support., guix-commits, 2024/03/30
- 37/52: gnu: jami: Update to 20240325.0., guix-commits, 2024/03/30
- 17/52: gnu: qtremoteobjects: Update to 6.6.2., guix-commits, 2024/03/30
- 11/52: gnu: qtlanguageserver: Update to 6.6.2., guix-commits, 2024/03/30
- 14/52: gnu: qttranslations: Update to 6.6.2., guix-commits, 2024/03/30
- 06/52: gnu: qtwebsockets: Update to 6.6.2., guix-commits, 2024/03/30
- 39/52: gnu: kimageannotator: Update to 0.7.1., guix-commits, 2024/03/30
- 34/52: gnu: Add qmsetup.,
guix-commits <=
- 43/52: gnu: kwayland: Disable kwayland-testXdgForeign test., guix-commits, 2024/03/30
- 18/52: gnu: qtwebengine: Update to 6.6.2., guix-commits, 2024/03/30
- 48/52: gnu: kimageannotator: Build as shared library., guix-commits, 2024/03/30
- 47/52: gnu: restinio: Update to 0.7.2., guix-commits, 2024/03/30
- 15/52: gnu: qtpositioning: Update to 6.6.2., guix-commits, 2024/03/30
- 21/52: gnu: Add qtsensors., guix-commits, 2024/03/30
- 20/52: gnu: qtsensors: Rename package to qtsensors-5., guix-commits, 2024/03/30
- 45/52: gnu: gwenview: Update to 23.08.5 and fix build., guix-commits, 2024/03/30
- 52/52: gnu: Add python-pods., guix-commits, 2024/03/30
- 49/52: gnu: sobjectizer: Update to 5.8.2., guix-commits, 2024/03/30