View | Details | Raw Unified | Return to bug 252078 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/py-envs/Makefile (+18 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	envs
4
PORTVERSION=	1.3
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	rozhuk.im@gmail.com
10
COMMENT=	Easy access of environment variables from Python
11
12
LICENSE=	APACHE20
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
USES=		python
16
USE_PYTHON=	distutils autoplist
17
18
.include <bsd.port.mk>
(-)b/devel/py-envs/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1606003940
2
SHA256 (envs-1.3.tar.gz) = ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42
3
SIZE (envs-1.3.tar.gz) = 21969
(-)b/devel/py-envs/pkg-descr (+17 lines)
Added Link Here
1
Easy access of environment variables from Python with support for
2
booleans, strings, lists, tuples, integers, floats, and dicts.
3
4
Use Case
5
If you need environment variables for your settings but need an easy way
6
of using Python objects instead of just strings. For example, if you
7
need a list of strings.
8
9
Features
10
 - CLI to convert settings
11
 - CLI to list and check environment variables
12
 - Use strings, lists, tuples, integers, floats or dicts.
13
   IMPORTANT: When setting the variables in your environmenet
14
   (ex. in .env file) wrap them in single or double quotes
15
   (ex. "['some','list']")
16
17
WWW: https://github.com/capless/envs

Return to bug 252078