From owner-svn-ports-all@freebsd.org Thu Mar 29 23:15:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A764F534E0; Thu, 29 Mar 2018 23:15:21 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D4FA16A22D; Thu, 29 Mar 2018 23:15:20 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CE6B820A51; Thu, 29 Mar 2018 23:15:20 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2TNFKgE094671; Thu, 29 Mar 2018 23:15:20 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2TNFKZF094667; Thu, 29 Mar 2018 23:15:20 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201803292315.w2TNFKZF094667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 29 Mar 2018 23:15:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465936 - in head/mail: . py-validate_email X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in head/mail: . py-validate_email X-SVN-Commit-Revision: 465936 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2018 23:15:21 -0000 Author: cpm Date: Thu Mar 29 23:15:20 2018 New Revision: 465936 URL: https://svnweb.freebsd.org/changeset/ports/465936 Log: Add new port mail/py-validate_email: Verifies if an email address is valid and really exists Verifies and checks if an e-mail address is valid, properly formatted and really exists. It can optionally check the MX records of the e-mail domain. WWW: https://github.com/syrusakbary/validate_email PR: 227029 Submitted by: Kai Added: head/mail/py-validate_email/ head/mail/py-validate_email/Makefile (contents, props changed) head/mail/py-validate_email/distinfo (contents, props changed) head/mail/py-validate_email/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Thu Mar 29 23:06:10 2018 (r465935) +++ head/mail/Makefile Thu Mar 29 23:15:20 2018 (r465936) @@ -549,6 +549,7 @@ SUBDIR += py-pyspf SUBDIR += py-pyzmail SUBDIR += py-spambayes + SUBDIR += py-validate_email SUBDIR += py-zope.sendmail SUBDIR += pymsgauth SUBDIR += pysieved Added: head/mail/py-validate_email/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-validate_email/Makefile Thu Mar 29 23:15:20 2018 (r465936) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= validate_email +DISTVERSION= 1.3 +CATEGORIES= mail python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Verifies if an email address is valid and really exists + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +# If the default version (2.7) of Python is used, use package py-dns +MY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dns>0:dns/py-dns@${PY_FLAVOR} + +RUN_DEPENDS= ${MY_DEPENDS} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include + +# If Python 3+ is used then use package py-py3dns instead +.if ${PYTHON_MAJOR_VER} == "3" +MY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py3dns>0:dns/py-py3dns@${PY_FLAVOR} +.endif + +.include Added: head/mail/py-validate_email/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-validate_email/distinfo Thu Mar 29 23:15:20 2018 (r465936) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522218646 +SHA256 (validate_email-1.3.tar.gz) = 784719dc5f780be319cdd185dc85dd93afebdb6ebb943811bc4c7c5f9c72aeaf +SIZE (validate_email-1.3.tar.gz) = 4694 Added: head/mail/py-validate_email/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-validate_email/pkg-descr Thu Mar 29 23:15:20 2018 (r465936) @@ -0,0 +1,4 @@ +Verifies and checks if an e-mail address is valid, properly formatted and really +exists. It can optionally check the MX records of the e-mail domain. + +WWW: https://github.com/syrusakbary/validate_email