[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/74: gnu: Add re2-next.
From: |
guix-commits |
Subject: |
27/74: gnu: Add re2-next. |
Date: |
Mon, 16 Sep 2024 23:37:10 -0400 (EDT) |
z572 pushed a commit to branch qt-team
in repository guix.
commit 42a4e9c0aaa827f646969f0ccc9840d30c6f41b6
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Aug 14 17:05:35 2024 +0800
gnu: Add re2-next.
* gnu/packages/regex.scm (re2-next): New Variable.
Change-Id: I5745870605f1ad3ce1733b02e454b758b3cbabfc
---
gnu/packages/regex.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/regex.scm b/gnu/packages/regex.scm
index 639244f37d..d058b096a7 100644
--- a/gnu/packages/regex.scm
+++ b/gnu/packages/regex.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2016, 2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
+;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27,7 +28,10 @@
#:use-module (guix git-download)
#:use-module (guix gexp)
#:use-module (guix build-system gnu)
- #:use-module (guix utils))
+ #:use-module (guix build-system cmake)
+ #:use-module (guix utils)
+ #:use-module (gnu packages check)
+ #:use-module (gnu packages cpp))
(define-public re2
(package
@@ -60,6 +64,29 @@ backtracking regular expression engines like those used in
PCRE, Perl and
Python. It is a C++ library.")
(license license:bsd-3)))
+(define-public re2-next
+ (package
+ (inherit re2)
+ (name "re2")
+ (version "2024-07-02")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/google/re2")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "11q0kz8b3y5ysn58fr62yhib520f9l3grbn8gxr8x5s9k700vq11"))))
+ (build-system cmake-build-system)
+ (arguments (list #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
+ ;; "-DRE2_USE_ICU=ON"
+ #$@(if (%current-target-system)
+
#~("-DRE2_BUILD_TESTING=ON")
+ #~()))))
+ (native-inputs (list googletest))
+ (propagated-inputs (list abseil-cpp))))
+
(define-public tre
(package
(name "tre")
- 57/74: gnu: qtwebchannel-5: Update to 5.15.15., (continued)
- 57/74: gnu: qtwebchannel-5: Update to 5.15.15., guix-commits, 2024/09/16
- 61/74: gnu: qttools-5: Update to 5.15.15., guix-commits, 2024/09/16
- 59/74: gnu: qtwebview: Update to 5.15.15., guix-commits, 2024/09/16
- 63/74: gnu: qtquickcontrols-5: Update to 5.15.15., guix-commits, 2024/09/16
- 64/74: gnu: qtquickcontrols2-5: Update to 5.15.15., guix-commits, 2024/09/16
- 70/74: gnu: qtdatavis3d: Update to 5.15.15., guix-commits, 2024/09/16
- 71/74: gnu: qtnetworkauth-5: Update to 5.15.15., guix-commits, 2024/09/16
- 54/74: gnu: qtwayland-5: Update to 5.15.15., guix-commits, 2024/09/16
- 62/74: gnu: qtscript: Update to 5.15.15., guix-commits, 2024/09/16
- 74/74: gnu: qtwebengine-5: Update to 5.15.15., guix-commits, 2024/09/16
- 27/74: gnu: Add re2-next.,
guix-commits <=
- 39/74: gnu: python-pyqt5-sip: Update to 12.15.0., guix-commits, 2024/09/16
- 45/74: gnu: qt3d-5: Update to 5.15.15., guix-commits, 2024/09/16
- 55/74: gnu: qtserialport-5: Update to 5.15.15., guix-commits, 2024/09/16
- 66/74: gnu: qtgamepad: Update to 5.15.15., guix-commits, 2024/09/16
- 68/74: gnu: qtpurchasing: Update to 5.15.15., guix-commits, 2024/09/16
- 69/74: gnu: qtcharts-5: Update to 5.15.15., guix-commits, 2024/09/16
- 53/74: gnu: qtmultimedia-5: Update to 5.15.15., guix-commits, 2024/09/16
- 58/74: gnu: qtwebglplugin: Update to 5.15.15., guix-commits, 2024/09/16
- 60/74: gnu: qtlocation-5: Update to 5.15.15., guix-commits, 2024/09/16
- 67/74: gnu: qtscxml-5: Update to 5.15.15., guix-commits, 2024/09/16