aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-11-11 06:38:15 -0300
committerLeo <thinkabit.ukim@gmail.com>2019-11-11 11:42:48 -0300
commit1e435a33bc773551ec28d3945d05d8e8ff8ff3cf (patch)
tree6ec5eadbfcd7456b825ed2616bce44ccf13e5f83 /testing
parentf0d538cc7bbd444e58d10527e3139a095a9b6ffa (diff)
downloadaports-1e435a33bc773551ec28d3945d05d8e8ff8ff3cf.tar.bz2
aports-1e435a33bc773551ec28d3945d05d8e8ff8ff3cf.tar.xz
community/falkon: move from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/falkon/APKBUILD45
-rw-r--r--testing/falkon/execinfo_h.patch21
2 files changed, 0 insertions, 66 deletions
diff --git a/testing/falkon/APKBUILD b/testing/falkon/APKBUILD
deleted file mode 100644
index 0f75050770..0000000000
--- a/testing/falkon/APKBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# Contributor: Leo <thinkabit.ukim@gmail.com>
-# Maintainer: Bart Ribbers <bribbers@disroot.org>
-pkgname=falkon
-pkgver=3.1.0
-pkgrel=1
-pkgdesc="Cross-platform Qt Web Browser"
-url="https://github.com/KDE/falkon"
-arch="all !ppc64le !s390x" # Limited by qt5-qtwebengine
-license="GPL-3.0-or-later"
-depends="qt5-qtbase-sqlite"
-makedepends="cmake python3 qt5-qtbase-dev extra-cmake-modules qt5-qtdeclarative-dev
- qt5-qtwebengine-dev xcb-util-dev libxcb-dev qt5-qtx11extras-dev qt5-qttools-dev
- ki18n-dev karchive-dev kwallet-dev kio-dev kcrash-dev kcoreaddons-dev purpose-dev"
-checkdepends="xvfb-run"
-subpackages="$pkgname-lang"
-source="https://download.kde.org/stable/falkon/3.1/falkon-$pkgver.tar.xz
- execinfo_h.patch"
-
-build() {
- if [ "$CBUILD" != "$CHOST" ]; then
- CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
- fi
- cmake \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=lib \
- -DBUILD_SHARED_LIBS=True \
- -DCMAKE_BUILD_TYPE=RelWithDefInfo \
- -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
- -DCMAKE_C_FLAGS="$CFLAGS" \
- -DBUILD_TESTING=ON \
- $CMAKE_CROSSOPTS
- make
-}
-
-check() {
- # Requires working OpenGL
- xvfb-run ctest -E '(falkon-webviewtest|falkon-webtabtest|falkon-tabmodeltest)'
-}
-
-package() {
- make DESTDIR="$pkgdir" install
-}
-
-sha512sums="c04f97869150b8ab81ae7b01c7137e35ca5c3103c057e01896454bbeda1075372a7831d2dfe7ab66794de0983593df6e46eff47c5cdc2bc959f81b022506f054 falkon-3.1.0.tar.xz
-5492b986b8f2156fe8a7af7382c54a82efdc8ccafd5f56a545de8f76d4fb5d4427e75f1387a36d1def3a7667ad44eae75a99580afcacde8b9ab83367cfb75077 execinfo_h.patch"
diff --git a/testing/falkon/execinfo_h.patch b/testing/falkon/execinfo_h.patch
deleted file mode 100644
index d94e8f2526..0000000000
--- a/testing/falkon/execinfo_h.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/src/main/main.cpp 2018-03-09 14:27:10.849179401 +0100
-+++ b/src/main/main.cpp 2018-03-09 14:27:44.623709876 +0100
-@@ -22,7 +22,7 @@
- #include <QMessageBox> // For QT_REQUIRE_VERSION
- #include <iostream>
-
--#if defined(Q_OS_LINUX) || defined(__GLIBC__) || defined(__FreeBSD__) || defined(__HAIKU__)
-+#if (defined(Q_OS_LINUX) && defined(__GLIBC__)) || defined(__FreeBSD__) || defined(__HAIKU__)
- #include <signal.h>
- #include <execinfo.h>
-
-@@ -129,7 +129,7 @@
- qInstallMessageHandler(&msgHandler);
- #endif
-
--#if defined(Q_OS_LINUX) || defined(__GLIBC__) || defined(__FreeBSD__)
-+#if (defined(Q_OS_LINUX) && defined(__GLIBC__)) || defined(__FreeBSD__)
- signal(SIGSEGV, falkon_signal_handler);
- #endif
-
-