From owner-svn-ports-all@freebsd.org Thu Feb 18 20:22:37 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0B75354D042; Thu, 18 Feb 2021 20:22:37 +0000 (UTC) (envelope-from 0mp@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DhR306wFcz3hTp; Thu, 18 Feb 2021 20:22:36 +0000 (UTC) (envelope-from 0mp@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 E04AD1EC9E; Thu, 18 Feb 2021 20:22:36 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11IKMafq088117; Thu, 18 Feb 2021 20:22:36 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11IKMa7k088112; Thu, 18 Feb 2021 20:22:36 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202102182022.11IKMa7k088112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Thu, 18 Feb 2021 20:22:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r565977 - in head/textproc: . py-hjson X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/textproc: . py-hjson X-SVN-Commit-Revision: 565977 X-SVN-Commit-Repository: ports 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.34 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: Thu, 18 Feb 2021 20:22:37 -0000 Author: 0mp Date: Thu Feb 18 20:22:35 2021 New Revision: 565977 URL: https://svnweb.freebsd.org/changeset/ports/565977 Log: Add textproc/py-hjson Hjson, the Human JSON. A configuration file format that caters to humans and helps reduce the errors they make. WWW: https://github.com/hjson/hjson-py Added: head/textproc/py-hjson/ head/textproc/py-hjson/Makefile (contents, props changed) head/textproc/py-hjson/distinfo (contents, props changed) head/textproc/py-hjson/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Feb 18 20:20:25 2021 (r565976) +++ head/textproc/Makefile Thu Feb 18 20:22:35 2021 (r565977) @@ -1283,6 +1283,7 @@ SUBDIR += py-guess-language SUBDIR += py-hexdump SUBDIR += py-hieroglyph + SUBDIR += py-hjson SUBDIR += py-html2text SUBDIR += py-html2text2018 SUBDIR += py-humanfriendly Added: head/textproc/py-hjson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-hjson/Makefile Thu Feb 18 20:22:35 2021 (r565977) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= hjson +DISTVERSIONPREFIX= v +DISTVERSION= 3.0.2 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= User interface for JSON written in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +# Use GitHub instead of CHEESESHOP to get the test files. +USE_GITHUB= yes +GH_PROJECT= ${PORTNAME}-py +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) + +.include Added: head/textproc/py-hjson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-hjson/distinfo Thu Feb 18 20:22:35 2021 (r565977) @@ -0,0 +1,3 @@ +TIMESTAMP = 1613646861 +SHA256 (hjson-hjson-py-v3.0.2_GH0.tar.gz) = 1c16084568a6328ba404703aad6db8ddf7e3b6afec9e141b375a40a61a209c30 +SIZE (hjson-hjson-py-v3.0.2_GH0.tar.gz) = 72965 Added: head/textproc/py-hjson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-hjson/pkg-descr Thu Feb 18 20:22:35 2021 (r565977) @@ -0,0 +1,4 @@ +Hjson, the Human JSON. A configuration file format that caters to humans and +helps reduce the errors they make. + +WWW: https://github.com/hjson/hjson-py