summaryrefslogtreecommitdiff
path: root/devel/ruby-debug/PLIST
diff options
context:
space:
mode:
authorjlam <jlam>2008-04-14 21:33:04 +0000
committerjlam <jlam>2008-04-14 21:33:04 +0000
commit9577cfed85f3fae82ba182290f7ab3ffb1260e15 (patch)
tree5d8dff9ae135e66594f6c2d8b8ba201ea6386895 /devel/ruby-debug/PLIST
parenta68a9f890d4f237a433657eea5c496433e55b37b (diff)
downloadpkgsrc-9577cfed85f3fae82ba182290f7ab3ffb1260e15.tar.gz
Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0
include: Makefile: + Use a different method for setting the RUBY_DEBUG_VERSION in the Rakefile. We create a file at post-extract time that holds the version number and just directly read it within the Rakefile. patch-aa: + Read the VERSION file in the source directory to set RUBY_DEBUG_VERSION used in the specifications file. + Drop changes that manipulated the file list for the ruby-debug-base package. We already only build the CLI package, so the change is unnecessary. ruby-debug changes: * "rdebug --post-mortem" now really catches uncaught exceptions and brings you to post-mortem handling. "info program" shows the exception. * Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default options. * Expanded "info" command * "frame" command now accepts an optional thread number argument * add "var cl[ass]" command. Note "var const" can no longer be abbreviated "var c"; use "var co" (or const or constant). * add "condition" command. Allow removal of condition. * rdebug command history can be displayed with "show commands". Fix a bug in history saving. * INCOMPATIBLE CHANGE: "finish" works like gdb - stop just before the most recent method finishes. Will now accept a number which stops that many frames completed. (Note that return line numbers will be funny, the first line of the method until Ruby 1.8.7.) * fix bug in 'list' command when wrapping off the end. * Emacs interaction drastically reworked, expanded, and improved.
Diffstat (limited to 'devel/ruby-debug/PLIST')
-rw-r--r--devel/ruby-debug/PLIST140
1 files changed, 114 insertions, 26 deletions
diff --git a/devel/ruby-debug/PLIST b/devel/ruby-debug/PLIST
index b7be850d8fb..fed799b6867 100644
--- a/devel/ruby-debug/PLIST
+++ b/devel/ruby-debug/PLIST
@@ -1,6 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/06 23:03:58 seb Exp $
+@comment $NetBSD: PLIST,v 1.2 2008/04/14 21:33:04 jlam Exp $
bin/rdebug
-${GEM_HOME}/cache/ruby-debug-0.10.0.gem
+${GEM_HOME}/cache/ruby-debug-${PKGVERSION}.gem
${GEM_LIBDIR}/.require_paths
${GEM_LIBDIR}/AUTHORS
${GEM_LIBDIR}/CHANGES
@@ -8,24 +8,33 @@ ${GEM_LIBDIR}/ChangeLog
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README
${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/VERSION
${GEM_LIBDIR}/bin/rdebug
${GEM_LIBDIR}/cli/ruby-debug.rb
${GEM_LIBDIR}/cli/ruby-debug/command.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/breakpoints.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/catchpoint.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/condition.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/continue.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/control.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/disassemble.RB
${GEM_LIBDIR}/cli/ruby-debug/commands/display.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/edit.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/enable.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/eval.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/finish.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/frame.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/help.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/info.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/irb.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/list.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/method.rb
-${GEM_LIBDIR}/cli/ruby-debug/commands/script.rb
-${GEM_LIBDIR}/cli/ruby-debug/commands/settings.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/quit.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/reload.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/save.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/set.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/show.rb
+${GEM_LIBDIR}/cli/ruby-debug/commands/source.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/stepping.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/threads.rb
${GEM_LIBDIR}/cli/ruby-debug/commands/tmate.rb
@@ -36,41 +45,120 @@ ${GEM_LIBDIR}/cli/ruby-debug/helper.rb
${GEM_LIBDIR}/cli/ruby-debug/interface.rb
${GEM_LIBDIR}/cli/ruby-debug/processor.rb
${GEM_LIBDIR}/doc/rdebug.1
-${GEM_LIBDIR}/runner.sh
-${GEM_LIBDIR}/test/breakpoints.cmd
-${GEM_LIBDIR}/test/breakpoints.right
-${GEM_LIBDIR}/test/display.cmd
-${GEM_LIBDIR}/test/display.right
-${GEM_LIBDIR}/test/frame.cmd
-${GEM_LIBDIR}/test/frame.right
+${GEM_LIBDIR}/rdbg.rb
+${GEM_LIBDIR}/test/base/base.rb
+${GEM_LIBDIR}/test/base/binding.rb
+${GEM_LIBDIR}/test/base/catchpoint.rb
+${GEM_LIBDIR}/test/base/load.rb
+${GEM_LIBDIR}/test/data/annotate.cmd
+${GEM_LIBDIR}/test/data/annotate.right
+${GEM_LIBDIR}/test/data/break_bad.cmd
+${GEM_LIBDIR}/test/data/break_bad.right
+${GEM_LIBDIR}/test/data/breakpoints.cmd
+${GEM_LIBDIR}/test/data/breakpoints.right
+${GEM_LIBDIR}/test/data/condition.cmd
+${GEM_LIBDIR}/test/data/condition.right
+${GEM_LIBDIR}/test/data/ctrl.cmd
+${GEM_LIBDIR}/test/data/ctrl.right
+${GEM_LIBDIR}/test/data/display.cmd
+${GEM_LIBDIR}/test/data/display.right
+${GEM_LIBDIR}/test/data/dollar-0.right
+${GEM_LIBDIR}/test/data/dollar-0a.right
+${GEM_LIBDIR}/test/data/dollar-0b.right
+${GEM_LIBDIR}/test/data/edit.cmd
+${GEM_LIBDIR}/test/data/edit.right
+${GEM_LIBDIR}/test/data/emacs_basic.cmd
+${GEM_LIBDIR}/test/data/emacs_basic.right
+${GEM_LIBDIR}/test/data/enable.cmd
+${GEM_LIBDIR}/test/data/enable.right
+${GEM_LIBDIR}/test/data/finish.cmd
+${GEM_LIBDIR}/test/data/finish.right
+${GEM_LIBDIR}/test/data/frame.cmd
+${GEM_LIBDIR}/test/data/frame.right
+${GEM_LIBDIR}/test/data/help.cmd
+${GEM_LIBDIR}/test/data/help.right
+${GEM_LIBDIR}/test/data/history.right
+${GEM_LIBDIR}/test/data/info-thread.cmd
+${GEM_LIBDIR}/test/data/info-thread.right
+${GEM_LIBDIR}/test/data/info-var-bug2.cmd
+${GEM_LIBDIR}/test/data/info-var-bug2.right
+${GEM_LIBDIR}/test/data/info-var.cmd
+${GEM_LIBDIR}/test/data/info-var.right
+${GEM_LIBDIR}/test/data/info.cmd
+${GEM_LIBDIR}/test/data/info.right
+${GEM_LIBDIR}/test/data/linetrace.cmd
+${GEM_LIBDIR}/test/data/linetrace.right
+${GEM_LIBDIR}/test/data/linetracep.cmd
+${GEM_LIBDIR}/test/data/linetracep.right
+${GEM_LIBDIR}/test/data/list.cmd
+${GEM_LIBDIR}/test/data/list.right
+${GEM_LIBDIR}/test/data/noquit.right
+${GEM_LIBDIR}/test/data/output.cmd
+${GEM_LIBDIR}/test/data/output.right
+${GEM_LIBDIR}/test/data/post-mortem-next.cmd
+${GEM_LIBDIR}/test/data/post-mortem-next.right
+${GEM_LIBDIR}/test/data/post-mortem-osx.right
+${GEM_LIBDIR}/test/data/post-mortem.cmd
+${GEM_LIBDIR}/test/data/post-mortem.right
+${GEM_LIBDIR}/test/data/quit.cmd
+${GEM_LIBDIR}/test/data/quit.right
+${GEM_LIBDIR}/test/data/raise.cmd
+${GEM_LIBDIR}/test/data/raise.right
+${GEM_LIBDIR}/test/data/setshow.cmd
+${GEM_LIBDIR}/test/data/setshow.right
+${GEM_LIBDIR}/test/data/source.cmd
+${GEM_LIBDIR}/test/data/source.right
+${GEM_LIBDIR}/test/data/stepping.cmd
+${GEM_LIBDIR}/test/data/stepping.right
+${GEM_LIBDIR}/test/data/test-init-cygwin.right
+${GEM_LIBDIR}/test/data/test-init-osx.right
+${GEM_LIBDIR}/test/data/test-init.right
+${GEM_LIBDIR}/test/data/trace.right
+${GEM_LIBDIR}/test/dollar-0.rb
+${GEM_LIBDIR}/test/except-bug2.rb
+${GEM_LIBDIR}/test/gcd-dbg-nox.rb
+${GEM_LIBDIR}/test/gcd-dbg.rb
${GEM_LIBDIR}/test/gcd.rb
-${GEM_LIBDIR}/test/help.cmd
-${GEM_LIBDIR}/test/help.right
${GEM_LIBDIR}/test/helper.rb
${GEM_LIBDIR}/test/info-var-bug.rb
-${GEM_LIBDIR}/test/info-var.cmd
-${GEM_LIBDIR}/test/info-var.right
-${GEM_LIBDIR}/test/info.cmd
-${GEM_LIBDIR}/test/info.right
-${GEM_LIBDIR}/test/quit.cmd
-${GEM_LIBDIR}/test/quit.right
-${GEM_LIBDIR}/test/setshow.cmd
-${GEM_LIBDIR}/test/setshow.right
-${GEM_LIBDIR}/test/stepping.cmd
-${GEM_LIBDIR}/test/stepping.right
+${GEM_LIBDIR}/test/info-var-bug2.rb
+${GEM_LIBDIR}/test/null.rb
+${GEM_LIBDIR}/test/output.rb
+${GEM_LIBDIR}/test/pm-base.rb
+${GEM_LIBDIR}/test/pm.rb
+${GEM_LIBDIR}/test/raise.rb
${GEM_LIBDIR}/test/tdebug.rb
+${GEM_LIBDIR}/test/test-annotate.rb
+${GEM_LIBDIR}/test/test-break-bad.rb
${GEM_LIBDIR}/test/test-breakpoints.rb
-${GEM_LIBDIR}/test/test-columnize.rb
+${GEM_LIBDIR}/test/test-condition.rb
+${GEM_LIBDIR}/test/test-ctrl.rb
${GEM_LIBDIR}/test/test-display.rb
+${GEM_LIBDIR}/test/test-dollar-0.rb
+${GEM_LIBDIR}/test/test-edit.rb
+${GEM_LIBDIR}/test/test-emacs-basic.rb
+${GEM_LIBDIR}/test/test-enable.rb
+${GEM_LIBDIR}/test/test-finish.rb
${GEM_LIBDIR}/test/test-frame.rb
${GEM_LIBDIR}/test/test-help.rb
+${GEM_LIBDIR}/test/test-hist.rb
+${GEM_LIBDIR}/test/test-info-thread.rb
${GEM_LIBDIR}/test/test-info-var.rb
${GEM_LIBDIR}/test/test-info.rb
+${GEM_LIBDIR}/test/test-init.rb
+${GEM_LIBDIR}/test/test-list.rb
+${GEM_LIBDIR}/test/test-output.rb
+${GEM_LIBDIR}/test/test-pm.rb
${GEM_LIBDIR}/test/test-quit.rb
-${GEM_LIBDIR}/test/test-ruby-debug-base.rb
+${GEM_LIBDIR}/test/test-raise.rb
${GEM_LIBDIR}/test/test-setshow.rb
+${GEM_LIBDIR}/test/test-source.rb
${GEM_LIBDIR}/test/test-stepping.rb
-${GEM_HOME}/specifications/ruby-debug-0.10.0.gemspec
+${GEM_LIBDIR}/test/test-trace.rb
+${GEM_LIBDIR}/test/thread1.rb
+${GEM_HOME}/specifications/ruby-debug-${PKGVERSION}.gemspec
+@dirrm ${GEM_LIBDIR}/test/data
+@dirrm ${GEM_LIBDIR}/test/base
@dirrm ${GEM_LIBDIR}/test
@dirrm ${GEM_LIBDIR}/doc
@dirrm ${GEM_LIBDIR}/cli/ruby-debug/commands