Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 May 2020 13:46:58 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534742 - in head/devel: . py-contextvars
Message-ID:  <202005091346.049Dkw7N067358@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat May  9 13:46:57 2020
New Revision: 534742
URL: https://svnweb.freebsd.org/changeset/ports/534742

Log:
  Add py-contextvars 2.4
  
  contextvars implements a backport of Python 3.7 contextvars module (see PEP 567)
  for Python 3.6.
  
  WWW: https://github.com/MagicStack/contextvars

Added:
  head/devel/py-contextvars/
  head/devel/py-contextvars/Makefile   (contents, props changed)
  head/devel/py-contextvars/distinfo   (contents, props changed)
  head/devel/py-contextvars/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat May  9 13:37:20 2020	(r534741)
+++ head/devel/Makefile	Sat May  9 13:46:57 2020	(r534742)
@@ -4277,6 +4277,7 @@
     SUBDIR += py-constantly
     SUBDIR += py-construct
     SUBDIR += py-contextlib2
+    SUBDIR += py-contextvars
     SUBDIR += py-convertdate
     SUBDIR += py-cookiecutter
     SUBDIR += py-coreapi

Added: head/devel/py-contextvars/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-contextvars/Makefile	Sat May  9 13:46:57 2020	(r534742)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	contextvars
+PORTVERSION=	2.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	PEP 567 backport
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}immutables>=0.9:devel/py-immutables@${PY_FLAVOR}
+
+USES=		python:3.5-3.6
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-contextvars/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-contextvars/distinfo	Sat May  9 13:46:57 2020	(r534742)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588793342
+SHA256 (contextvars-2.4.tar.gz) = f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e
+SIZE (contextvars-2.4.tar.gz) = 9570

Added: head/devel/py-contextvars/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-contextvars/pkg-descr	Sat May  9 13:46:57 2020	(r534742)
@@ -0,0 +1,4 @@
+contextvars implements a backport of Python 3.7 contextvars module (see PEP 567)
+for Python 3.6.
+
+WWW: https://github.com/MagicStack/contextvars



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005091346.049Dkw7N067358>