Skip to content

Rebuild OpenSSL for correct bee package creation #1584

Merged
merged 6 commits into from
Jan 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions qt5.be0
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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} \
Expand Down
2 changes: 1 addition & 1 deletion qtwebkit.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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+=()

Expand Down
10 changes: 6 additions & 4 deletions sqlite.be0
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -10,9 +10,11 @@ mee_configure() {
--enable-threadsafe \
--enable-readline \
--enable-dynamic-extensions \
CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1 \
--enable-fts5 \
CFLAGS="-g -O2 \
-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"
}