Date: Sun, 1 Mar 2020 06:47:30 +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: r527495 - in head/devel: . py-flit-core py-flit-core/files Message-ID: <202003010647.0216lUxr088012@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Mar 1 06:47:30 2020 New Revision: 527495 URL: https://svnweb.freebsd.org/changeset/ports/527495 Log: Add py-flit-core 2.2.0 flit_core provides a PEP 517 build backend for packages using Flit. The only public interface is the API specified by PEP 517, at flit_core.buildapi. WWW: https://github.com/takluyver/flit/tree/master/flit_core Added: head/devel/py-flit-core/ head/devel/py-flit-core/Makefile (contents, props changed) head/devel/py-flit-core/distinfo (contents, props changed) head/devel/py-flit-core/files/ head/devel/py-flit-core/files/setup.py (contents, props changed) head/devel/py-flit-core/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 1 06:28:14 2020 (r527494) +++ head/devel/Makefile Sun Mar 1 06:47:30 2020 (r527495) @@ -4371,6 +4371,7 @@ SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-flit + SUBDIR += py-flit-core SUBDIR += py-fluent-logger SUBDIR += py-flufl.i18n SUBDIR += py-flufl.lock Added: head/devel/py-flit-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flit-core/Makefile Sun Mar 1 06:47:30 2020 (r527495) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= flit-core +PORTVERSION= 2.2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= flit_core-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Distribution-building parts of Flit + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytoml>=0:textproc/py-pytoml@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testpath>=0:devel/py-testpath@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +post-patch: + @${CP} ${FILESDIR}/setup.py ${WRKSRC} + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v + +.include <bsd.port.mk> Added: head/devel/py-flit-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flit-core/distinfo Sun Mar 1 06:47:30 2020 (r527495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582734465 +SHA256 (flit_core-2.2.0.tar.gz) = 4efb8bffc1a04d8e550e877f0c9acf53109a021cc27c2a89b1b467715dc1d657 +SIZE (flit_core-2.2.0.tar.gz) = 23131 Added: head/devel/py-flit-core/files/setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flit-core/files/setup.py Sun Mar 1 06:47:30 2020 (r527495) @@ -0,0 +1,18 @@ +from setuptools import setup, find_packages + +setup( + name='flit_core', + version='2.2.0', + author='Thomas Kluyver & contributors', + author_email='thomas@kluyver.me.uk', + description="Flit's core machinery for building packages.", + long_description='Distribution-building parts of Flit. See flit package for more information', + url='https://github.com/takluyver/flit', + packages=find_packages(), + install_requires=['pytoml'], + requires_python='>=2.7, !=3.0, !=3.1, !=3.2, != 3.3', + classifiers=[ + "License :: OSI Approved :: BSD License", + "Topic :: Software Development :: Libraries :: Python Modules", + ] +) Added: head/devel/py-flit-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flit-core/pkg-descr Sun Mar 1 06:47:30 2020 (r527495) @@ -0,0 +1,4 @@ +flit_core provides a PEP 517 build backend for packages using Flit. The only +public interface is the API specified by PEP 517, at flit_core.buildapi. + +WWW: https://github.com/takluyver/flit/tree/master/flit_core
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003010647.0216lUxr088012>