Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsql/
Date: Wed, 25 Sep 2019 21:34:43
Message-Id: 1569447235.700c02a5d0d652853417099669381ff59214efa5.asturm@gentoo
1 commit: 700c02a5d0d652853417099669381ff59214efa5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 25 20:13:22 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 25 21:33:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=700c02a5
7
8 dev-qt/qtsql: Drop 5.12.5 (r0)
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-qt/qtsql/qtsql-5.12.5.ebuild | 55 ----------------------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/dev-qt/qtsql/qtsql-5.12.5.ebuild b/dev-qt/qtsql/qtsql-5.12.5.ebuild
17 deleted file mode 100644
18 index ba9ab526b7e..00000000000
19 --- a/dev-qt/qtsql/qtsql-5.12.5.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -QT5_MODULE="qtbase"
27 -inherit qt5-build
28 -
29 -DESCRIPTION="SQL abstraction library for the Qt5 framework"
30 -SLOT=5/$(ver_cut 1-3) # bug 639140
31 -
32 -if [[ ${QT5_BUILD_TYPE} == release ]]; then
33 - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
34 -fi
35 -
36 -IUSE="freetds mysql oci8 odbc postgres +sqlite"
37 -
38 -REQUIRED_USE="
39 - || ( freetds mysql oci8 odbc postgres sqlite )
40 -"
41 -
42 -DEPEND="
43 - ~dev-qt/qtcore-${PV}
44 - freetds? ( dev-db/freetds )
45 - mysql? ( dev-db/mysql-connector-c:= )
46 - oci8? ( dev-db/oracle-instantclient:=[sdk] )
47 - odbc? ( dev-db/unixODBC )
48 - postgres? ( dev-db/postgresql:* )
49 - sqlite? ( dev-db/sqlite:3 )
50 -"
51 -RDEPEND="${DEPEND}"
52 -
53 -QT5_TARGET_SUBDIRS=(
54 - src/sql
55 - src/plugins/sqldrivers
56 -)
57 -
58 -QT5_GENTOO_PRIVATE_CONFIG=(
59 - :sql
60 -)
61 -
62 -src_configure() {
63 - local myconf=(
64 - $(qt_use freetds sql-tds plugin)
65 - $(qt_use mysql sql-mysql plugin)
66 - $(qt_use oci8 sql-oci plugin)
67 - $(qt_use odbc sql-odbc plugin)
68 - $(qt_use postgres sql-psql plugin)
69 - $(qt_use sqlite sql-sqlite plugin)
70 - $(usex sqlite -system-sqlite '')
71 - )
72 -
73 - use oci8 && myconf+=("-I${ORACLE_HOME}/include" "-L${ORACLE_HOME}/$(get_libdir)")
74 -
75 - qt5-build_src_configure
76 -}