pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/RE-flex/patches Updated to 3.0.12



details:   https://anonhg.NetBSD.org/pkgsrc/rev/560f467afa9c
branches:  trunk
changeset: 770305:560f467afa9c
user:      scole <scole%pkgsrc.org@localhost>
date:      Sun Nov 28 20:22:33 2021 +0000

description:
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.

diffstat:

 devel/RE-flex/patches/patch-lib_Makefile.in |  11 +++++------
 devel/RE-flex/patches/patch-src_Makefile.in |  11 +++++------
 2 files changed, 10 insertions(+), 12 deletions(-)

diffs (72 lines):

diff -r afc5426da4a5 -r 560f467afa9c devel/RE-flex/patches/patch-lib_Makefile.in
--- a/devel/RE-flex/patches/patch-lib_Makefile.in       Sun Nov 28 20:22:32 2021 +0000
+++ b/devel/RE-flex/patches/patch-lib_Makefile.in       Sun Nov 28 20:22:33 2021 +0000
@@ -1,18 +1,17 @@
-$NetBSD: patch-lib_Makefile.in,v 1.1 2020/06/15 15:11:50 scole Exp $
+$NetBSD: patch-lib_Makefile.in,v 1.2 2021/11/28 20:22:33 scole Exp $
 
 use libtool
 
---- lib/Makefile.in.orig       2020-05-25 23:34:27.000000000 +0000
+--- lib/Makefile.in.orig       2021-10-12 02:10:38.000000000 +0000
 +++ lib/Makefile.in
-@@ -241,12 +241,13 @@ AUTOCONF = @AUTOCONF@
+@@ -250,11 +250,12 @@ AUTOCONF = @AUTOCONF@
  AUTOHEADER = @AUTOHEADER@
  AUTOMAKE = @AUTOMAKE@
  AWK = @AWK@
 -CC = @CC@
-+CC=   $(LIBTOOL) --mode=compile @CC@
++CC = $(LIBTOOL) --mode=compile @CC@
  CCDEPMODE = @CCDEPMODE@
  CFLAGS = @CFLAGS@
- CPP = @CPP@
  CPPFLAGS = @CPPFLAGS@
 -CXX = @CXX@
 +CXXORIG = @CXX@
@@ -20,7 +19,7 @@
  CXXCPP = @CXXCPP@
  CXXDEPMODE = @CXXDEPMODE@
  CXXFLAGS = @CXXFLAGS@
-@@ -416,15 +417,15 @@ uninstall-libLIBRARIES:
+@@ -425,15 +426,15 @@ uninstall-libLIBRARIES:
  clean-libLIBRARIES:
        -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
  
diff -r afc5426da4a5 -r 560f467afa9c devel/RE-flex/patches/patch-src_Makefile.in
--- a/devel/RE-flex/patches/patch-src_Makefile.in       Sun Nov 28 20:22:32 2021 +0000
+++ b/devel/RE-flex/patches/patch-src_Makefile.in       Sun Nov 28 20:22:33 2021 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-src_Makefile.in,v 1.1 2020/06/15 15:11:50 scole Exp $
+$NetBSD: patch-src_Makefile.in,v 1.2 2021/11/28 20:22:33 scole Exp $
 
 use libtool
 
---- src/Makefile.in.orig       2020-05-25 23:34:27.000000000 +0000
+--- src/Makefile.in.orig       2021-10-12 02:10:38.000000000 +0000
 +++ src/Makefile.in
 @@ -103,7 +103,7 @@ am__installdirs = "$(DESTDIR)$(bindir)"
  PROGRAMS = $(bin_PROGRAMS)
@@ -13,19 +13,18 @@
  AM_V_P = $(am__v_P_@AM_V@)
  am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  am__v_P_0 = false
-@@ -174,12 +174,13 @@ AUTOCONF = @AUTOCONF@
+@@ -174,11 +174,12 @@ AUTOCONF = @AUTOCONF@
  AUTOHEADER = @AUTOHEADER@
  AUTOMAKE = @AUTOMAKE@
  AWK = @AWK@
 -CC = @CC@
-+CC=   $(LIBTOOL) --mode=compile @CC@
++CC= $(LIBTOOL) --mode=compile @CC@
  CCDEPMODE = @CCDEPMODE@
  CFLAGS = @CFLAGS@
- CPP = @CPP@
  CPPFLAGS = @CPPFLAGS@
 -CXX = @CXX@
 +CXXORIG = @CXX@
-+CXX=  $(LIBTOOL) --mode=compile @CXX@
++CXX= $(LIBTOOL) --mode=compile @CXX@
  CXXCPP = @CXXCPP@
  CXXDEPMODE = @CXXDEPMODE@
  CXXFLAGS = @CXXFLAGS@



Home | Main Index | Thread Index | Old Index