diff options
author | Sam James <sam@gentoo.org> | 2021-06-02 23:53:35 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-03 19:14:44 +0000 |
commit | ec8c73c2e5dae0d1bb5dcf06ab58549226c7fe08 (patch) | |
tree | d404b190cc32ac32242d07902f63ac908012b6d6 /dev-db | |
parent | app-text/sword-modules: fix BadDefaultUseFlags (diff) | |
download | gentoo-ec8c73c2e5dae0d1bb5dcf06ab58549226c7fe08.tar.gz gentoo-ec8c73c2e5dae0d1bb5dcf06ab58549226c7fe08.tar.bz2 gentoo-ec8c73c2e5dae0d1bb5dcf06ab58549226c7fe08.zip |
dev-db/pgbouncer: fix BadDefaultUseFlags
-foo in IUSE is discouraged. It is equivalent (in every meaningful case) to 'foo' but confuses parsing
tools like e.g. packages.gentoo.org.
Dropping '-' from these flags has no impact on the actual default behaviour.
See: https://devmanual.gentoo.org/general-concepts/use-flags/index.html#iuse-defaults
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/pgbouncer/pgbouncer-1.15.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild b/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild index f1d854b8b322..584e135f9540 100644 --- a/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild +++ b/dev-db/pgbouncer/pgbouncer-1.15.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ SRC_URI="https://www.pgbouncer.org/downloads/files/${PV}/pgbouncer-${PV}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86" -IUSE="+c-ares debug doc pam ssl systemd -udns" +IUSE="+c-ares debug doc pam ssl systemd udns" # At-most-one-of, one can be enabled but not both REQUIRED_USE="?? ( c-ares udns )" |