libvmod-re2 2.0.0-3 source package in Ubuntu

Changelog

libvmod-re2 (2.0.0-3) unstable; urgency=low

  * Update patch to raise maximum varnish version to 7.5.0.
  * Add patch to increase C++ standard to c++14 as required by libasl (Closes:
    #1070649).
  * Add patch to use VXID_TAG macro to access vxid.
  * Add upstream patch to fix an off-by-one error in set.matched().
  * Disable faulty test.
  * Update year in d/copyright.
  * Change pkg-config to pkgconf in d/control.
  * Bump Standards-Version to 4.7.0.
  * Run wrap-and-sort -bast to reduce diff size of future changes.

 -- Michael Fladischer <email address hidden>  Sun, 07 Jul 2024 22:06:23 +0000

Upload details

Uploaded by:
Varnish Package Maintainers
Uploaded to:
Sid
Original maintainer:
Varnish Package Maintainers
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libvmod-re2_2.0.0-3.dsc 1.7 KiB 8e8aeed7122291c23c4f6afdbfb9c53892928af2e2278f00bce54a173fb3a040
libvmod-re2_2.0.0.orig.tar.bz2 63.1 KiB 0067c80e9245d2df1e5375cc66d348405b7968e14090beae4aa86039f8e250d5
libvmod-re2_2.0.0-3.debian.tar.xz 7.4 KiB 32e78433615ca4cd3324620b18db619ba745fda4ea87687d55caaca6517d60e9

No changes file available.

Binary packages built by this source

varnish-re2: RE2 regular expressions for Varnish

 Varnish Module (VMOD) for access to the Google RE2 regular expression
 engine. Varnish VCL uses the PCRE library (Perl Compatible Regular Expressions)
 for its native regular expressions, which runs very efficiently for many
 common uses of pattern matching in VCL, as attested by years of
 successful use of PCRE with Varnish.
 .
 But for certain kinds of patterns, the worst-case running time of the
 PCRE matcher is exponential in the length of the string to be matched.
 The matcher uses backtracking, implemented with recursive calls to the
 internal match() function. In principle there is no upper bound to the
 possible depth of backtracking and recursion, except as imposed by the
 varnishd runtime parameters pcre_match_limit and
 pcre_match_limit_recursion; matches fail if either of these limits are
 met. Stack overflow caused by deep backtracking has occasionally been
 the subject of varnishd issues.
 .
 RE2 differs from PCRE in that it limits the syntax of patterns so that
 they always specify a regular language in the formally strict sense.
 Most notably, backreferences within a pattern are not permitted, for
 example (foo|bar)\1 to match foofoo and barbar, but not foobar
 or barfoo. See the link in SEE ALSO for the specification of RE2
 syntax.
 .
 This means that an RE2 matcher runs as a finite automaton, which
 guarantees linear running time in the length of the matched string.
 There is no backtracking, and hence no risk of deep recursion or stack
 overflow.

varnish-re2-dbgsym: debug symbols for varnish-re2