Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jul 2017 16:59:14 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445505 - in head/devel: . rubygem-ddplugin
Message-ID:  <201707111659.v6BGxEvS079684@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Tue Jul 11 16:59:14 2017
New Revision: 445505
URL: https://svnweb.freebsd.org/changeset/ports/445505

Log:
  Add rubygem-ddplugin 1.0.1
  
  ddplugin is a library for managing plugins.
  
  Designing a library so that third parties can easily extend it greatly improves
  its usefulness. ddplugin helps solve this problem using plugins, which are
  classes of a certain type and with a given identifier (Ruby symbol).
  
  This code was extracted from Nanoc, where it has been in production for years.
  
  WWW: https://github.com/ddfreyne/ddplugin

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jul 11 16:50:03 2017	(r445504)
+++ head/devel/Makefile	Tue Jul 11 16:59:14 2017	(r445505)
@@ -5281,6 +5281,7 @@
     SUBDIR += rubygem-cyoi
     SUBDIR += rubygem-daemon_controller
     SUBDIR += rubygem-daemons
+    SUBDIR += rubygem-ddplugin
     SUBDIR += rubygem-debug_inspector
     SUBDIR += rubygem-debugger-linecache
     SUBDIR += rubygem-debugger-xml

Added: head/devel/rubygem-ddplugin/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ddplugin/Makefile	Tue Jul 11 16:59:14 2017	(r445505)
@@ -0,0 +1,19 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ddplugin
+PORTVERSION=	1.0.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Plugin management for Ruby projects
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+NO_ARCH=	yes
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-ddplugin/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ddplugin/distinfo	Tue Jul 11 16:59:14 2017	(r445505)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1499770769
+SHA256 (rubygem/ddplugin-1.0.1.gem) = 40f220c4a3fb163927f6a58c5238c3bdc2db8c01827b98a1107d2e11743ef451
+SIZE (rubygem/ddplugin-1.0.1.gem) = 9216

Added: head/devel/rubygem-ddplugin/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-ddplugin/pkg-descr	Tue Jul 11 16:59:14 2017	(r445505)
@@ -0,0 +1,9 @@
+ddplugin is a library for managing plugins.
+
+Designing a library so that third parties can easily extend it greatly improves
+its usefulness. ddplugin helps solve this problem using plugins, which are
+classes of a certain type and with a given identifier (Ruby symbol).
+
+This code was extracted from Nanoc, where it has been in production for years.
+
+WWW: https://github.com/ddfreyne/ddplugin



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