From owner-svn-ports-all@freebsd.org Tue Feb 2 02:18:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D63BA973D9; Tue, 2 Feb 2016 02:18:34 +0000 (UTC) (envelope-from swills@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 mx1.freebsd.org (Postfix) with ESMTPS id E081FE03; Tue, 2 Feb 2016 02:18:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u122IW2G020768; Tue, 2 Feb 2016 02:18:32 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u122IW95020763; Tue, 2 Feb 2016 02:18:32 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201602020218.u122IW95020763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 2 Feb 2016 02:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407792 - in head/devel: . py-json-sempai X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 02:18:34 -0000 Author: swills Date: Tue Feb 2 02:18:32 2016 New Revision: 407792 URL: https://svnweb.freebsd.org/changeset/ports/407792 Log: devel/py-json-sempai: create port Have you ever been kept awake at night, desperately feeling a burning desire to do nothing else but directly import JSON files as if they were python modules? Now you can! WWW: https://github.com/kragniz/json-sempai Added: head/devel/py-json-sempai/ head/devel/py-json-sempai/Makefile (contents, props changed) head/devel/py-json-sempai/distinfo (contents, props changed) head/devel/py-json-sempai/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 2 01:59:06 2016 (r407791) +++ head/devel/Makefile Tue Feb 2 02:18:32 2016 (r407792) @@ -4408,6 +4408,7 @@ SUBDIR += py-unpaddedbase64 SUBDIR += py-urlimport SUBDIR += py-urwid + SUBDIR += py-json-sempai SUBDIR += py-urwidtrees SUBDIR += py-usb SUBDIR += py-user_agents Added: head/devel/py-json-sempai/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json-sempai/Makefile Tue Feb 2 02:18:32 2016 (r407792) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= json-sempai +PORTVERSION= 0.4.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Pythonic argument parser, that will make you smile + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +PORTDOCS= README.rst +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} + +OPTIONS_DEFINE= DOCS + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/py-json-sempai/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json-sempai/distinfo Tue Feb 2 02:18:32 2016 (r407792) @@ -0,0 +1,2 @@ +SHA256 (json-sempai-0.4.0.tar.gz) = 33330ccf29646be5f533b692ab8c2a7790209c3e51a2b4778e8c382485774250 +SIZE (json-sempai-0.4.0.tar.gz) = 3864 Added: head/devel/py-json-sempai/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-json-sempai/pkg-descr Tue Feb 2 02:18:32 2016 (r407792) @@ -0,0 +1,5 @@ +Have you ever been kept awake at night, desperately feeling a burning desire to +do nothing else but directly import JSON files as if they were python modules? +Now you can! + +WWW: https://github.com/kragniz/json-sempai