From owner-svn-ports-all@freebsd.org Tue Jul 11 16:59:15 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B34CCDA60ED; Tue, 11 Jul 2017 16:59:15 +0000 (UTC) (envelope-from sunpoet@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 mx1.freebsd.org (Postfix) with ESMTPS id 8C8967B73C; Tue, 11 Jul 2017 16:59:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6BGxE51079688; Tue, 11 Jul 2017 16:59:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6BGxEvS079684; Tue, 11 Jul 2017 16:59:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201707111659.v6BGxEvS079684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 11 Jul 2017 16:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445505 - in head/devel: . rubygem-ddplugin X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-ddplugin X-SVN-Commit-Revision: 445505 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jul 2017 16:59:15 -0000 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 +# $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 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