dev-haskell/monad-logger: avoid underscores in USE flags

Reported-by: Michał Górny
Closes: https://bugs.gentoo.org/695046
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
This commit is contained in:
Sergei Trofimovich
2019-09-22 09:56:45 +01:00
parent 5e4edbe79c
commit f1e23a032d
4 changed files with 10 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
<name>Gentoo Haskell</name>
</maintainer>
<use>
<flag name="template_haskell">Enable Template Haskell support.</flag>
<flag name="template-haskell">Enable Template Haskell support.</flag>
</use>
<longdescription>
This package uses template-haskell for determining source code locations of messages.

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+template_haskell"
IUSE="+template-haskell"
RDEPEND="dev-haskell/blaze-builder:=[profile?]
>=dev-haskell/conduit-1.0:=[profile?] <dev-haskell/conduit-1.3:=[profile?]
@@ -41,5 +41,5 @@ DEPEND="${RDEPEND}
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag template_haskell template_haskell)
$(cabal_flag template-haskell template_haskell)
}

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+template_haskell"
IUSE="+template-haskell"
RDEPEND="dev-haskell/blaze-builder:=[profile?]
>=dev-haskell/conduit-1.0:=[profile?] <dev-haskell/conduit-1.3:=[profile?]
@@ -41,5 +41,5 @@ DEPEND="${RDEPEND}
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag template_haskell template_haskell)
$(cabal_flag template-haskell template_haskell)
}

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+template_haskell"
IUSE="+template-haskell"
RDEPEND="dev-haskell/blaze-builder:=[profile?]
>=dev-haskell/conduit-1.0:=[profile?] <dev-haskell/conduit-1.3:=[profile?]
@@ -40,5 +40,5 @@ DEPEND="${RDEPEND}
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag template_haskell template_haskell)
$(cabal_flag template-haskell template_haskell)
}