diff options
author | 2022-07-23 23:50:34 +0100 | |
---|---|---|
committer | 2022-07-23 23:50:52 +0100 | |
commit | 3946fc105fa4310df77e46a8c649039711399d54 (patch) | |
tree | 8f09e8c70b3bdd459b24bb7ff0495a22b5a118a3 /dev-haskell/email-validate/files | |
parent | dev-haskell/aws: fixup deps (sync w/ ::haskell) (diff) | |
download | gentoo-3946fc105fa4310df77e46a8c649039711399d54.tar.gz gentoo-3946fc105fa4310df77e46a8c649039711399d54.tar.bz2 gentoo-3946fc105fa4310df77e46a8c649039711399d54.zip |
ddev-haskell/email-validate: add 2.3.2.15 (sync w/ ::haskell)
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-haskell/email-validate/files')
-rw-r--r-- | dev-haskell/email-validate/files/email-validate-2.3.2.15-fix-doctest.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-haskell/email-validate/files/email-validate-2.3.2.15-fix-doctest.patch b/dev-haskell/email-validate/files/email-validate-2.3.2.15-fix-doctest.patch new file mode 100644 index 000000000000..d60b0c6a7844 --- /dev/null +++ b/dev-haskell/email-validate/files/email-validate-2.3.2.15-fix-doctest.patch @@ -0,0 +1,26 @@ +From: hololeap <hololeap@protonmail.com> +Signed-off-by: hololeap <hololeap@protonmail.com> +Bug: https://github.com/gentoo-haskell/gentoo-haskell/issues/1231 + +Small fix to get doctest working + +diff -urN email-validate-2.3.2.15/src/Text/Email/QuasiQuotation.hs email-validate-2.3.2.15-r1/src/Text/Email/QuasiQuotation.hs +--- email-validate-2.3.2.15/src/Text/Email/QuasiQuotation.hs 2021-07-04 14:50:48.000000000 -0600 ++++ email-validate-2.3.2.15-r1/src/Text/Email/QuasiQuotation.hs 2022-03-17 17:33:15.666925125 -0600 +@@ -4,6 +4,7 @@ + #else + {-# LANGUAGE TemplateHaskell #-} + #endif ++{-# LANGUAGE PackageImports #-} + + module Text.Email.QuasiQuotation + ( email +@@ -11,7 +12,7 @@ + + import qualified Data.ByteString.Char8 as BS8 + +-import Language.Haskell.TH.Quote (QuasiQuoter(..)) ++import "template-haskell" Language.Haskell.TH.Quote (QuasiQuoter(..)) + + import Text.Email.Validate (validate, localPart, domainPart, unsafeEmailAddress) + |