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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 258AD15817D for ; Thu, 13 Jun 2024 04:09:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 511A0E2AC2; Thu, 13 Jun 2024 04:09:42 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25542E2AC2 for ; Thu, 13 Jun 2024 04:09:42 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CA3C33BEA5 for ; Thu, 13 Jun 2024 04:09:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC68A11DF for ; Thu, 13 Jun 2024 04:09:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1718251757.247aeb9cf521d95a853d52a7b1f4719f508a0ffd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/protobuf/protobuf-22.5-r1.ebuild dev-libs/protobuf/protobuf-23.3-r3.ebuild dev-libs/protobuf/protobuf-26.1-r1.ebuild X-VCS-Directories: dev-libs/protobuf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 247aeb9cf521d95a853d52a7b1f4719f508a0ffd X-VCS-Branch: master Date: Thu, 13 Jun 2024 04:09:39 +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: 6821dbf5-0943-454e-9110-a028bdfd4ac2 X-Archives-Hash: f0d68ed82752886b533d5944310115c2 commit: 247aeb9cf521d95a853d52a7b1f4719f508a0ffd Author: Sam James gentoo org> AuthorDate: Thu Jun 13 04:08:21 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 13 04:09:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247aeb9c dev-libs/protobuf: fix tests 'full-test' requires this. TestSourceDir in src/google/protobuf/testing/googletest.cc respects 'srcdir' as an env var as a hint. Bug: https://bugs.gentoo.org/934062 Signed-off-by: Sam James gentoo.org> dev-libs/protobuf/protobuf-22.5-r1.ebuild | 5 +++++ dev-libs/protobuf/protobuf-23.3-r3.ebuild | 5 +++++ dev-libs/protobuf/protobuf-26.1-r1.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/dev-libs/protobuf/protobuf-22.5-r1.ebuild b/dev-libs/protobuf/protobuf-22.5-r1.ebuild index 047dddcdea67..cd3d12dbea09 100644 --- a/dev-libs/protobuf/protobuf-22.5-r1.ebuild +++ b/dev-libs/protobuf/protobuf-22.5-r1.ebuild @@ -83,6 +83,11 @@ src_compile() { fi } +src_test() { + local -x srcdir="${S}"/src + cmake-multilib_src_test +} + multilib_src_install_all() { find "${ED}" -name "*.la" -delete || die diff --git a/dev-libs/protobuf/protobuf-23.3-r3.ebuild b/dev-libs/protobuf/protobuf-23.3-r3.ebuild index e629850b71ed..6ef5f8f482f1 100644 --- a/dev-libs/protobuf/protobuf-23.3-r3.ebuild +++ b/dev-libs/protobuf/protobuf-23.3-r3.ebuild @@ -74,6 +74,11 @@ src_compile() { fi } +src_test() { + local -x srcdir="${S}"/src + cmake-multilib_src_test +} + multilib_src_install_all() { find "${ED}" -name "*.la" -delete || die diff --git a/dev-libs/protobuf/protobuf-26.1-r1.ebuild b/dev-libs/protobuf/protobuf-26.1-r1.ebuild index b98e219098fd..534834edca75 100644 --- a/dev-libs/protobuf/protobuf-26.1-r1.ebuild +++ b/dev-libs/protobuf/protobuf-26.1-r1.ebuild @@ -72,6 +72,11 @@ src_compile() { fi } +src_test() { + local -x srcdir="${S}"/src + cmake-multilib_src_test +} + multilib_src_install_all() { find "${ED}" -name "*.la" -delete || die