mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 07:04:13 +02:00
While not required, it is a good idea to convert comments to ASCII to avoid issues with some tools that may not handle Unicode properly. This commit converts various comments in the ebuilds to ASCII where it makes sense. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
37 lines
930 B
Bash
37 lines
930 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CABAL_FEATURES="test-suite"
|
|
inherit haskell-cabal
|
|
|
|
DESCRIPTION="Basic syntax and deliverability checks on email addresses"
|
|
HOMEPAGE="https://michael.orlitzky.com/code/email-validator.xhtml"
|
|
SRC_URI="https://michael.orlitzky.com/code/releases/${P}.tar.gz"
|
|
|
|
LICENSE="AGPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT=test # Ambiguous module name 'Network.DNS': dns-4.0.1 resolv-0.1.2.0
|
|
|
|
RDEPEND=">=dev-haskell/cmdargs-0.10:=
|
|
>=dev-haskell/dns-2:=
|
|
>=dev-haskell/email-validate-2:=
|
|
>=dev-haskell/hunit-1.2:=
|
|
>=dev-haskell/parallel-io-0.3:=
|
|
>=dev-haskell/pcre-light-0.4:=
|
|
>=dev-haskell/tasty-0.8:=
|
|
>=dev-haskell/tasty-hunit-0.8:=
|
|
>=dev-lang/ghc-7.6.1:=
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
>=dev-haskell/cabal-1.16.0
|
|
test? ( >=dev-haskell/doctest-0.9 )
|
|
"
|
|
|
|
src_install() {
|
|
haskell-cabal_src_install
|
|
doman "${S}/doc/man1/${PN}.1"
|
|
}
|