From owner-svn-ports-all@freebsd.org Mon May 14 15:31: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 88BB6DF56B9; Mon, 14 May 2018 15:31:21 +0000 (UTC) (envelope-from miwi@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 1E65378BC8; Mon, 14 May 2018 15:31:21 +0000 (UTC) (envelope-from miwi@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 DA5DD1DEEF; Mon, 14 May 2018 15:31:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4EFVKZ0088043; Mon, 14 May 2018 15:31:20 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4EFVKJm088040; Mon, 14 May 2018 15:31:20 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201805141531.w4EFVKJm088040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 14 May 2018 15:31:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469899 - in head/mail: . py-flask-mail X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/mail: . py-flask-mail X-SVN-Commit-Revision: 469899 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.26 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: Mon, 14 May 2018 15:31:21 -0000 Author: miwi Date: Mon May 14 15:31:19 2018 New Revision: 469899 URL: https://svnweb.freebsd.org/changeset/ports/469899 Log: Flask-Mail is an extension to the Flask web application micro framework providing simple email sending capabilities via SMTP. WWW: https://github.com/mattupstate/flask-mail PR: 224588 Submitted by: john@saltant.com Sponsored by: iXsystems Inc. Added: head/mail/py-flask-mail/ head/mail/py-flask-mail/Makefile (contents, props changed) head/mail/py-flask-mail/distinfo (contents, props changed) head/mail/py-flask-mail/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Mon May 14 15:10:06 2018 (r469898) +++ head/mail/Makefile Mon May 14 15:31:19 2018 (r469899) @@ -541,6 +541,7 @@ SUBDIR += py-cyruslib SUBDIR += py-dkimpy SUBDIR += py-email-reply-parser + SUBDIR += py-flask-mail SUBDIR += py-flufl.bounce SUBDIR += py-fuglu SUBDIR += py-libgmail Added: head/mail/py-flask-mail/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-flask-mail/Makefile Mon May 14 15:31:19 2018 (r469899) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= Flask-Mail +PORTVERSION= 0.9.1 +CATEGORIES= mail www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= john@saltant.com +COMMENT= Send SMTP email from a Flask web application + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.9:www/py-flask@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blinker>=0:devel/py-blinker@${FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/mail/py-flask-mail/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-flask-mail/distinfo Mon May 14 15:31:19 2018 (r469899) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514247148 +SHA256 (Flask-Mail-0.9.1.tar.gz) = 22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41 +SIZE (Flask-Mail-0.9.1.tar.gz) = 45654 Added: head/mail/py-flask-mail/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-flask-mail/pkg-descr Mon May 14 15:31:19 2018 (r469899) @@ -0,0 +1,4 @@ +Flask-Mail is an extension to the Flask web application micro framework +providing simple email sending capabilities via SMTP. + +WWW: https://github.com/mattupstate/flask-mail