diff options
author | Sam James <sam@gentoo.org> | 2021-06-02 23:57:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-03 19:15:04 +0000 |
commit | 9f98d6b84b9b36a862e594f2f47bc04e07a0e988 (patch) | |
tree | 17d4b0ef1f60900768576e1b7b4d53c85f5c147c /sci-biology | |
parent | net-proxy/haproxy: fix BadDefaultUseFlags (diff) | |
download | gentoo-9f98d6b84b9b36a862e594f2f47bc04e07a0e988.tar.gz gentoo-9f98d6b84b9b36a862e594f2f47bc04e07a0e988.tar.bz2 gentoo-9f98d6b84b9b36a862e594f2f47bc04e07a0e988.zip |
sci-biology/bioperl-run: 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 'sci-biology')
-rw-r--r-- | sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild b/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild index e5dc816bc78a..461c4f51b071 100644 --- a/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild +++ b/sci-biology/bioperl-run/bioperl-run-1.6.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -15,7 +15,7 @@ HOMEPAGE="http://www.bioperl.org/" SLOT="0" KEYWORDS="amd64 x86" -IUSE="-minimal test" +IUSE="minimal test" #SRC_TEST="do" RESTRICT="test" |