Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Mar 2019 06:08:09 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r497387 - in head/devel: . py-dataclasses
Message-ID:  <201903310608.x2V689LR028237@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Mar 31 06:08:08 2019
New Revision: 497387
URL: https://svnweb.freebsd.org/changeset/ports/497387

Log:
  New port: devel/py-dataclasses: Backport of the dataclasses module for Python 3.6

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Mar 31 03:47:45 2019	(r497386)
+++ head/devel/Makefile	Sun Mar 31 06:08:08 2019	(r497387)
@@ -4520,6 +4520,7 @@
     SUBDIR += py-dal
     SUBDIR += py-darcsver
     SUBDIR += py-darts.util.lru
+    SUBDIR += py-dataclasses
     SUBDIR += py-datatest
     SUBDIR += py-dateparser
     SUBDIR += py-dateutil

Added: head/devel/py-dataclasses/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dataclasses/Makefile	Sun Mar 31 06:08:08 2019	(r497387)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	dataclasses
+PORTVERSION=	0.6
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Backport of the dataclasses module for Python 3.6
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python:3.6
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-dataclasses/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dataclasses/distinfo	Sun Mar 31 06:08:08 2019	(r497387)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554012196
+SHA256 (dataclasses-0.6.tar.gz) = 6988bd2b895eef432d562370bb707d540f32f7360ab13da45340101bc2307d84
+SIZE (dataclasses-0.6.tar.gz) = 36819

Added: head/devel/py-dataclasses/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-dataclasses/pkg-descr	Sun Mar 31 06:08:08 2019	(r497387)
@@ -0,0 +1,8 @@
+This is an implementation of PEP 557, Data Classes. It is a backport for
+Python 3.6. Because dataclasses will be included in Python 3.7, any discussion
+of dataclass features should occur on the python-dev mailing list at
+https://mail.python.org/mailman/listinfo/python-dev. At this point this repo
+should only be used for historical purposes (it's where the original dataclasses
+discussions took place) and for discussion of the actual backport to Python 3.6.
+
+WWW: https://github.com/ericvsmith/dataclasses



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