svn commit: r455150 - in head/devel: . py-backports.tempfile

Dan Langille dvl at FreeBSD.org
Wed Nov 29 21:22:16 UTC 2017


Author: dvl
Date: Wed Nov 29 21:22:14 2017
New Revision: 455150
URL: https://svnweb.freebsd.org/changeset/ports/455150

Log:
  Backport of the tempfile module from Python 3

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Nov 29 21:14:02 2017	(r455149)
+++ head/devel/Makefile	Wed Nov 29 21:22:14 2017	(r455150)
@@ -4265,6 +4265,7 @@
     SUBDIR += py-backports.shutil_get_terminal_size
     SUBDIR += py-backports.weakref
     SUBDIR += py-backports_abc
+    SUBDIR += py-backports.tempfile
     SUBDIR += py-bandit
     SUBDIR += py-bcdoc
     SUBDIR += py-billiard

Added: head/devel/py-backports.tempfile/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-backports.tempfile/Makefile	Wed Nov 29 21:22:14 2017	(r455150)
@@ -0,0 +1,21 @@
+# Created by: Dan Langille <dvl at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	backports.tempfile
+PORTVERSION=	1.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dvl at FreeBSD.org
+COMMENT=	Backports of new features in the Python tempfile module
+
+LICENSE=	PSFL
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm
+
+NO_ARCH=	yes
+USES=		python:2.7
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-backports.tempfile/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-backports.tempfile/distinfo	Wed Nov 29 21:22:14 2017	(r455150)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1511989773
+SHA256 (backports.tempfile-1.0.tar.gz) = 1c648c452e8770d759bdc5a5e2431209be70d25484e1be24876cf2168722c762
+SIZE (backports.tempfile-1.0.tar.gz) = 10262

Added: head/devel/py-backports.tempfile/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-backports.tempfile/pkg-descr	Wed Nov 29 21:22:14 2017	(r455150)
@@ -0,0 +1,16 @@
+Yet another general purpose Naive Bayesian classifier.
+(under heavy development)
+
+Naive Bayes Classifier is probably the most widely used text classifier, 
+it's a supervised learning algorithm. It can be used to classify blog posts
+or news articles into different categories like sports, entertainment and
+so forth. 
+
+Naive Bayes is a simple technique for constructing classifiers: models that
+assign class labels to problem instances, represented as vectors of feature
+values, where the class labels are drawn from some finite set. It is not a
+single algorithm for training such classifiers, but a family of algorithms
+This package provides backports of new features in Python???s tempfile module
+under the backports namespace.
+
+WWW: https://github.com/pjdelport/backports.tempfile


More information about the svn-ports-all mailing list