Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Jul 2016 18:25:21 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418550 - in head/devel: . py-python-gist
Message-ID:  <201607141825.u6EIPLg3030167@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Thu Jul 14 18:25:21 2016
New Revision: 418550
URL: https://svnweb.freebsd.org/changeset/ports/418550

Log:
  gist is a command line interface for working with GitHub gists. It provides
  several methods for inspecting a users gists, and the ability to easily
  create them.
  
  WWW: http://github.com/jdowner/gist
  WWW: https://pypi.python.org/pypi/python-gist
  
  PR:		210600
  Submitted by:	Yuri Victorovich <yuri@rawbw.com>

Added:
  head/devel/py-python-gist/
  head/devel/py-python-gist/Makefile   (contents, props changed)
  head/devel/py-python-gist/distinfo   (contents, props changed)
  head/devel/py-python-gist/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jul 14 17:55:25 2016	(r418549)
+++ head/devel/Makefile	Thu Jul 14 18:25:21 2016	(r418550)
@@ -4341,6 +4341,7 @@
     SUBDIR += py-pytest-xdist
     SUBDIR += py-python-bugzilla
     SUBDIR += py-python-distutils-extra
+    SUBDIR += py-python-gist
     SUBDIR += py-python-jenkins
     SUBDIR += py-python-magic
     SUBDIR += py-python-pcre

Added: head/devel/py-python-gist/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-gist/Makefile	Thu Jul 14 18:25:21 2016	(r418550)
@@ -0,0 +1,35 @@
+# Created by: Yuri Victorovich <yuri@rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	python-gist
+PORTVERSION=	0.3.3
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@rawbw.com
+COMMENT=	Command line interface for working with github gists
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}docopt>0:devel/py-docopt \
+		${PYTHON_PKGNAMEPREFIX}python-gnupg>0:security/py-python-gnupg \
+		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests \
+		${PYTHON_PKGNAMEPREFIX}responses>0:devel/py-responses \
+		${PYTHON_PKGNAMEPREFIX}simplejson>0:devel/py-simplejson \
+		${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	jdowner
+GH_PROJECT=	gist
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+do-test: build
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-python-gist/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-gist/distinfo	Thu Jul 14 18:25:21 2016	(r418550)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1466984924
+SHA256 (jdowner-gist-v0.3.3_GH0.tar.gz) = e0252ee06d9408e24fcebb06bb20d80e7234e5a7786cd0a0b88c1518f9fa3e37
+SIZE (jdowner-gist-v0.3.3_GH0.tar.gz) = 17175

Added: head/devel/py-python-gist/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-gist/pkg-descr	Thu Jul 14 18:25:21 2016	(r418550)
@@ -0,0 +1,6 @@
+gist is a command line interface for working with GitHub gists. It provides
+several methods for inspecting a users gists, and the ability to easily
+create them.
+
+WWW: http://github.com/jdowner/gist
+WWW: https://pypi.python.org/pypi/python-gist



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607141825.u6EIPLg3030167>