From owner-svn-ports-head@freebsd.org Wed Aug 1 00:34:30 2018 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 D3C46106AD52; Wed, 1 Aug 2018 00:34:29 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A0138BC41; Wed, 1 Aug 2018 00:34:29 +0000 (UTC) (envelope-from jhale@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 673891B21B; Wed, 1 Aug 2018 00:34:29 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w710YTDf060092; Wed, 1 Aug 2018 00:34:29 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w710YSvi060086; Wed, 1 Aug 2018 00:34:28 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201808010034.w710YSvi060086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Wed, 1 Aug 2018 00:34:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476144 - in head/www: . py-grip X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: in head/www: . py-grip X-SVN-Commit-Revision: 476144 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.27 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: Wed, 01 Aug 2018 00:34:30 -0000 Author: jhale Date: Wed Aug 1 00:34:28 2018 New Revision: 476144 URL: https://svnweb.freebsd.org/changeset/ports/476144 Log: New port: www/py-grip Grip (GitHub Readme Instant Preview) is a command-line server application written in Python that uses the GitHub markdown API to render a local readme file. The styles come directly from GitHub, so you'll know exactly how it will appear. Changes you make to the Readme will be instantly reflected in the browser without requiring a page refresh. WWW: https://github.com/joeyespo/grip Added: head/www/py-grip/ head/www/py-grip/Makefile (contents, props changed) head/www/py-grip/distinfo (contents, props changed) head/www/py-grip/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Aug 1 00:30:55 2018 (r476143) +++ head/www/Makefile Wed Aug 1 00:34:28 2018 (r476144) @@ -1694,6 +1694,7 @@ SUBDIR += py-graphite-api SUBDIR += py-graphite-web SUBDIR += py-grequests + SUBDIR += py-grip SUBDIR += py-gunicorn SUBDIR += py-h2 SUBDIR += py-horizon Added: head/www/py-grip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-grip/Makefile Wed Aug 1 00:34:28 2018 (r476144) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= grip +PORTVERSION= 4.5.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jhale@FreeBSD.org +COMMENT= Preview GitHub Markdown files locally before committing + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>=0.4.0:devel/py-docopt@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}markdown>=2.5.1:textproc/py-markdown@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:textproc/py-pygments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:www/py-flask@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}path-and-address>=2.0.1:www/py-path-and-address@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.4.1:www/py-requests@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +CONFLICTS_INSTALL= grip +NO_ARCH= yes + +.include Added: head/www/py-grip/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-grip/distinfo Wed Aug 1 00:34:28 2018 (r476144) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525012738 +SHA256 (grip-4.5.2.tar.gz) = 048b7e5c738ed80bee345bd10840f27eb31687eb67132b40f2473dc1cf67aa0f +SIZE (grip-4.5.2.tar.gz) = 145644 Added: head/www/py-grip/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-grip/pkg-descr Wed Aug 1 00:34:28 2018 (r476144) @@ -0,0 +1,8 @@ +Grip (GitHub Readme Instant Preview) is a command-line server +application written in Python that uses the GitHub markdown API to +render a local readme file. The styles come directly from GitHub, +so you'll know exactly how it will appear. Changes you make to the +Readme will be instantly reflected in the browser without requiring +a page refresh. + +WWW: https://github.com/joeyespo/grip