Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Sep 2022 01:53:16 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 6b2f34c72bac - main - misc/py-pyct: New port: Python package for common tasks for users: copy examples, fetch data
Message-ID:  <202209300153.28U1rG5c086020@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6b2f34c72bac40fd1563764ec61ca1324497ed9c

commit 6b2f34c72bac40fd1563764ec61ca1324497ed9c
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-09-29 14:55:43 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-09-30 01:53:11 +0000

    misc/py-pyct: New port: Python package for common tasks for users: copy examples, fetch data
---
 misc/Makefile          |  1 +
 misc/py-pyct/Makefile  | 21 +++++++++++++++++++++
 misc/py-pyct/distinfo  |  3 +++
 misc/py-pyct/pkg-descr |  8 ++++++++
 4 files changed, 33 insertions(+)

diff --git a/misc/Makefile b/misc/Makefile
index 330130110555..4654406d5d30 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -410,6 +410,7 @@
     SUBDIR += py-progressbar
     SUBDIR += py-progressbar2
     SUBDIR += py-pyEDFlib
+    SUBDIR += py-pyct
     SUBDIR += py-pyfiglet
     SUBDIR += py-pykml
     SUBDIR += py-pypatent
diff --git a/misc/py-pyct/Makefile b/misc/py-pyct/Makefile
new file mode 100644
index 000000000000..71672101d27d
--- /dev/null
+++ b/misc/py-pyct/Makefile
@@ -0,0 +1,21 @@
+PORTNAME=	pyct
+DISTVERSION=	0.4.8
+CATEGORIES=	misc
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python package for common tasks for users: copy examples, fetch data
+WWW=		https://github.com/pyviz-dev/pyct
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}param>=1.7.0:devel/py-param@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils concurrent autoplist pytest
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/misc/py-pyct/distinfo b/misc/py-pyct/distinfo
new file mode 100644
index 000000000000..588091144d82
--- /dev/null
+++ b/misc/py-pyct/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1664490388
+SHA256 (pyct-0.4.8.tar.gz) = 23d7525b5a1567535c093aea4b9c33809415aa5f018dd77f6eb738b1226df6f7
+SIZE (pyct-0.4.8.tar.gz) = 16265
diff --git a/misc/py-pyct/pkg-descr b/misc/py-pyct/pkg-descr
new file mode 100644
index 000000000000..a9ffef33db07
--- /dev/null
+++ b/misc/py-pyct/pkg-descr
@@ -0,0 +1,8 @@
+pyct is a utility package that includes:
+* pyct.cmd: Makes various commands available to other packages. The same
+  commands are available from within python. Can either add new subcommands
+  to an existing argparse based command if the module has an existing command,
+  or create the entire command if the module has no existing command. Currently,
+  there are commands for copying examples and fetching data.
+* pyct.build: Provides various commands to help package building, primarily as a
+  convenience for project maintainers.



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