summaryrefslogtreecommitdiff
path: root/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2019-11-09 12:50:09 +0100
committerUlrich Müller <ulm@gentoo.org>2019-11-09 12:50:44 +0100
commit2532a5f4b19749bf245dfcec763ec05f94fe4ace (patch)
treea04aaf01633c481040714c9d8bb903763bfc4275 /dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild
parentdd306c8c02441b1bdc5a65ad624677ce35ec6341 (diff)
downloadgentoo-2532a5f4b19749bf245dfcec763ec05f94fe4ace.tar.gz
gentoo-2532a5f4b19749bf245dfcec763ec05f94fe4ace.tar.bz2
gentoo-2532a5f4b19749bf245dfcec763ec05f94fe4ace.zip
dev-db/qt5-sqlcipher: New snapshot, supports Qt 5.13.
Package-Manager: Portage-2.3.79, Repoman-2.3.17 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild')
-rw-r--r--dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild b/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild
deleted file mode 100644
index 744c62f7f414..000000000000
--- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1_p20181221.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-DESCRIPTION="Qt SQL driver plugin for SQLCipher"
-HOMEPAGE="https://github.com/blizzard4591/qt5-sqlcipher"
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
-
-LICENSE="LGPL-2.1" # version 2.1 only
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=dev-db/sqlcipher-3.4.1
- >=dev-qt/qtcore-5.7.1:5=
- >=dev-qt/qtsql-5.7.1:5=[sqlite] <dev-qt/qtsql-5.13:5=[sqlite]"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${PN}"
-DOCS=(README.md)
-
-src_prepare() {
- eapply "${FILESDIR}"/${PN}-install-path.patch
- sed -i -e "s/@LIBDIR@/$(get_libdir)/" CMakeLists.txt || die
-
- local v=$(best_version dev-qt/qtsql:5)
- v=$(ver_cut 1-3 ${v#*/qtsql-})
- [[ -n ${v} ]] || die "could not determine qtsql version"
- if ! [[ -d qt-file-cache/${v} ]]; then
- local vc
- case $(ver_cut 1-2 ${v}) in
- 5.7) vc=5.7.1 ;;
- 5.9) vc=5.9.6 ;;
- 5.11) vc=5.11.3 ;;
- 5.12) vc=5.12.0 ;;
- *) die "qtsql-${v} not supported" ;;
- esac
- elog "qtsql-${v} not in cache, using ${vc} instead"
- cp -R qt-file-cache/${vc} qt-file-cache/${v} || die
- fi
-
- cmake-utils_src_prepare
-}
-
-src_test() {
- cd "${BUILD_DIR}" || die
- ./qsqlcipher-test || die
-}