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 45C4C15807A for ; Fri, 06 Jun 2025 05:01:21 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2CCAC3431CF for ; Fri, 06 Jun 2025 05:01:21 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 2B5F51102BE; Fri, 06 Jun 2025 05:01:20 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 194DB1102BE for ; Fri, 06 Jun 2025 05:01:19 +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 6D03D343030 for ; Fri, 06 Jun 2025 05:01:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9ABC2059 for ; Fri, 06 Jun 2025 05:01:17 +0000 (UTC) From: "Jan-Espen Oversand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jan-Espen Oversand" Message-ID: <1749185972.6076789cc1a912051dac7a5522d0dbf8847cfa2f.sigsegv@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-db/soci/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-db/soci/soci-4.0.3-r3.ebuild X-VCS-Directories: dev-db/soci/ X-VCS-Committer: sigsegv X-VCS-Committer-Name: Jan-Espen Oversand X-VCS-Revision: 6076789cc1a912051dac7a5522d0dbf8847cfa2f X-VCS-Branch: dev Date: Fri, 06 Jun 2025 05:01:17 +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: f959b066-3964-4367-a69c-cd2ddc500034 X-Archives-Hash: fdd8fe5e8375e104b308f8b576b6f244 commit: 6076789cc1a912051dac7a5522d0dbf8847cfa2f Author: Jan-Espen Oversand radiotube org> AuthorDate: Fri Jun 6 04:59:32 2025 +0000 Commit: Jan-Espen Oversand radiotube org> CommitDate: Fri Jun 6 04:59:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6076789c dev-db/soci: drop 4.0.3-r3 Signed-off-by: Jan-Espen Oversand radiotube.org> dev-db/soci/soci-4.0.3-r3.ebuild | 49 ---------------------------------------- 1 file changed, 49 deletions(-) diff --git a/dev-db/soci/soci-4.0.3-r3.ebuild b/dev-db/soci/soci-4.0.3-r3.ebuild deleted file mode 100644 index 0a360f0686..0000000000 --- a/dev-db/soci/soci-4.0.3-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="SOCI - The C++ Database Access Library" -HOMEPAGE="https://sourceforge.net/projects/soci/" -SRC_URI="https://sourceforge.net/projects/soci/files/soci/${P}/${P}.tar.gz/download -> ${P}.tar.gz" - -LICENSE="Boost-1.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="odbc sqlite oracle postgres mysql static-libs test lto +cxx11" -RESTRICT="!test? ( test )" - -CMAKE_SKIP_TESTS=( - soci_odbc_test_mssql - soci_odbc_test_mssql_static - soci_odbc_test_mysql - soci_odbc_test_mysql_static - soci_odbc_test_postgresql - soci_odbc_test_postgresql_static - soci_postgresql_test - soci_postgresql_test_static - soci_mysql_test - soci_mysql_test_static -) - -RDEPEND=" - >=dev-libs/boost-1.85.0-r1 - odbc? ( dev-db/unixODBC ) - sqlite? ( dev-db/sqlite ) - oracle? ( dev-db/oracle-instantclient[sdk] ) - postgres? ( dev-db/postgresql ) - mysql? ( dev-db/mysql ) -" -DEPEND="${RDEPEND}" - -src_configure() { - local mycmakeargs=( - -DSOCI_STATIC="$(usex static-libs)" - -DSOCI_TESTS="$(usex test)" - -DSOCI_LTO="$(usex lto)" - -DSOCI_CXX11="$(usex cxx11)" - ) - cmake_src_configure -}