devel/py-param: New port: Module to make Python code clearer and more reliable

This commit is contained in:
Yuri Victorovich 2022-09-29 06:49:11 -08:00
parent 0470b45836
commit df668c5641
4 changed files with 28 additions and 0 deletions

View file

@ -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

19
devel/py-param/Makefile Normal file
View file

@ -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>

3
devel/py-param/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1664489905
SHA256 (param-1.12.2.tar.gz) = f9ccc45c7f329150fc3dca517b4595859199aa08d9cda2ecdebc112bbe718c0f
SIZE (param-1.12.2.tar.gz) = 84760

5
devel/py-param/pkg-descr Normal file
View file

@ -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.