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.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 A1BFC15802C for ; Sun, 15 Dec 2024 22:50:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7145E07F6; Sun, 15 Dec 2024 22:50:47 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8D41E07F6 for ; Sun, 15 Dec 2024 22:50:47 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98852340B57 for ; Sun, 15 Dec 2024 22:50:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BA0F90B for ; Sun, 15 Dec 2024 22:50:44 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1734292561.2dba1beb6be440cf9c024e59852b65eb2b9a80d5.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-db/soci/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-db/soci/metadata.xml dev-db/soci/soci-4.0.3-r2.ebuild dev-db/soci/soci-4.0.3-r3.ebuild X-VCS-Directories: dev-db/soci/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 2dba1beb6be440cf9c024e59852b65eb2b9a80d5 X-VCS-Branch: master Date: Sun, 15 Dec 2024 22:50:44 +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: d11ba4f6-7b18-419c-a434-b192cf65814b X-Archives-Hash: 14262fb37878c8fd2ec7be341602535f commit: 2dba1beb6be440cf9c024e59852b65eb2b9a80d5 Author: Jan-Espen Oversand radiotube org> AuthorDate: Sun Dec 15 19:56:01 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sun Dec 15 19:56:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2dba1beb dev-db/soci: rename static use, remove ubsan use Bug: https://bugs.gentoo.org/946512 Closes: https://bugs.gentoo.org/946512 Bug: https://bugs.gentoo.org/946513 Closes: https://bugs.gentoo.org/946513 Signed-off-by: Jan-Espen Oversand radiotube.org> dev-db/soci/metadata.xml | 1 - dev-db/soci/{soci-4.0.3-r2.ebuild => soci-4.0.3-r3.ebuild} | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-db/soci/metadata.xml b/dev-db/soci/metadata.xml index 92d41d279..e9eb83d07 100644 --- a/dev-db/soci/metadata.xml +++ b/dev-db/soci/metadata.xml @@ -6,7 +6,6 @@ Jan-Espen Oversand - Enable running with UB sanitizer Enable c++11 support diff --git a/dev-db/soci/soci-4.0.3-r2.ebuild b/dev-db/soci/soci-4.0.3-r3.ebuild similarity index 87% rename from dev-db/soci/soci-4.0.3-r2.ebuild rename to dev-db/soci/soci-4.0.3-r3.ebuild index 65a578e73..ddf4ea0c6 100644 --- a/dev-db/soci/soci-4.0.3-r2.ebuild +++ b/dev-db/soci/soci-4.0.3-r3.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://sourceforge.net/projects/soci/files/soci/${P}/${P}.tar.gz/downl LICENSE="Boost-1.0" SLOT="0" KEYWORDS="~amd64" -IUSE="odbc sqlite oracle postgres mysql +static test ubsan lto +cxx11" +IUSE="odbc sqlite oracle postgres mysql static-libs test lto +cxx11" RESTRICT="!test? ( test )" CMAKE_SKIP_TESTS=( @@ -38,9 +38,8 @@ DEPEND="${RDEPEND}" src_configure() { local mycmakeargs=( - -DSOCI_STATIC="$(usex static)" + -DSOCI_STATIC="$(usex static-libs)" -DSOCI_TESTS="$(usex test)" - -DSOCI_UBSAN="$(usex ubsan)" -DSOCI_LTO="$(usex lto)" -DSOCI_CXX11="$(usex cxx11)" )