Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Mar 2020 06:28:14 +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: r527494 - in head/devel: . py-flit
Message-ID:  <202003010628.0216SEgu075968@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Mar  1 06:28:14 2020
New Revision: 527494
URL: https://svnweb.freebsd.org/changeset/ports/527494

Log:
  Add py-flit 2.2.0
  
  Flit is a simple way to put Python packages and modules on PyPI. It tries to
  require less thought about packaging and help you avoid common mistakes.
  
  WWW: https://github.com/takluyver/flit

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Mar  1 06:28:05 2020	(r527493)
+++ head/devel/Makefile	Sun Mar  1 06:28:14 2020	(r527494)
@@ -4370,6 +4370,7 @@
     SUBDIR += py-flatbuffers
     SUBDIR += py-flex
     SUBDIR += py-flexmock
+    SUBDIR += py-flit
     SUBDIR += py-fluent-logger
     SUBDIR += py-flufl.i18n
     SUBDIR += py-flufl.lock

Added: head/devel/py-flit/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-flit/Makefile	Sun Mar  1 06:28:14 2020	(r527494)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	flit
+PORTVERSION=	2.2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Simple packaging tool for simple packages
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}flit-core>=2.2.0:devel/py-flit-core@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytoml>=0:textproc/py-pytoml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR}
+
+USES=		python:3.5+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-flit/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-flit/distinfo	Sun Mar  1 06:28:14 2020	(r527494)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582734463
+SHA256 (flit-2.2.0.tar.gz) = a273dc2a5ab1f42f0e02878347d94f5462c42cbe232a5014b6778c9e5975327f
+SIZE (flit-2.2.0.tar.gz) = 108327

Added: head/devel/py-flit/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-flit/pkg-descr	Sun Mar  1 06:28:14 2020	(r527494)
@@ -0,0 +1,4 @@
+Flit is a simple way to put Python packages and modules on PyPI. It tries to
+require less thought about packaging and help you avoid common mistakes.
+
+WWW: https://github.com/takluyver/flit



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