[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: |
Wed, 13 Nov 2024 07:44:08 -0500 (EST) |
z572 pushed a commit to branch qt-team
in repository guix.
commit cb892ca441fd4a079dcc8fe6c800d7d9a1a1869d
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")
- 44/75: gnu: qtbase-5: Update to 5.15.15., (continued)
- 44/75: gnu: qtbase-5: Update to 5.15.15., guix-commits, 2024/11/13
- 42/75: gnu: qtcharts: Rename to qtcharts-5., guix-commits, 2024/11/13
- 73/75: gnu: qtvirtualkeyboard-5: Update to 5.15.15., guix-commits, 2024/11/13
- 33/75: gnu: Add python-setuptools-scm-next., guix-commits, 2024/11/13
- 69/75: gnu: qtcharts-5: Update to 5.15.15., guix-commits, 2024/11/13
- 59/75: gnu: qtwebview: Update to 5.15.15., guix-commits, 2024/11/13
- 34/75: gnu: python-sip: Update to 6.8.6., guix-commits, 2024/11/13
- 62/75: gnu: qtscript: Update to 5.15.15., guix-commits, 2024/11/13
- 19/75: gnu: qtpositioning: Update to 6.7.2., guix-commits, 2024/11/13
- 25/75: gnu: abseil-cpp: Update to 20240722.0., guix-commits, 2024/11/13
- 27/75: gnu: Add re2-next.,
guix-commits <=
- 46/75: gnu: qtsvg-5: Update to 5.15.15., guix-commits, 2024/11/13
- 38/75: gnu: python-pyqtwebengine-6: Update to 6.7.0., guix-commits, 2024/11/13
- 56/75: gnu: qtserialbus: Update to 5.15.15., guix-commits, 2024/11/13
- 71/75: gnu: qtnetworkauth-5: Update to 5.15.15., guix-commits, 2024/11/13
- 36/75: gnu: python-pyqt-builder: Update to 1.16.4., guix-commits, 2024/11/13
- 52/75: gnu: qtwebsockets-5: Update to 5.15.15., guix-commits, 2024/11/13
- 75/75: gnu: libvpx: Update to 1.15.0., guix-commits, 2024/11/13
- 63/75: gnu: qtquickcontrols-5: Update to 5.15.15., guix-commits, 2024/11/13
- 16/75: gnu: qttools: Update to 6.7.2., guix-commits, 2024/11/13
- 17/75: gnu: qttranslations: Update to 6.7.2., guix-commits, 2024/11/13