Update qore-sqlite3-module to version 1.0.2
This update is to make sure the package works correctly qore version 1.2. Our patches are not needed anymore.
This commit is contained in:
parent
c0b66a1c3e
commit
0d690bab18
4 changed files with 10 additions and 46 deletions
|
@ -1,9 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.27 2021/12/08 16:03:49 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.28 2022/01/27 18:03:03 nros Exp $
|
||||
|
||||
DISTNAME= qore-sqlite3-module-1.0.1
|
||||
PKGREVISION= 26
|
||||
DISTNAME= qore-sqlite3-module-1.0.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
|
||||
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
|
||||
GITHUB_PROJECT= module-sqlite3
|
||||
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
||||
|
||||
MAINTAINER= nros@NetBSD.org
|
||||
HOMEPAGE= http://www.qore.org/
|
||||
|
@ -16,6 +17,7 @@ USE_LANGUAGES= c c++11
|
|||
PTHREAD_OPTS+= native
|
||||
|
||||
CONFIGURE_ARGS+= --with-sqlite3=${BUILDLINK_PREFIX.sqlite3}
|
||||
CONFIGURE_ARGS+= --with-libsuffix=""
|
||||
|
||||
INSTALLATION_DIRS+= share/doc/${PKGBASE}
|
||||
post-install:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.4 2021/10/26 10:09:55 nia Exp $
|
||||
$NetBSD: distinfo,v 1.5 2022/01/27 18:03:03 nros Exp $
|
||||
|
||||
BLAKE2s (qore-sqlite3-module-1.0.1.tar.gz) = e273e059369340aafe0fd7a77a55014d6043a5327851548a1c4130e465449262
|
||||
SHA512 (qore-sqlite3-module-1.0.1.tar.gz) = 564aabe4f107805a290c4bc969d1092d678abfdd66a1a9c99d7f2d597f385d14504bcd2391bc2f2079440f428810bdb479a2cae0ea9940b4f9291a428c1be483
|
||||
Size (qore-sqlite3-module-1.0.1.tar.gz) = 441570 bytes
|
||||
BLAKE2s (qore-sqlite3-module-1.0.2.tar.gz) = 5a7f8b10be5593e0b44551e7e572400e77281784aa34b93bd399c40c1b748a17
|
||||
SHA512 (qore-sqlite3-module-1.0.2.tar.gz) = 38c55312c80dd8ee3c551cad65e92edbb05ecbb92dde697bdc43ce93dbb248317629a48747443d1c15df297a9c199bb009dedbfe9a40efbbefe45fd481ed2fd4
|
||||
Size (qore-sqlite3-module-1.0.2.tar.gz) = 506698 bytes
|
||||
SHA1 (patch-configure) = 4cc1966b52fff9dc44aef00ab73afc4d655677f8
|
||||
SHA1 (patch-src_Makefile.in) = 332107621db7378d837d59d4fb76bb7c4aa53c3d
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
$NetBSD: patch-configure,v 1.1 2014/12/30 15:45:05 wiz Exp $
|
||||
* pkgsarc doesn't use lib64 so don't set it (fixes build on linux)
|
||||
http://sf.net/p/qore/code/6817/
|
||||
* fix typo so that --with-sqlite3 works correctly
|
||||
http://sourceforge.net/p/qore/code/6348/
|
||||
--- configure.orig 2010-06-20 09:09:23.000000000 +0000
|
||||
+++ configure
|
||||
@@ -14259,7 +14259,6 @@ if test "$enable_64bit" = "yes"; then
|
||||
*linux*) if test "$GXX" = "yes"; then
|
||||
CXXFLAGS="$CXXFLAGS -m64"
|
||||
fi
|
||||
- LIBSUFFIX=64
|
||||
|
||||
;;
|
||||
*hpux*) if test "$host_cpu" = "ia64"; then
|
||||
@@ -14717,7 +14716,7 @@ fi
|
||||
|
||||
# Check whether --with-sqlite3 was given.
|
||||
if test "${with_sqlite3+set}" = set; then :
|
||||
- withval=$with_sqlite3; if test ! -d "${with_sqlite3l}"; then as_fn_error "directory ${with_sqlite3} does not exist for --with-sqlite3" "$LINENO" 5; unset with_sqlite3; fi
|
||||
+ withval=$with_sqlite3; if test ! -d "${with_sqlite3}"; then as_fn_error "directory ${with_sqlite3} does not exist for --with-sqlite3" "$LINENO" 5; unset with_sqlite3; fi
|
||||
fi
|
||||
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
$NetBSD: patch-src_Makefile.in,v 1.1 2014/12/30 15:45:05 wiz Exp $
|
||||
* don't install .a file
|
||||
http://sourceforge.net/p/qore/code/6290/
|
||||
--- src/Makefile.in.orig 2014-02-16 17:29:57.000000000 +0000
|
||||
+++ src/Makefile.in
|
||||
@@ -545,7 +545,7 @@ uninstall-am: uninstall-libLTLIBRARIES
|
||||
|
||||
install-exec-hook:
|
||||
mv $(DESTDIR)$(libdir)/sqlite3.$(MODULE_SUFFIX) $(DESTDIR)$(libdir)/sqlite3-api-$(MODULE_API).qmod
|
||||
- rm -f $(DESTDIR)$(libdir)/sqlite3.la
|
||||
+ rm -f $(DESTDIR)$(libdir)/sqlite3.la $(DESTDIR)$(libdir)/sqlite3.a
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
Loading…
Reference in a new issue