1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00

Validating an email address string against RFC 5322.

WWW:	http://porg.es/blog/email-address-validation-simpler-faster-more-correct

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-18 17:04:33 +00:00
parent e0bdd43eff
commit daff33d149
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291708
5 changed files with 27 additions and 0 deletions

View File

@ -87,6 +87,7 @@ directory-tree_port= devel/hs-directory-tree
distributive_port= math/hs-distributive
dlist_port= devel/hs-dlist
double-conversion_port= textproc/hs-double-conversion
email-validate_port= mail/hs-email-validate
entropy_port= security/hs-entropy
enumerator_port= devel/hs-enumerator
epic_port= lang/hs-epic # executable

View File

@ -194,6 +194,7 @@
SUBDIR += horde4-turba
SUBDIR += horde4-webmail
SUBDIR += hotwayd
SUBDIR += hs-email-validate
SUBDIR += hs-mime
SUBDIR += ifile
SUBDIR += ilohamail

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-email-validate
# Date created: December 26, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= email-validate
PORTVERSION= 0.2.7
CATEGORIES= mail haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Validating an email address string against RFC 5322
LICENSE= BSD
USE_CABAL= parsec>=2.1 ranges>=0.2.2
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/email-validate-0.2.7.tar.gz) = 78542b6aff81e94663fd7105163a6f1232ccbbce1abd50860b83c07b52a8ea8f
SIZE (cabal/email-validate-0.2.7.tar.gz) = 6038

View File

@ -0,0 +1,3 @@
Validating an email address string against RFC 5322.
WWW: http://porg.es/blog/email-address-validation-simpler-faster-more-correct