guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7efd719544c132c6b2edbb00a9000bfd75937c11
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Jan 27 16:25:28 2026 +0900
gnu: syscmdline: Update to 1.0.0.0-0.0c9f3de.
* gnu/packages/cpp.scm (syscmdline): Update to 1.0.0.0-0.0c9f3de.
Change-Id: I592f1a128932cd852249c47e9a9d8ad83dba4c81
---
gnu/packages/cpp.scm | 60 ++++++++++++++++++++++++++++------------------------
1 file changed, 32 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 91cc088538..3904182549 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -31,7 +31,7 @@
;;; Copyright © 2022 Arun Isaac <[email protected]>
;;; Copyright © 2022-2025 David Elsing <[email protected]>
;;; Copyright © 2022-2024 Zheng Junjie <[email protected]>
-;;; Copyright © 2022, 2023, 2024 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2022-2024, 2026 Maxim Cournoyer <[email protected]>
;;; Copyright © 2022 Antero Mejr <[email protected]>
;;; Copyright © 2023, 2025 Sughosha <[email protected]>
;;; Copyright © 2023, 2024, 2025 Artyom V. Poptsov <[email protected]>
@@ -1718,32 +1718,36 @@ 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
+ (let ((commit "0c9f3de8b11bd2f33b03bea5521bf446af4ead69")
+ (revision "0"))
+ (package
+ (name "syscmdline")
+ ;; The version string is taken from
+ ;;
<https://raw.githubusercontent.com/SineStriker/syscmdline/refs/heads/main/CMakeLists.txt>.
+ (version (git-version "1.0.0.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/SineStriker/syscmdline")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "168dij7p2kjl0qs3k5lzrnbzf2s2mbfpm83jimk028whx8cbv4jh"))))
+ (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
@@ -1758,7 +1762,7 @@ has features such as:
@item Highly configurable
@item Friendly interface
@end itemize")
- (license license:expat)))
+ (license license:expat))))
(define-public gperftools
(package