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 BA2671396D0 for ; Mon, 21 Aug 2017 15:43:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8DBEE0F69; Mon, 21 Aug 2017 15:43:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C4591E0F69 for ; Mon, 21 Aug 2017 15:43:37 +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 8B1FB341A94 for ; Mon, 21 Aug 2017 15:43:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E85787D9F for ; Mon, 21 Aug 2017 15:43:34 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1503330158.998a9b9bb6185d584bf6fa6217c80d10765652f1.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/freetds/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/freetds/freetds-1.00.54-r1.ebuild dev-db/freetds/freetds-1.00.54.ebuild X-VCS-Directories: dev-db/freetds/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 998a9b9bb6185d584bf6fa6217c80d10765652f1 X-VCS-Branch: master Date: Mon, 21 Aug 2017 15:43:34 +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: f22dfb5f-068d-4578-8d88-e3a846e72b94 X-Archives-Hash: 11f8b01ea13a18f2accfe0cb2d9b79e2 commit: 998a9b9bb6185d584bf6fa6217c80d10765652f1 Author: Michael Orlitzky gentoo org> AuthorDate: Mon Aug 21 15:42:38 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Mon Aug 21 15:42:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998a9b9b dev-db/freetds: new revision to add a missing REQUIRED_USE constraint. The flags USE=iodbc and USE=odbc are actually mutually exclusive. The upstream build system doesn't crash at the moment, but will instead select only one of them if both are specified -- probably not what you want! This new revision adds an at-most-one-of constraint for those flags, so that you must explicitly choose (only) the one you want. Future versions of FreeTDS will throw an error if you ask for both. Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-db/freetds/{freetds-1.00.54.ebuild => freetds-1.00.54-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-db/freetds/freetds-1.00.54.ebuild b/dev-db/freetds/freetds-1.00.54-r1.ebuild similarity index 90% rename from dev-db/freetds/freetds-1.00.54.ebuild rename to dev-db/freetds/freetds-1.00.54-r1.ebuild index a7a0237e059..0032727f6bf 100644 --- a/dev-db/freetds/freetds-1.00.54.ebuild +++ b/dev-db/freetds/freetds-1.00.54-r1.ebuild @@ -37,6 +37,11 @@ RDEPEND="${COMMON_DEPEND} sys-devel/binutils net-dns/bind-tools" +# iODBC and unixODBC are mutually-exclusive choices for +# the ODBC driver manager. Future versions of FreeTDS +# will throw an error if you specify both. +REQUIRED_USE="?? ( iodbc odbc )" + # Won't be necessary in the next release. PATCHES=( "${FILESDIR}/without-flags.patch" )