Updated to 3.0.12
Sep 20, 2020: 2.1.5 added matcher method lineno(n) to set or change the line number to n; added yyset_lineno(n,s) to flexlexer.h; updated Mini C compiler example. Oct 12, 2020: 3.0.0 fixed a regression bug since v2.x; redesigned internals to increase IO efficiency and regex pattern search speed. Oct 24, 2020: 3.0.1 improved handling of UTF-16/32 file encodings on Windows to prevent ^Z eof when files are opened in text mode. Mar 16, 2021: 3.0.2 minor improvements and additions; fixed MinGW builds. Apr 29, 2021: 3.0.3 fixed reflex::Input copy constructor; minor improvements. May 27, 2021: 3.0.4 improvements and fixes for minor issues. Jun 1, 2021: 3.0.5 minor usability improvements; changed \d to match Unicode when option unicode is enabled. Jun 4, 2021: 3.0.6 minor improvements. Jun 6, 2021: 3.0.7 updated examples to fix build problems. Jul 15, 2021: 3.0.8 minor improvements. Jul 22, 2021: 3.0.9 SIMD code split into simd_avx2.cpp and simd_avx512bw.cpp to support runtime CPU ID checking when the library is built with ./configure; make, disable AVX with ./configure --disable-avx, disable SSE2 with ./configure --disable-sse2; UTF-16LE BOM detection correction. Aug 14, 2021: 3.0.10 fixed missing simd.h after installation, added REFLEX_BUFFER_SIZE to customize the initial size and growth of the input buffer. Sep 14, 2021: 3.0.11 minor change to apply --prefix to the generated REFLEX_code_[PREFIX]STATE code. Oct 11, 2021: 3.0.12 updated to Unicode 14; fixed a compilation issue with --params when used with --flex.
This commit is contained in:
parent
b27bb21164
commit
4f47711529
3 changed files with 10 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.5 2020/08/28 19:17:15 scole Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2021/11/28 20:22:32 scole Exp $
|
||||
|
||||
DISTNAME= RE-flex-2.1.4
|
||||
DISTNAME= RE-flex-3.0.12
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GITHUB:=Genivia/}
|
||||
GITHUB_TAG= v${PKGVERSION_NOREV}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2020/07/10 16:05:55 scole Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2021/11/28 20:22:32 scole Exp $
|
||||
bin/reflex
|
||||
include/reflex/abslexer.h
|
||||
include/reflex/absmatcher.h
|
||||
|
@ -15,6 +15,7 @@ include/reflex/pcre2matcher.h
|
|||
include/reflex/posix.h
|
||||
include/reflex/ranges.h
|
||||
include/reflex/setop.h
|
||||
include/reflex/simd.h
|
||||
include/reflex/stdmatcher.h
|
||||
include/reflex/timer.h
|
||||
include/reflex/traits.h
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.6 2021/10/26 10:14:10 nia Exp $
|
||||
$NetBSD: distinfo,v 1.7 2021/11/28 20:22:32 scole Exp $
|
||||
|
||||
BLAKE2s (RE-flex-2.1.4.tar.gz) = c008102666e45ee455de43d3eb35497ac979fbaad989dc271b03e386f683f830
|
||||
SHA512 (RE-flex-2.1.4.tar.gz) = bad6c6712851acf957ed24de6ab8be424393996fb8ec0fc590716f33f91002971644ee55867ed4bae52019faa8c7616d9e43474e305f9ac780d4a29b062ced4d
|
||||
Size (RE-flex-2.1.4.tar.gz) = 6040596 bytes
|
||||
BLAKE2s (RE-flex-3.0.12.tar.gz) = a130ce1a06a7adf65f123b3dd89244f4ce5c209118ed2eb017c5cdcfe640c054
|
||||
SHA512 (RE-flex-3.0.12.tar.gz) = b05fd50c451e361ed816810b69eb0384e902b4b27bc6ed6b0ae276600340d84aadf88674ef2e61265a893bd4fb3de8a68b3a9937274fb55173933279307aa15e
|
||||
Size (RE-flex-3.0.12.tar.gz) = 6131163 bytes
|
||||
SHA1 (patch-examples_gz.l) = 09e92adbd4f6aa0b8fa358d6c0fc4778a67209fd
|
||||
SHA1 (patch-lib_Makefile.in) = d7ab58a8af42add67be3ba99d5e78db2a8299e00
|
||||
SHA1 (patch-src_Makefile.in) = 5e624262cc0b6fe2126dd44865bad7d0d954cad3
|
||||
SHA1 (patch-lib_Makefile.in) = 5a740285bbc09d68bf709938dca1bd6b8b25a4fd
|
||||
SHA1 (patch-src_Makefile.in) = f5771cb45d04dc3232cb8a253e756e535af9bf34
|
||||
|
|
Loading…
Reference in a new issue