Bug 183035 - new port devel/rubygem-debugger-linecache Caches(Ruby source) Files as Might Be Used in a Debugger
Summary: new port devel/rubygem-debugger-linecache Caches(Ruby source) Files as Might ...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-16 21:20 UTC by Vladimir Kondratiev
Modified: 2013-10-20 04:40 UTC (History)
0 users

See Also:


Attachments
file.shar (1.70 KB, text/plain)
2013-10-16 21:20 UTC, Vladimir Kondratiev
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Kondratiev 2013-10-16 21:20:00 UTC
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:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-16 21:20:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ruby

ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Steve Wills freebsd_committer freebsd_triage 2013-10-20 04:30:19 UTC
Responsible Changed
From-To: ruby->swills

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-10-20 04:32:36 UTC
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"
Comment 4 Steve Wills freebsd_committer freebsd_triage 2013-10-20 04:32:37 UTC
State Changed
From-To: open->closed

Committed. Thanks!