Date: Thu, 28 Mar 2019 14:04:15 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497018 - in head/ftp: . py-aioftp Message-ID: <201903281404.x2SE4F8O071383@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Mar 28 14:04:14 2019 New Revision: 497018 URL: https://svnweb.freebsd.org/changeset/ports/497018 Log: ftp client/server for asyncio WWW: https://aioftp.readthedocs.io/ Added: head/ftp/py-aioftp/ head/ftp/py-aioftp/Makefile (contents, props changed) head/ftp/py-aioftp/distinfo (contents, props changed) head/ftp/py-aioftp/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Thu Mar 28 14:03:14 2019 (r497017) +++ head/ftp/Makefile Thu Mar 28 14:04:14 2019 (r497018) @@ -75,6 +75,7 @@ SUBDIR += puf SUBDIR += pure-ftpd SUBDIR += pureadmin + SUBDIR += py-aioftp SUBDIR += py-ftputil SUBDIR += py-pycurl SUBDIR += py-pyftpdlib Added: head/ftp/py-aioftp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-aioftp/Makefile Thu Mar 28 14:04:14 2019 (r497018) @@ -0,0 +1,29 @@ +# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= aioftp +PORTVERSION= 0.13.0 +CATEGORIES= ftp +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= ftp client/server for asyncio + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/license.txt + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>=0:devel/py-pytest-asyncio@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}trustme>=0:security/py-trustme@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}async_timeout>0:devel/py-async_timeout@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include <bsd.port.mk> Added: head/ftp/py-aioftp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-aioftp/distinfo Thu Mar 28 14:04:14 2019 (r497018) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553707731 +SHA256 (aioftp-0.13.0.tar.gz) = 5711c03433b510c101e9337069033133cca19b508b5162b414bed24320de6c18 +SIZE (aioftp-0.13.0.tar.gz) = 87069 Added: head/ftp/py-aioftp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-aioftp/pkg-descr Thu Mar 28 14:04:14 2019 (r497018) @@ -0,0 +1,3 @@ +ftp client/server for asyncio + +WWW: https://aioftp.readthedocs.io/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903281404.x2SE4F8O071383>