From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 47330138331 for ; Thu, 22 Feb 2018 22:19:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42A2CE091A; Thu, 22 Feb 2018 22:19:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F91CE091A for ; Thu, 22 Feb 2018 22:19:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BA86335C4E for ; Thu, 22 Feb 2018 22:19:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A61B8233 for ; Thu, 22 Feb 2018 22:19:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1519337654.e6c56e5f15410af81f4b789b2a532a8abda0569c.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtsql/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtsql/qtsql-5.10.1.ebuild X-VCS-Directories: dev-qt/qtsql/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e6c56e5f15410af81f4b789b2a532a8abda0569c X-VCS-Branch: master Date: Thu, 22 Feb 2018 22:19:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d9163bfc-882e-4633-a828-9580eefeccbb X-Archives-Hash: 2cb173558c02db2dfd50b37f2fabb5ef commit: e6c56e5f15410af81f4b789b2a532a8abda0569c Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Feb 22 10:11:29 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Feb 22 22:14:14 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=e6c56e5f dev-qt/qtsql: Drop 5.10.1 (r0) Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-qt/qtsql/qtsql-5.10.1.ebuild | 57 ---------------------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-qt/qtsql/qtsql-5.10.1.ebuild b/dev-qt/qtsql/qtsql-5.10.1.ebuild deleted file mode 100644 index 8b17279a..00000000 --- a/dev-qt/qtsql/qtsql-5.10.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -QT5_MODULE="qtbase" -inherit qt5-build - -DESCRIPTION="SQL abstraction library for the Qt5 tooolkit" - -if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" -fi - -IUSE="freetds mysql oci8 odbc postgres +sqlite" - -REQUIRED_USE=" - || ( freetds mysql oci8 odbc postgres sqlite ) -" - -DEPEND=" - ~dev-qt/qtcore-${PV} - freetds? ( dev-db/freetds ) - mysql? ( virtual/libmysqlclient:= ) - oci8? ( dev-db/oracle-instantclient-basic ) - odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) - postgres? ( dev-db/postgresql:* ) - sqlite? ( >=dev-db/sqlite-3.8.10.2:3 ) -" -RDEPEND="${DEPEND}" - -QT5_TARGET_SUBDIRS=( - src/sql - src/plugins/sqldrivers -) - -QT5_GENTOO_PRIVATE_CONFIG=( - :sql -) - -src_configure() { - local myconf=( - $(qt_use freetds sql-tds plugin) - $(qt_use mysql sql-mysql plugin) - $(qt_use oci8 sql-oci plugin) - $(qt_use odbc sql-odbc plugin) - $(qt_use postgres sql-psql plugin) - $(qt_use sqlite sql-sqlite plugin) - $(usex sqlite -system-sqlite '') - ) - - use mysql && myconf+=("-I${EPREFIX}/usr/include/mysql" "-L${EPREFIX}/usr/$(get_libdir)/mysql") - use oci8 && myconf+=("-I${ORACLE_HOME}/include" "-L${ORACLE_HOME}/$(get_libdir)") - use odbc && myconf+=("-I${EPREFIX}/usr/include/iodbc") - use postgres && myconf+=("-I${EPREFIX}/usr/include/postgresql/pgsql") - - qt5-build_src_configure -}