Received: by mail.netbsd.org (Postfix, from userid 605) id CB60E84D4D; Wed, 5 Aug 2020 13:54:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 52D6684D25 for ; Wed, 5 Aug 2020 13:54:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id aQcZNPQnRkgQ for ; Wed, 5 Aug 2020 13:54:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id ABEC784C6C for ; Wed, 5 Aug 2020 13:54:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9932CFB28; Wed, 5 Aug 2020 13:54:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1596635655181980" MIME-Version: 1.0 Date: Wed, 5 Aug 2020 13:54:15 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200805135415.9932CFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1596635655181980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Aug 5 13:54:15 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-iniconfig: DESCR Makefile PLIST distinfo Log Message: py-iniconfig: added version 1.0.1 iniconfig is a small and simple INI-file parser module having a unique set of features: * tested against Python2.4 across to Python3.2, Jython, PyPy * 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. To generate a diff of this commit: cvs rdiff -u -r1.3176 -r1.3177 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-iniconfig/DESCR \ pkgsrc/devel/py-iniconfig/Makefile pkgsrc/devel/py-iniconfig/PLIST \ pkgsrc/devel/py-iniconfig/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1596635655181980 Content-Disposition: inline Content-Length: 3127 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3176 pkgsrc/devel/Makefile:1.3177 --- pkgsrc/devel/Makefile:1.3176 Sat Aug 1 21:51:17 2020 +++ pkgsrc/devel/Makefile Wed Aug 5 13:54:15 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3176 2020/08/01 21:51:17 mef Exp $ +# $NetBSD: Makefile,v 1.3177 2020/08/05 13:54:15 adam Exp $ # COMMENT= Development utilities @@ -2330,6 +2330,7 @@ SUBDIR+= py-idle SUBDIR+= py-importlib-metadata SUBDIR+= py-importlib-resources SUBDIR+= py-incremental +SUBDIR+= py-iniconfig SUBDIR+= py-intervaltree SUBDIR+= py-iowait SUBDIR+= py-ipaddr Added files: Index: pkgsrc/devel/py-iniconfig/DESCR diff -u /dev/null pkgsrc/devel/py-iniconfig/DESCR:1.1 --- /dev/null Wed Aug 5 13:54:15 2020 +++ pkgsrc/devel/py-iniconfig/DESCR Wed Aug 5 13:54:15 2020 @@ -0,0 +1,9 @@ +iniconfig is a small and simple INI-file parser module having a unique set of +features: +* tested against Python2.4 across to Python3.2, Jython, PyPy +* 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. Index: pkgsrc/devel/py-iniconfig/Makefile diff -u /dev/null pkgsrc/devel/py-iniconfig/Makefile:1.1 --- /dev/null Wed Aug 5 13:54:15 2020 +++ pkgsrc/devel/py-iniconfig/Makefile Wed Aug 5 13:54:15 2020 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2020/08/05 13:54:15 adam Exp $ + +DISTNAME= iniconfig-1.0.1 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=i/iniconfig/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/RonnyPfannschmidt/iniconfig +COMMENT= Brain-dead simple config-ini parsing +LICENSE= mit + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-iniconfig/PLIST diff -u /dev/null pkgsrc/devel/py-iniconfig/PLIST:1.1 --- /dev/null Wed Aug 5 13:54:15 2020 +++ pkgsrc/devel/py-iniconfig/PLIST Wed Aug 5 13:54:15 2020 @@ -0,0 +1,8 @@ +@comment $NetBSD: PLIST,v 1.1 2020/08/05 13:54:15 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/iniconfig.py +${PYSITELIB}/iniconfig.pyc +${PYSITELIB}/iniconfig.pyo Index: pkgsrc/devel/py-iniconfig/distinfo diff -u /dev/null pkgsrc/devel/py-iniconfig/distinfo:1.1 --- /dev/null Wed Aug 5 13:54:15 2020 +++ pkgsrc/devel/py-iniconfig/distinfo Wed Aug 5 13:54:15 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/08/05 13:54:15 adam Exp $ + +SHA1 (iniconfig-1.0.1.tar.gz) = 37bae0d794fb63afc8ed588d140d111224a75f54 +RMD160 (iniconfig-1.0.1.tar.gz) = 7c44c7adfc7b5af44e9db1ff1be80ce9d21cb2ee +SHA512 (iniconfig-1.0.1.tar.gz) = 2a6302d117cdba31cf51b418eb99df05988e252dc4155ad02526431d1dfc388839b533c3dac276254633cc86ed2b378af6bbb19998dd517a33163ad4957601a9 +Size (iniconfig-1.0.1.tar.gz) = 7836 bytes --_----------=_1596635655181980--