Date: Mon, 9 Dec 2019 15:34:48 +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: r519620 - in head/net: . py-pyenet py-pyenet/files Message-ID: <201912091534.xB9FYmiG090489@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Mon Dec 9 15:34:48 2019 New Revision: 519620 URL: https://svnweb.freebsd.org/changeset/ports/519620 Log: - Add net/py-pyenet pyenet is a python wrapper for the ENet library by Lee Salzman, http://enet.bespin.org WWW: https://pypi.python.org/pypi/pyenet PR: 221090 Submitted by: freebsd@skinc.ru Added: head/net/py-pyenet/ head/net/py-pyenet/Makefile (contents, props changed) head/net/py-pyenet/distinfo (contents, props changed) head/net/py-pyenet/files/ head/net/py-pyenet/files/patch-README.rst (contents, props changed) head/net/py-pyenet/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Dec 9 15:26:30 2019 (r519619) +++ head/net/Makefile Mon Dec 9 15:34:48 2019 (r519620) @@ -1077,6 +1077,7 @@ SUBDIR += py-pcapy SUBDIR += py-port-for SUBDIR += py-portend + SUBDIR += py-pyenet SUBDIR += py-pygeoip SUBDIR += py-pyicap SUBDIR += py-pynmsg Added: head/net/py-pyenet/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pyenet/Makefile Mon Dec 9 15:34:48 2019 (r519620) @@ -0,0 +1,24 @@ +# Created by: Ilia Skalozubov <freebsd@skinc.ru> +# $FreeBSD$ + +PORTNAME= pyenet +DISTVERSION= 1.3.13.post7 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd@skinc.ru +COMMENT= Python wrapper for the ENet library by Lee Salzman + +LICENSE= BSD3CLAUSE MIT +LICENSE_COMB= multi +LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE +LICENSE_FILE_MIT= ${WRKSRC}/enet/LICENSE + +USES= python +USE_PYTHON= autoplist cython distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/enet.so + +.include <bsd.port.mk> Added: head/net/py-pyenet/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pyenet/distinfo Mon Dec 9 15:34:48 2019 (r519620) @@ -0,0 +1,3 @@ +TIMESTAMP = 1574269594 +SHA256 (pyenet-1.3.13.post7.tar.gz) = a36ed3ab9ddad25dc5416fa5223830f7f0ae628af986a4045def103057921ebf +SIZE (pyenet-1.3.13.post7.tar.gz) = 745118 Added: head/net/py-pyenet/files/patch-README.rst ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pyenet/files/patch-README.rst Mon Dec 9 15:34:48 2019 (r519620) @@ -0,0 +1,11 @@ +--- README.rst.orig 2018-10-30 23:51:01 UTC ++++ README.rst +@@ -62,7 +62,7 @@ Packaging notes + (``python3 -m venv venv && source venv/bin/activate``) + - install the requirements: ``pip install -r dev-requirements.txt`` + - build the source dist: ``python setup.py sdist`` +-- make sure docker is installed and running and you’re on a 64bit linux ++- make sure docker is installed and running and you're on a 64bit linux + machine + - build the binary dists: ``./scripts/build_packages.sh`` + - upload to pypi: ``twine upload dist/* wheelhouse/pyenet*`` Added: head/net/py-pyenet/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pyenet/pkg-descr Mon Dec 9 15:34:48 2019 (r519620) @@ -0,0 +1,4 @@ +pyenet is a python wrapper for the ENet library by Lee Salzman, +http://enet.bespin.org + +WWW: https://pypi.python.org/pypi/pyenet
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912091534.xB9FYmiG090489>