[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: |
Sat, 9 Nov 2024 20:51:39 -0500 (EST) |
z572 pushed a commit to branch qt-team
in repository guix.
commit 1cde66ebda9d695789537b23e2f0b9250e550ada
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")
- branch qt-team created (now edf7d5cd78), guix-commits, 2024/11/09
- 03/75: gnu: qtsvg: Update to 6.7.2., guix-commits, 2024/11/09
- 04/75: gnu: qtimageformats: Update to 6.7.2., guix-commits, 2024/11/09
- 02/75: gnu: qt5compat: Update to 6.7.2., guix-commits, 2024/11/09
- 01/75: gnu: qtbase: Update to 6.7.2., guix-commits, 2024/11/09
- 18/75: gnu: qtscxml: Update to 6.7.2., guix-commits, 2024/11/09
- 27/75: gnu: Add re2-next.,
guix-commits <=
- 13/75: gnu: qtlanguageserver: Update to 6.7.2., guix-commits, 2024/11/09
- 11/75: gnu: qtserialport: Update to 6.7.2., guix-commits, 2024/11/09
- 09/75: gnu: qtmultimedia: Update to 6.7.2., guix-commits, 2024/11/09
- 24/75: gnu: qtnetworkauth: Update to 6.7.2., guix-commits, 2024/11/09
- 26/75: gnu: libvpx: Update to 1.14.1., guix-commits, 2024/11/09
- 19/75: gnu: qtpositioning: Update to 6.7.2., guix-commits, 2024/11/09
- 25/75: gnu: abseil-cpp: Update to 20240722.0., guix-commits, 2024/11/09
- 22/75: gnu: qthttpserver: Update to 6.7.2., guix-commits, 2024/11/09
- 32/75: gnu: Add qtconnectivity., guix-commits, 2024/11/09
- 41/75: gnu: python-pyqt: Update to 5.15.10., guix-commits, 2024/11/09