svn commit: r369377 - in head/sysutils: . rubgem-bundler_ext

Martin Matuska mm at FreeBSD.org
Sat Sep 27 08:13:18 UTC 2014


Author: mm
Date: Sat Sep 27 08:13:16 2014
New Revision: 369377
URL: http://svnweb.freebsd.org/changeset/ports/369377
QAT: https://qat.redports.org/buildarchive/r369377/

Log:
  bundler_ext is a simple library leveraging the Bundler Gemfile DSL to load gems
  already on the system and managed by the systems package manager (like yum/apt)
  
  WWW: https://github.com/bundlerext/bundler_ext

Added:
  head/sysutils/rubgem-bundler_ext/
  head/sysutils/rubgem-bundler_ext/Makefile   (contents, props changed)
  head/sysutils/rubgem-bundler_ext/distinfo   (contents, props changed)
  head/sysutils/rubgem-bundler_ext/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Sep 27 07:27:26 2014	(r369376)
+++ head/sysutils/Makefile	Sat Sep 27 08:13:16 2014	(r369377)
@@ -780,6 +780,7 @@
     SUBDIR += rsyslog8
     SUBDIR += rsyslog8-devel
     SUBDIR += rtty
+    SUBDIR += rubgem-bundler_ext
     SUBDIR += ruby-quota
     SUBDIR += rubygem-SyslogLogger
     SUBDIR += rubygem-backup

Added: head/sysutils/rubgem-bundler_ext/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubgem-bundler_ext/Makefile	Sat Sep 27 08:13:16 2014	(r369377)
@@ -0,0 +1,21 @@
+# Created by: Martin Matuska <mm at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	bundler_ext
+PORTVERSION=	0.4.0
+CATEGORIES=	sysutils rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Loads gems installed on the system using Bundler Gemfile DSL
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	rubygem-bundler>=1.7:${PORTSDIR}/sysutils/rubygem-bundler
+BUILD_DEPENDS=	rubygem-rspec>=3:${PORTSDIR}/devel/rubygem-rspec
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/sysutils/rubgem-bundler_ext/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubgem-bundler_ext/distinfo	Sat Sep 27 08:13:16 2014	(r369377)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/bundler_ext-0.4.0.gem) = e9cdd561e3d07331755220fe39308881a278058b1bc66637c06c3993a7ecd37f
+SIZE (rubygem/bundler_ext-0.4.0.gem) = 13312

Added: head/sysutils/rubgem-bundler_ext/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubgem-bundler_ext/pkg-descr	Sat Sep 27 08:13:16 2014	(r369377)
@@ -0,0 +1,7 @@
+Bundler is a tool that manages gem dependencies for your ruby application. It
+takes a gem manifest file and is able to fetch, download, and install the gems
+and all child dependencies specified in this manifest. It can manage any update
+to the gem manifest file and update the bundled gems accordingly. It also
+letsyou run any ruby code in context of the bundled gem environment.
+
+WWW: http://gembundler.com


More information about the svn-ports-head mailing list