[arch-commits] Commit in libfbclient/trunk (3 files)

Felix Yan felixonmars at gemini.archlinux.org
Thu Aug 19 18:28:04 UTC 2021


    Date: Thursday, August 19, 2021 @ 18:28:04
  Author: felixonmars
Revision: 422371

upgpkg: libfbclient 4.0.0.2496-1

Added:
  libfbclient/trunk/shared-re2.patch
  libfbclient/trunk/update-re2.patch
Modified:
  libfbclient/trunk/PKGBUILD

------------------+
 PKGBUILD         |   24 ++++++++++++++++++------
 shared-re2.patch |   27 +++++++++++++++++++++++++++
 update-re2.patch |   28 ++++++++++++++++++++++++++++
 3 files changed, 73 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-08-19 17:19:00 UTC (rev 422370)
+++ PKGBUILD	2021-08-19 18:28:04 UTC (rev 422371)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
 
 pkgname=libfbclient
-pkgver=3.0.7.33374
+pkgver=4.0.0.2496
 pkgrel=1
 pkgdesc="Client library for Firebird"
 arch=('x86_64')
@@ -10,19 +10,31 @@
 url="https://www.firebirdsql.org/"
 license=('custom')
 depends=('gcc-libs' 'libtommath')
-source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_7/Firebird-$pkgver-0.tar.bz2
+makedepends=('editline' 'libtomcrypt' 're2' 'unzip')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/v4.0.0/Firebird-$pkgver-0.tar.xz
+        shared-re2.patch update-re2.patch
         LICENSE)
-sha512sums=('ee89cda6d9ace16419515689ed245fbd1bb0e2464bd2d50637e0f474a6aca2e5b86e874ce8bd9714431705a93c038d46de6be1806f0c37d236880a855e725943'
+sha512sums=('110f1e9b245631ba04fb1f3f3fe16209e432157615c5c23046a277f3e6a164a2142c6732e793d9cc6650d65239a0da8bf37a74329134bd006b7d2cb070812bd6'
+            '7d431b6662df6f35ddd4d850de646adc4e10f6963ab5b73595de3de9a4465b5e32d28cebb68934d83e105671505de171924c6ba6539bfa5b98d8be3d7f7fab7f'
+            'eb61d677461c80366d1458e9d98387f139f71fd0f49e3cf538a3656223d61470336d51afdd3d7929593ab8666ccbf95e11cb80275ba8d5588771592b0f70346c'
             '1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
 
+prepare() {
+  patch -d Firebird-$pkgver-0 -p1 < shared-re2.patch
+  patch -d Firebird-$pkgver-0 -p1 < update-re2.patch
+
+  # Ensure system libs are used
+  rm -r Firebird-$pkgver-0/extern/{editline,libtommath,libtomcrypt,zlib}
+}
+
 build() {
   cd Firebird-$pkgver-0
 
-  ./configure --prefix=/usr --without-fbudf \
+  ./configure --prefix=/usr \
     --without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
     --without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
     --without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
-    --without-fbglock --without-fbplugins
+    --without-fbglock --without-fbplugins --without-fbtzdata --with-system-editline
 
   make
 }
@@ -33,7 +45,7 @@
   mkdir -p "$pkgdir"/usr/{bin,share/{firebird,licenses/$pkgname}}
 
   cp -R gen/Release/firebird/{lib,include} "$pkgdir"/usr
-  rm -f "$pkgdir"/usr/lib/libedit.a
+  rm -f "$pkgdir"/usr/lib/{libdecFloat.a,libedit.a}
 
   install -m644 gen/Release/firebird/*.msg "$pkgdir"/usr/share/firebird
   install -m755 gen/Release/firebird/bin/fb_config "$pkgdir"/usr/bin

Added: shared-re2.patch
===================================================================
--- shared-re2.patch	                        (rev 0)
+++ shared-re2.patch	2021-08-19 18:28:04 UTC (rev 422371)
@@ -0,0 +1,27 @@
+diff --git a/builds/posix/Makefile.in b/builds/posix/Makefile.in
+index c7d3336266..8ad766c1a4 100644
+--- a/builds/posix/Makefile.in
++++ b/builds/posix/Makefile.in
+@@ -170,9 +170,6 @@ external:
+ 	$(MAKE) -C $(ROOT)/extern/decNumber
+ 	ln -sf $(ROOT)/extern/decNumber/libdecFloat.a $(LIB)
+ 
+-	CXXFLAGS="-O3 -g -fPIC" $(MAKE) -C $(ROOT)/extern/re2
+-	ln -sf $(ROOT)/extern/re2/obj/libre2.a $(LIB)
+-
+ ifeq ($(TOMMATH_BUILD_FLG),Y)
+ 	CFLAGS="$(CFLAGS)" $(MAKE) -C $(ROOT)/extern/libtommath -f makefile.shared GCC=$(GCC)
+ 
+diff --git a/builds/posix/make.rules b/builds/posix/make.rules
+index 3afd891141..44e9e3754d 100644
+--- a/builds/posix/make.rules
++++ b/builds/posix/make.rules
+@@ -32,7 +32,7 @@
+ 
+ 
+ # Please don't use compiler/platform specific flags here - nmcc 02-Nov-2002
+-WFLAGS =-I$(SRC_ROOT)/include/gen -I$(SRC_ROOT)/include -I$(ROOT)/extern/re2 $(CPPFLAGS) $(LTCSOURCE)
++WFLAGS =-I$(SRC_ROOT)/include/gen -I$(SRC_ROOT)/include $(CPPFLAGS) $(LTCSOURCE)
+ 
+ ifeq ($(TOMMATH_BUILD_FLG),Y)
+   WFLAGS += -I$(TOMMATH_INC)

Added: update-re2.patch
===================================================================
--- update-re2.patch	                        (rev 0)
+++ update-re2.patch	2021-08-19 18:28:04 UTC (rev 422371)
@@ -0,0 +1,28 @@
+commit 512319738fcf9819f375f20441f09a7b1dff5168
+Author: Adriano dos Santos Fernandes <adrianosf at gmail.com>
+Date:   Wed May 26 10:41:25 2021 -0300
+
+    Replace removed RE2 method.
+
+diff --git a/src/common/SimilarToRegex.cpp b/src/common/SimilarToRegex.cpp
+index 3a62b245e3..0b6e533018 100644
+--- a/src/common/SimilarToRegex.cpp
++++ b/src/common/SimilarToRegex.cpp
+@@ -108,7 +108,7 @@ namespace
+ 			options.set_log_errors(false);
+ 			options.set_dot_nl(true);
+ 			options.set_case_sensitive(!(flags & COMP_FLAG_CASE_INSENSITIVE));
+-			options.set_utf8(!(flags & COMP_FLAG_LATIN));
++			options.set_encoding(flags & COMP_FLAG_LATIN ? RE2::Options::EncodingLatin1 : RE2::Options::EncodingUTF8);
+ 
+ 			re2::StringPiece sp((const char*) re2PatternStr.c_str(), re2PatternStr.length());
+ 			regexp = FB_NEW_POOL(pool) RE2(sp, options);
+@@ -759,7 +759,7 @@ namespace
+ 			options.set_log_errors(false);
+ 			options.set_dot_nl(true);
+ 			options.set_case_sensitive(!(flags & COMP_FLAG_CASE_INSENSITIVE));
+-			options.set_utf8(!(flags & COMP_FLAG_LATIN));
++			options.set_encoding(flags & COMP_FLAG_LATIN ? RE2::Options::EncodingLatin1 : RE2::Options::EncodingUTF8);
+ 
+ 			re2::StringPiece sp((const char*) finalRe2Pattern.c_str(), finalRe2Pattern.length());
+ 			regexp = FB_NEW_POOL(pool) RE2(sp, options);



More information about the arch-commits mailing list