From owner-svn-ports-head@freebsd.org Fri Nov 15 01:23:04 2019 Return-Path: Delivered-To: svn-ports-head@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 A766F1B8501; Fri, 15 Nov 2019 01:23:04 +0000 (UTC) (envelope-from osa@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 47DgZw3RC7z3Lyd; Fri, 15 Nov 2019 01:23:04 +0000 (UTC) (envelope-from osa@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 54F799452; Fri, 15 Nov 2019 01:23:04 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAF1N4Vd072772; Fri, 15 Nov 2019 01:23:04 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAF1N3SA072769; Fri, 15 Nov 2019 01:23:03 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201911150123.xAF1N3SA072769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Fri, 15 Nov 2019 01:23:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517625 - in head/www: . py-crossplane X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: in head/www: . py-crossplane X-SVN-Commit-Revision: 517625 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 15 Nov 2019 01:23:04 -0000 Author: osa Date: Fri Nov 15 01:23:03 2019 New Revision: 517625 URL: https://svnweb.freebsd.org/changeset/ports/517625 Log: Add crossplane, the command-line utility to convert NGINX configurations into JSON and back. Added: head/www/py-crossplane/ head/www/py-crossplane/Makefile (contents, props changed) head/www/py-crossplane/distinfo (contents, props changed) head/www/py-crossplane/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Nov 14 23:22:13 2019 (r517624) +++ head/www/Makefile Fri Nov 15 01:23:03 2019 (r517625) @@ -1448,6 +1448,7 @@ SUBDIR += py-collective.easytemplate SUBDIR += py-collective.templateengines SUBDIR += py-cookies + SUBDIR += py-crossplane SUBDIR += py-css-parser SUBDIR += py-csscompressor SUBDIR += py-cssmin Added: head/www/py-crossplane/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-crossplane/Makefile Fri Nov 15 01:23:03 2019 (r517625) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= crossplane +DISTVERSION= 0.5.3 +DISTVERSIONPREFIX= v +CATEGORIES= www python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= absl-py-${PORTVERSION} + +MAINTAINER= osa@FreeBSD.org +COMMENT= NGINX configurations converter into JSON and back + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= nginxinc + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/www/py-crossplane/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-crossplane/distinfo Fri Nov 15 01:23:03 2019 (r517625) @@ -0,0 +1,3 @@ +TIMESTAMP = 1573780479 +SHA256 (nginxinc-crossplane-v0.5.3_GH0.tar.gz) = 6c6f1413a00e7d0477cb95329bbb3d71339e3c487011f9ed899c47afd8daddcd +SIZE (nginxinc-crossplane-v0.5.3_GH0.tar.gz) = 85939 Added: head/www/py-crossplane/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-crossplane/pkg-descr Fri Nov 15 01:23:03 2019 (r517625) @@ -0,0 +1,5 @@ +Crossplane is reliable and fast NGINX configuration file parser and +builder, it's quick and reliable way to convert NGINX configurations +into JSON and back. + +WWW: https://github.com/nginxinc/crossplane