svn commit: r323862 - in head/devel: . rubygem-github_api

Steve Wills swills at FreeBSD.org
Sun Jul 28 23:20:27 UTC 2013


Author: swills
Date: Sun Jul 28 23:20:25 2013
New Revision: 323862
URL: http://svnweb.freebsd.org/changeset/ports/323862

Log:
  Ruby wrapper that supports all of the GitHub API v3 methods(nearly 200). It's
  build in a modular way, that is, you can either instantiate the whole api
  wrapper Github.new or use parts of it e.i. Github::Repos.new if working solely
  with repositories is your main concern.
  
  WWW: https://github.com/peter-murach/github

Added:
  head/devel/rubygem-github_api/
  head/devel/rubygem-github_api/Makefile   (contents, props changed)
  head/devel/rubygem-github_api/distinfo   (contents, props changed)
  head/devel/rubygem-github_api/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jul 28 22:48:07 2013	(r323861)
+++ head/devel/Makefile	Sun Jul 28 23:20:25 2013	(r323862)
@@ -4091,6 +4091,7 @@
     SUBDIR += rubygem-gibbler
     SUBDIR += rubygem-gio2
     SUBDIR += rubygem-git
+    SUBDIR += rubygem-github_api
     SUBDIR += rubygem-glib2
     SUBDIR += rubygem-gobject-introspection
     SUBDIR += rubygem-grit

Added: head/devel/rubygem-github_api/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-github_api/Makefile	Sun Jul 28 23:20:25 2013	(r323862)
@@ -0,0 +1,23 @@
+# Created by: Steve Wills <swills at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	github_api
+PORTVERSION=	0.10.2
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Wrapper that supports all of the GitHub API v3 methods
+
+RUN_DEPENDS=	rubygem-addressable>=0:${PORTSDIR}/www/rubygem-addressable \
+		rubygem-faraday>=0.8.7:${PORTSDIR}/www/rubygem-faraday \
+		rubygem-hashie>=1.2:${PORTSDIR}/devel/rubygem-hashie \
+		rubygem-multi_json>=1.4:${PORTSDIR}/devel/rubygem-multi_json \
+		rubygem-nokogiri>=1.6.0:${PORTSDIR}/textproc/rubygem-nokogiri \
+		rubygem-oauth2>=0:${PORTSDIR}/net/rubygem-oauth2
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-github_api/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-github_api/distinfo	Sun Jul 28 23:20:25 2013	(r323862)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/github_api-0.10.2.gem) = 89e5e9cf093c9ff06691f747f512e8df24e6ad3454f1e7cc97529a1af7529734
+SIZE (rubygem/github_api-0.10.2.gem) = 689152

Added: head/devel/rubygem-github_api/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-github_api/pkg-descr	Sun Jul 28 23:20:25 2013	(r323862)
@@ -0,0 +1,6 @@
+Ruby wrapper that supports all of the GitHub API v3 methods(nearly 200). It's
+build in a modular way, that is, you can either instantiate the whole api
+wrapper Github.new or use parts of it e.i. Github::Repos.new if working solely
+with repositories is your main concern.
+
+WWW: https://github.com/peter-murach/github


More information about the svn-ports-all mailing list