[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/71: gnu: Add syscmdline.
From: |
guix-commits |
Subject: |
33/71: gnu: Add syscmdline. |
Date: |
Sun, 31 Mar 2024 21:57:29 -0400 (EDT) |
apteryx pushed a commit to branch qt-team
in repository guix.
commit b1414afbcc9581f893bed5ce785d799ac46f7b65
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Mar 26 17:18:54 2024 -0400
gnu: Add syscmdline.
* gnu/packages/cpp.scm (syscmdline): New variable.
Change-Id: I721b0eb5358cf41eade23c093b506b4750c53082
---
gnu/packages/cpp.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index acbe3e4836..65aa717c3d 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -924,6 +924,49 @@ concurrent queue for C++11.")
lock-free fixed size queue written in C++11.")
(license license:expat)))
+(define-public syscmdline
+ (package
+ (name "syscmdline")
+ (version "0.0.1.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/SineStriker/syscmdline")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "00n9vkyymp1dzixxl93f6pkpd3ndsk1vib7shhlxv4zvy5hjqhqw"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags
+ #~(list "-DSYSCMDLINE_BUILD_STATIC=OFF" ;build a shared library
+ "-DSYSCMDLINE_BUILD_TESTS=ON")
+ #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ ;; There isn't currently any exposed test target.
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "bin/tst_basic")))))))
+ (home-page "https://github.com/SineStriker/syscmdline")
+ (synopsis "C++ advanced command line parser")
+ (description "SysCmdLine is a C++ command line parser that is inspired by
+@code{QCommandLineParser} from Qt and @code{System.CommandLine} from C#. It
+has features such as:
+@itemize
+@item Support sub-commands
+@item Support case-insensitive parsing
+@item Support global options
+@item Support mutually exclusive options
+@item Support short options and group flags
+@item Support help text customization
+@item Support localization
+@item Simple tips for typo correction
+@item Highly configurable
+@item Friendly interface
+@end itemize")
+ (license license:expat)))
+
(define-public gperftools
(package
(name "gperftools")
- 27/71: gnu: qtbase: Have qmlimportscanner honor QML_IMPORT_PATH., (continued)
- 27/71: gnu: qtbase: Have qmlimportscanner honor QML_IMPORT_PATH., guix-commits, 2024/03/31
- 29/71: gnu: qtbase: Disable the tst_qxmlstream test on powerpc64-le., guix-commits, 2024/03/31
- 06/71: gnu: qtwebsockets: Update to 6.6.2., guix-commits, 2024/03/31
- 09/71: gnu: qtwayland: Update to 6.6.2., guix-commits, 2024/03/31
- 14/71: gnu: qttranslations: Update to 6.6.2., guix-commits, 2024/03/31
- 20/71: gnu: qtsensors: Rename package to qtsensors-5., guix-commits, 2024/03/31
- 36/71: gnu: Add qthttpserver., guix-commits, 2024/03/31
- 22/71: gnu: qtspeech: Rename package to qtspeech-5., guix-commits, 2024/03/31
- 25/71: gnu: qtscxml: Update to 6.6.2., guix-commits, 2024/03/31
- 28/71: gnu: qtbase: Replace QML2_IMPORT_PATH with QML_IMPORT_PATH., guix-commits, 2024/03/31
- 33/71: gnu: Add syscmdline.,
guix-commits <=
- 38/71: gnu: kcolorpicker: Update to 0.3.1., guix-commits, 2024/03/31
- 41/71: gnu: python-sip: Update to 6.8.3., guix-commits, 2024/03/31
- 50/71: gnu: qtbase: Update to 6.6.3., guix-commits, 2024/03/31
- 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