this port is a replacement for deprecated and outdated devel/rubygem-linecache. Linecache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->ruby ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Responsible Changed From-To: ruby->swills I'll take it.
Author: swills Date: Sun Oct 20 03:32:23 2013 New Revision: 330965 URL: http://svnweb.freebsd.org/changeset/ports/330965 Log: Linecache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times. WWW: https://github.com/cldwalker/debugger-linecache PR: ports/183035 Submitted by: Vladimir Kondratiev <wulf@mail.mipt.ru> Added: head/devel/rubygem-debugger-linecache/ head/devel/rubygem-debugger-linecache/Makefile (contents, props changed) head/devel/rubygem-debugger-linecache/distinfo (contents, props changed) head/devel/rubygem-debugger-linecache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 20 03:11:06 2013 (r330964) +++ head/devel/Makefile Sun Oct 20 03:32:23 2013 (r330965) @@ -4053,6 +4053,7 @@ SUBDIR += rubygem-cri SUBDIR += rubygem-daemon_controller SUBDIR += rubygem-daemons + SUBDIR += rubygem-debugger-linecache SUBDIR += rubygem-deeptest SUBDIR += rubygem-delayed_job SUBDIR += rubygem-dep_selector Added: head/devel/rubygem-debugger-linecache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-debugger-linecache/Makefile Sun Oct 20 03:32:23 2013 (r330965) @@ -0,0 +1,17 @@ +# Created by: Vladimir Kondratiev <wulf@mail.mipt.ru> +# $FreeBSD$ + +PORTNAME= debugger-linecache +PORTVERSION= 1.2.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= wulf@mail.mipt.ru +COMMENT= Caches(Ruby source) Files as Might Be Used in a Debugger + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +NO_STAGE= yes +.include <bsd.port.mk> Added: head/devel/rubygem-debugger-linecache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-debugger-linecache/distinfo Sun Oct 20 03:32:23 2013 (r330965) @@ -0,0 +1,2 @@ +SHA256 (rubygem/debugger-linecache-1.2.0.gem) = bf5d371a295727c131618e3cd223c6939c51c7bb28ff172477bb340752e89e47 +SIZE (rubygem/debugger-linecache-1.2.0.gem) = 15872 Added: head/devel/rubygem-debugger-linecache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-debugger-linecache/pkg-descr Sun Oct 20 03:32:23 2013 (r330965) @@ -0,0 +1,4 @@ +Linecache is a module for reading and caching lines. This may be useful for +example in a debugger where the same lines are shown many times. + +WWW: https://github.com/cldwalker/debugger-linecache _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!