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 DADEA158041 for ; Mon, 11 Mar 2024 14:24:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34CFFE2A29; Mon, 11 Mar 2024 14:24:13 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DA6AE2A26 for ; Mon, 11 Mar 2024 14:24:13 +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 49A1E341B52 for ; Mon, 11 Mar 2024 14:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5400A151C for ; Mon, 11 Mar 2024 14:24:09 +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: <1710166965.d95ee1cbbc41757a732d55abc1b3fa335a2b76b9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/slony1/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/slony1/slony1-2.2.10-r1.ebuild X-VCS-Directories: dev-db/slony1/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d95ee1cbbc41757a732d55abc1b3fa335a2b76b9 X-VCS-Branch: master Date: Mon, 11 Mar 2024 14:24: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: 2eac738e-3c62-4331-9dc2-3cb5dd9a50b7 X-Archives-Hash: 3e8a796433fae3024b1320ab274b9693 commit: d95ee1cbbc41757a732d55abc1b3fa335a2b76b9 Author: Eli Schwartz gmail com> AuthorDate: Sun Mar 10 22:45:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 11 14:22:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95ee1cb dev-db/slony1: fix typo in ebuild variables REQUIRE_USE isn't a thing. Due to this failing to be set properly, the build faild during setup with: * ERROR: dev-db/slony1-2.2.10-r1::gentoo failed (setup phase): * One of the postgres_targets_postgresSL_OT use flags must be enabled I'm not sure why that error message exists at all though, since it's supposed to be handled before setup via REQUIRED_USE. And... it usually would be. ;) Make this sane again. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-db/slony1/slony1-2.2.10-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-db/slony1/slony1-2.2.10-r1.ebuild b/dev-db/slony1/slony1-2.2.10-r1.ebuild index 81ec3602d9bd..89281ba1f3aa 100644 --- a/dev-db/slony1/slony1-2.2.10-r1.ebuild +++ b/dev-db/slony1/slony1-2.2.10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,7 +27,7 @@ DEPEND="${POSTGRES_DEP} " RDEPEND=${DEPEND} -REQUIRE_USE="${POSTGRES_REQ_USE}" +REQUIRED_USE="${POSTGRES_REQ_USE}" # Testing requires a more complex setup than we benefit from being able # to perform.