[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/75: gnu: Add re2-next.
From: |
guix-commits |
Subject: |
27/75: gnu: Add re2-next. |
Date: |
Fri, 15 Nov 2024 21:44:05 -0500 (EST) |
z572 pushed a commit to branch qt-team
in repository guix.
commit 82c4a36c9811ae1ba9e0acb895080f228ad5f7f8
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")
- 40/75: gnu: clazy: Update to 1.12., (continued)
- 40/75: gnu: clazy: Update to 1.12., guix-commits, 2024/11/15
- 43/75: gnu: Add qtcharts., guix-commits, 2024/11/15
- 42/75: gnu: qtcharts: Rename to qtcharts-5., guix-commits, 2024/11/15
- 58/75: gnu: qtwebglplugin: Update to 5.15.15., guix-commits, 2024/11/15
- 49/75: gnu: qtxmlpatterns: Update to 5.15.15., guix-commits, 2024/11/15
- 64/75: gnu: qtquickcontrols2-5: Update to 5.15.15., guix-commits, 2024/11/15
- 72/75: gnu: qtspeech-5: Update to 5.15.15., guix-commits, 2024/11/15
- 48/75: gnu: qtx11extras: Update to 5.15.15., guix-commits, 2024/11/15
- 74/75: gnu: qtwebengine-5: Update to 5.15.15., guix-commits, 2024/11/15
- 21/75: gnu: qtspeech: Update to 6.7.2., guix-commits, 2024/11/15
- 27/75: gnu: Add re2-next.,
guix-commits <=
- 34/75: gnu: python-sip: Update to 6.8.6., guix-commits, 2024/11/15
- 75/75: gnu: libvpx: Update to 1.15.0., guix-commits, 2024/11/15
- 71/75: gnu: qtnetworkauth-5: Update to 5.15.15., guix-commits, 2024/11/15
- 26/75: gnu: libvpx: Update to 1.14.1., guix-commits, 2024/11/15
- 62/75: gnu: qtscript: Update to 5.15.15., guix-commits, 2024/11/15
- 69/75: gnu: qtcharts-5: Update to 5.15.15., guix-commits, 2024/11/15
- 51/75: gnu: qtconnectivity-5: Update to 5.15.15., guix-commits, 2024/11/15
- 45/75: gnu: qt3d-5: Update to 5.15.15., guix-commits, 2024/11/15
- 57/75: gnu: qtwebchannel-5: Update to 5.15.15., guix-commits, 2024/11/15
- 53/75: gnu: qtmultimedia-5: Update to 5.15.15., guix-commits, 2024/11/15