re2 20220601+dfsg-1 source package in Ubuntu

Changelog

re2 (20220601+dfsg-1) unstable; urgency=medium

  * New upstream release.

 -- Stefano Rivera <email address hidden>  Wed, 01 Jun 2022 19:59:28 +0100

Upload details

Uploaded by:
Stefano Rivera
Uploaded to:
Sid
Original maintainer:
Stefano Rivera
Architectures:
any
Section:
libs
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
re2_20220601+dfsg-1.dsc 1.4 KiB e0d2eab89a0312e9a0ba4e9a6fb18b081764d6776a28496d389aa3831d970940
re2_20220601+dfsg.orig.tar.xz 247.7 KiB 3bc61251da3b0b97be40a8a127818c517c62516e4eda11fc901d29496663df54
re2_20220601+dfsg-1.debian.tar.xz 9.9 KiB 6e93860fc6d5a7bc94f0cb235f107545a332e6cd37c3a4060982b9caa47a2570

No changes file available.

Binary packages built by this source

libre2-9: No summary available for libre2-9 in ubuntu lunar.

No description available for libre2-9 in ubuntu lunar.

libre2-9-dbgsym: No summary available for libre2-9-dbgsym in ubuntu lunar.

No description available for libre2-9-dbgsym in ubuntu lunar.

libre2-dev: efficient, principled regular expression library, development kit

 RE2 is a fast, safe, thread-friendly alternative to backtracking regular
 expression engines like those used in PCRE, Perl, and Python. It is a C++
 library.
 .
 RE2 uses automata theory to guarantee that regular expression searches run in
 time linear in the size of the input. RE2 implements memory limits, so that
 searches can be constrained to a fixed amount of memory. RE2 is engineered to
 use a small fixed C++ stack footprint no matter what inputs or regular
 expressions it must process; thus RE2 is useful in multithreaded environments
 where thread stacks cannot grow arbitrarily large.
 .
 On large inputs, RE2 is often much faster than backtracking engines; its use
 of automata theory lets it apply optimizations that the others cannot.
 .
 This package contains the static library and header files used in development.