From owner-svn-ports-head@freebsd.org Sun Jul 14 14:02:30 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBA1115E333B; Sun, 14 Jul 2019 14:02:29 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75B7472061; Sun, 14 Jul 2019 14:02:29 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 534006A0D; Sun, 14 Jul 2019 14:02:29 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6EE2T94043074; Sun, 14 Jul 2019 14:02:29 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6EE2S0g043070; Sun, 14 Jul 2019 14:02:28 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201907141402.x6EE2S0g043070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Sun, 14 Jul 2019 14:02:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506618 - in head/devel: . py-inifile X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: in head/devel: . py-inifile X-SVN-Commit-Revision: 506618 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 75B7472061 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jul 2019 14:02:30 -0000 Author: egypcio Date: Sun Jul 14 14:02:28 2019 New Revision: 506618 URL: https://svnweb.freebsd.org/changeset/ports/506618 Log: [NEW PORT] devel/py-inifile: Small INI library for Python Added: head/devel/py-inifile/ head/devel/py-inifile/Makefile (contents, props changed) head/devel/py-inifile/distinfo (contents, props changed) head/devel/py-inifile/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 14 12:27:30 2019 (r506617) +++ head/devel/Makefile Sun Jul 14 14:02:28 2019 (r506618) @@ -3991,6 +3991,7 @@ SUBDIR += py-ExtensionClass SUBDIR += py-Faker SUBDIR += py-IBMQuantumExperience + SUBDIR += py-inifile SUBDIR += py-Jinja2 SUBDIR += py-Jinja2-doc SUBDIR += py-Js2Py Added: head/devel/py-inifile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inifile/Makefile Sun Jul 14 14:02:28 2019 (r506618) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= inifile +PORTVERSION= 0.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= egypcio@FreeBSD.org +COMMENT= Small INI library for Python + +LICENSE= BSD3CLAUSE + +USES= python zip +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-inifile/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inifile/distinfo Sun Jul 14 14:02:28 2019 (r506618) @@ -0,0 +1,3 @@ +TIMESTAMP = 1562943163 +SHA256 (inifile-0.4.zip) = 891bc629f81477708581b30a7b0583bb5c9c2ee3c070afd4675ecd4f96b0d78d +SIZE (inifile-0.4.zip) = 7437 Added: head/devel/py-inifile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inifile/pkg-descr Sun Jul 14 14:02:28 2019 (r506618) @@ -0,0 +1,4 @@ +Small INI library for Python. Unlike a regular INI serializer it only +overwrites the lines that were modified. + +WWW: https://pypi.org/project/inifile/