git: df668c5641be - main - devel/py-param: New port: Module to make Python code clearer and more reliable
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 30 Sep 2022 01:53:14 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=df668c5641be0b1b4c7f2fccb98369c31669b8f9 commit df668c5641be0b1b4c7f2fccb98369c31669b8f9 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-09-29 14:49:11 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-09-30 01:53:11 +0000 devel/py-param: New port: Module to make Python code clearer and more reliable --- devel/Makefile | 1 + devel/py-param/Makefile | 19 +++++++++++++++++++ devel/py-param/distinfo | 3 +++ devel/py-param/pkg-descr | 5 +++++ 4 files changed, 28 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 4d55896da647..710c948f2c95 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4909,6 +4909,7 @@ SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-parallax + SUBDIR += py-param SUBDIR += py-parameterized SUBDIR += py-parsedatetime SUBDIR += py-parsley diff --git a/devel/py-param/Makefile b/devel/py-param/Makefile new file mode 100644 index 000000000000..f8c557a73de4 --- /dev/null +++ b/devel/py-param/Makefile @@ -0,0 +1,19 @@ +PORTNAME= param +DISTVERSION= 1.12.2 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Module to make Python code clearer and more reliable +WWW= https://param.holoviz.org/ + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-param/distinfo b/devel/py-param/distinfo new file mode 100644 index 000000000000..561dee7e9a08 --- /dev/null +++ b/devel/py-param/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1664489905 +SHA256 (param-1.12.2.tar.gz) = f9ccc45c7f329150fc3dca517b4595859199aa08d9cda2ecdebc112bbe718c0f +SIZE (param-1.12.2.tar.gz) = 84760 diff --git a/devel/py-param/pkg-descr b/devel/py-param/pkg-descr new file mode 100644 index 000000000000..42ff21768ed4 --- /dev/null +++ b/devel/py-param/pkg-descr @@ -0,0 +1,5 @@ +Param is a library for handling all the user-modifiable parameters, arguments, +and attributes that control your code. It provides automatic, robust +error-checking while dramatically reducing boilerplate code, letting you focus +on what you want your code to do rather than on checking for all the possible +ways users could supply inappropriate values to a function or class.