From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D3B5158074 for ; Mon, 30 Jun 2025 10:36:12 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3A2FD340F2E for ; Mon, 30 Jun 2025 10:36:12 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3C889110320; Mon, 30 Jun 2025 10:36:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 32759110320 for ; Mon, 30 Jun 2025 10:36:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0E1A340F2E for ; Mon, 30 Jun 2025 10:36:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74FA81E2E for ; Mon, 30 Jun 2025 10:36:09 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1751279456.75bded4d8eae31a562c8c2d3911a1f2688463ecd.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb-connector-odbc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild X-VCS-Directories: dev-db/mariadb-connector-odbc/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 75bded4d8eae31a562c8c2d3911a1f2688463ecd X-VCS-Branch: master Date: Mon, 30 Jun 2025 10:36:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b5a3c5e6-93db-4911-a9b7-4a4e175d7f11 X-Archives-Hash: a4e9ec832a5441c56282499dcb0d13e2 commit: 75bded4d8eae31a562c8c2d3911a1f2688463ecd Author: Petr Vaněk gentoo org> AuthorDate: Mon Jun 30 10:30:56 2025 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Mon Jun 30 10:30:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75bded4d dev-db/mariadb-connector-odbc: add ssl(+) for mariadb-connector-c The IUSE=ssl was dropped from dev-db/mariadb-connector-c recently, because it is now mandatory. This change needs to be reflected in mariadb-connector-odbc package accordingly. Fixes: 3731ccd11198 ("dev-db/mariadb-connector-c: drop IUSE=ssl, it is now mandatory") Signed-off-by: Petr Vaněk gentoo.org> dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild b/dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild index e59d67bf4816..556d833f10dc 100644 --- a/dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild +++ b/dev-db/mariadb-connector-odbc/mariadb-connector-odbc-3.1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 2018-2023 Gentoo Authors +# Copyright 2018-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,7 +20,7 @@ IUSE="ssl" # it doesn't make sense enable these configuration options unless the # underlying mariadb-connector-c has ssl enabled, thus if we have USE=ssl, # require mariadb-connector-c to have it too. -DEPEND="dev-db/mariadb-connector-c:=[ssl?] +DEPEND="dev-db/mariadb-connector-c:=[ssl(+)?] dev-db/unixODBC" RDEPEND="${DEPEND}"