From 0753d0e6d773066f5867b86d83a4f2e5f83d6ac4 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:13:28 +0100 Subject: [PATCH 1/6] qt5: Update version from 5.12.5 to 5.14.0 Remove the hack, as libevent was fixed in commit 0132473b2 (libev: Fix includedir). --- qt5.be0 | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/qt5.be0 b/qt5.be0 index d9f4ef814..03d216449 100755 --- a/qt5.be0 +++ b/qt5.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION qt5-5.12.5-0 +# BEE_VERSION qt5-5.14.0-0 SRCURL[0]="https://download.qt.io/archive/qt/${PKGVERSION[2]}/${PKGVERSION}/single/qt-everywhere-src-${PKGVERSION}.tar.xz" @@ -16,12 +16,6 @@ PREFIX=/usr/local/qt5 # start_cmd rm -rf ${S}/qtweb* # } -# At the time of building the system libevent is a complete mess. But it also makes -# sense to keep this in future builds. -mee_configure_pre() { - start_cmd sed -e '/webengine-system-libevent/ s/=true\s*$/=false/' -i ${S}/qtwebengine/src/core/config/linux.pri -} - mee_configure() { start_cmd ${S}/configure \ -prefix ${PREFIX} \ From ac0db5ecb8702d4801955766c973493de6854fc7 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:21:01 +0100 Subject: [PATCH 2/6] sqlite: Update version from 3.28.0 to 3.30.1 See https://www.sqlite.org/releaselog/3_30_1.html for the changes. --- sqlite.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite.be0 b/sqlite.be0 index 178e0faa2..a204e9136 100755 --- a/sqlite.be0 +++ b/sqlite.be0 @@ -1,6 +1,6 @@ #!/bin/env beesh -# BEE_VERSION sqlite-3.28.00.00-0 +# BEE_VERSION sqlite-3.30.01.00-0 SRCURL[0]="https://sqlite.org/2019/sqlite-autoconf-${PKGVERSION//./}.tar.gz" From 100f0f284375ac7cb01b0301341c65573094ad24 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:24:51 +0100 Subject: [PATCH 3/6] sqlite: Wrap line for more overview --- sqlite.be0 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sqlite.be0 b/sqlite.be0 index a204e9136..9586ba641 100755 --- a/sqlite.be0 +++ b/sqlite.be0 @@ -10,7 +10,8 @@ mee_configure() { --enable-threadsafe \ --enable-readline \ --enable-dynamic-extensions \ - CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1 \ + CFLAGS="-g -O2 \ + -DSQLITE_ENABLE_FTS3=1 \ -DSQLITE_ENABLE_COLUMN_METADATA=1 \ -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \ -DSQLITE_SECURE_DELETE=1 \ From 8939736c8c3879efd1a3721ea150ee64e0cff879 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:25:42 +0100 Subject: [PATCH 4/6] sqlite: Enable version 5 of full text search extension > --enable-fts5: enable version 5 of the full text search extension. --- sqlite.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlite.be0 b/sqlite.be0 index 9586ba641..99c358ce4 100755 --- a/sqlite.be0 +++ b/sqlite.be0 @@ -10,6 +10,7 @@ mee_configure() { --enable-threadsafe \ --enable-readline \ --enable-dynamic-extensions \ + --enable-fts5 \ CFLAGS="-g -O2 \ -DSQLITE_ENABLE_FTS3=1 \ -DSQLITE_ENABLE_COLUMN_METADATA=1 \ From affd956d4a236e8d4c51099f24b5428f06294141 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:27:09 +0100 Subject: [PATCH 5/6] sqlite: Sort C flags as in Beyond Linux From Scratch http://www.linuxfromscratch.org/blfs/view/svn/server/sqlite.html --- sqlite.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite.be0 b/sqlite.be0 index 99c358ce4..64b1e2aaa 100755 --- a/sqlite.be0 +++ b/sqlite.be0 @@ -15,6 +15,6 @@ mee_configure() { -DSQLITE_ENABLE_FTS3=1 \ -DSQLITE_ENABLE_COLUMN_METADATA=1 \ -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \ - -DSQLITE_SECURE_DELETE=1 \ - -DSQLITE_ENABLE_DBSTAT_VTAB=1" + -DSQLITE_ENABLE_DBSTAT_VTAB=1 \ + -DSQLITE_SECURE_DELETE=1" } From ffa0c571651f8e35640a1b099cd83cca1b07460d Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 3 Jan 2020 15:50:21 +0100 Subject: [PATCH 6/6] qtwebkit: Update to latest and last version The submodule are not provided anymore. https://download.qt.io/snapshots/ci/qtwebkit/5.212/1568772611/src/submodules/ --- qtwebkit.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qtwebkit.be0 b/qtwebkit.be0 index 47000674d..7ed459212 100755 --- a/qtwebkit.be0 +++ b/qtwebkit.be0 @@ -3,7 +3,7 @@ # BEE_VERSION qtwebkit-5.212-1 # mind the timestamp! | here | -SRCURL[0]="https://download.qt.io/snapshots/ci/qtwebkit/5.212/1563413169/src/submodules/qtwebkit-everywhere-src-5.212.tar.xz" +SRCURL[0]="https://download.qt.io/snapshots/ci/qtwebkit/5.212/1568772611/src/submodules/qtwebkit-everywhere-src-5.212.tar.xz" # PATCHURL+=()