[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/71: gnu: Add qmsetup.
From: |
guix-commits |
Subject: |
34/71: gnu: Add qmsetup. |
Date: |
Sun, 31 Mar 2024 21:57:29 -0400 (EDT) |
apteryx pushed a commit to branch qt-team
in repository guix.
commit 78aafd2016e4d025be54f4936572241f49bd53ed
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))))
- 66/71: gnu: qtpositioning: Update to 6.6.3., (continued)
- 66/71: gnu: qtpositioning: Update to 6.6.3., guix-commits, 2024/03/31
- 02/71: gnu: qt5compat: Update to 6.6.2., guix-commits, 2024/03/31
- 13/71: gnu: qttools: Update to 6.6.2., guix-commits, 2024/03/31
- 18/71: gnu: qtwebengine: Update to 6.6.2., guix-commits, 2024/03/31
- 08/71: gnu: qtmultimedia: Update to 6.6.2., guix-commits, 2024/03/31
- 10/71: gnu: qtwebchannel: Update to 6.6.2., guix-commits, 2024/03/31
- 19/71: gnu: python-shiboken-6: Update to 6.6.2., guix-commits, 2024/03/31
- 24/71: gnu: qt-creator: Update to 12.0.2., guix-commits, 2024/03/31
- 30/71: gnu: pjproject-jami: Update to 2.13.1-1.e12ea3b., guix-commits, 2024/03/31
- 31/71: gnu: dhtnet: Update to 0.0.1-2.024c46f., guix-commits, 2024/03/31
- 34/71: gnu: Add qmsetup.,
guix-commits <=
- 42/71: gnu: python-pyqt-6: Update to 6.6.1., guix-commits, 2024/03/31
- 45/71: gnu: gwenview: Update to 23.08.5 and fix build., guix-commits, 2024/03/31
- 46/71: gnu: extra-cmake-modules: Update to 6.0.0., guix-commits, 2024/03/31
- 49/71: gnu: sobjectizer: Update to 5.8.2., guix-commits, 2024/03/31
- 52/71: gnu: qtsvg: Update to 6.6.3., guix-commits, 2024/03/31
- 53/71: gnu: qtimageformats: Update to 6.6.3., guix-commits, 2024/03/31
- 54/71: gnu: qtdeclarative: Update to 6.6.3., guix-commits, 2024/03/31
- 55/71: gnu: qtwebsockets: Update to 6.6.3., guix-commits, 2024/03/31
- 62/71: gnu: qtlottie: Update to 6.6.3., guix-commits, 2024/03/31
- 63/71: gnu: qttools: Update to 6.6.3., guix-commits, 2024/03/31