commit: d95ee1cbbc41757a732d55abc1b3fa335a2b76b9
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 10 22:45:41 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> 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.