Date: Sat, 16 Jan 2021 13:32:31 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561726 - in head/devel: . py-iniconfig Message-ID: <202101161332.10GDWVRO070878@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Sat Jan 16 13:32:30 2021 New Revision: 561726 URL: https://svnweb.freebsd.org/changeset/ports/561726 Log: Add devel/py-iniconfig: Simple parsing of ini files in Python iniconfig is a small and simple INI-file parser module having a unique set of features: * maintains order of sections and entries * supports multi-line values with or without line-continuations * supports "#" comments everywhere * raises errors with proper line-numbers * no bells and whistles like automatic substitutions * iniconfig raises an Error if two sections have the same name. WWW: https://pypi.org/project/iniconfig/ Added: head/devel/py-iniconfig/ head/devel/py-iniconfig/Makefile (contents, props changed) head/devel/py-iniconfig/distinfo (contents, props changed) head/devel/py-iniconfig/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 16 13:15:13 2021 (r561725) +++ head/devel/Makefile Sat Jan 16 13:32:30 2021 (r561726) @@ -4494,6 +4494,7 @@ SUBDIR += py-infinity SUBDIR += py-inflect SUBDIR += py-inflection + SUBDIR += py-iniconfig SUBDIR += py-inifile SUBDIR += py-iniparse SUBDIR += py-intbitset Added: head/devel/py-iniconfig/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-iniconfig/Makefile Sat Jan 16 13:32:30 2021 (r561726) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= iniconfig +DISTVERSION= 1.1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Simple parsing of ini files in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-iniconfig/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-iniconfig/distinfo Sat Jan 16 13:32:30 2021 (r561726) @@ -0,0 +1,3 @@ +TIMESTAMP = 1610803536 +SHA256 (iniconfig-1.1.1.tar.gz) = bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32 +SIZE (iniconfig-1.1.1.tar.gz) = 8104 Added: head/devel/py-iniconfig/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-iniconfig/pkg-descr Sat Jan 16 13:32:30 2021 (r561726) @@ -0,0 +1,11 @@ +iniconfig is a small and simple INI-file parser module having a unique set of +features: + +* maintains order of sections and entries +* supports multi-line values with or without line-continuations +* supports "#" comments everywhere +* raises errors with proper line-numbers +* no bells and whistles like automatic substitutions +* iniconfig raises an Error if two sections have the same name. + +WWW: https://pypi.org/project/iniconfig/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101161332.10GDWVRO070878>