summaryrefslogtreecommitdiff
path: root/devel/ruby-debug-base
diff options
context:
space:
mode:
authorseb <seb@pkgsrc.org>2008-04-06 23:03:23 +0000
committerseb <seb@pkgsrc.org>2008-04-06 23:03:23 +0000
commite2f339cc255d0247b0de705da0efd253eb80a107 (patch)
treeb3c2843471c6d84b53a711f6cf5976f3ba5133f5 /devel/ruby-debug-base
parent800eed54477a5b41492a34e82c3ed622f6931473 (diff)
downloadpkgsrc-e2f339cc255d0247b0de705da0efd253eb80a107.tar.gz
Initial import of ruby-debug-base as version 0.10.0 into the NetBSD
Packages Collection. Ruby-debug is a faster implementation of the standard Ruby debugger debug.rb using a native extension with a new hook Ruby C API.
Diffstat (limited to 'devel/ruby-debug-base')
-rw-r--r--devel/ruby-debug-base/DESCR2
-rw-r--r--devel/ruby-debug-base/Makefile13
-rw-r--r--devel/ruby-debug-base/PLIST19
-rw-r--r--devel/ruby-debug-base/distinfo6
-rw-r--r--devel/ruby-debug-base/patches/patch-aa32
5 files changed, 72 insertions, 0 deletions
diff --git a/devel/ruby-debug-base/DESCR b/devel/ruby-debug-base/DESCR
new file mode 100644
index 00000000000..ca8a57d5d4e
--- /dev/null
+++ b/devel/ruby-debug-base/DESCR
@@ -0,0 +1,2 @@
+Ruby-debug is a faster implementation of the standard Ruby debugger
+debug.rb using a native extension with a new hook Ruby C API.
diff --git a/devel/ruby-debug-base/Makefile b/devel/ruby-debug-base/Makefile
new file mode 100644
index 00000000000..ebcfccdc2ea
--- /dev/null
+++ b/devel/ruby-debug-base/Makefile
@@ -0,0 +1,13 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/04/06 23:03:23 seb Exp $
+
+DISTNAME= ruby-debug-base-0.10.0
+PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
+#PKGREVISION= 1
+CATEGORIES= devel
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.datanoise.com/ruby-debug/
+COMMENT= Fast implementation of the standard Ruby debugger
+
+.include "../../misc/rubygems/rubygem.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/ruby-debug-base/PLIST b/devel/ruby-debug-base/PLIST
new file mode 100644
index 00000000000..e34b330b073
--- /dev/null
+++ b/devel/ruby-debug-base/PLIST
@@ -0,0 +1,19 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/06 23:03:23 seb Exp $
+${GEM_HOME}/cache/ruby-debug-base-0.10.0.gem
+${GEM_LIBDIR}/AUTHORS
+${GEM_LIBDIR}/CHANGES
+${GEM_LIBDIR}/LICENSE
+${GEM_LIBDIR}/README
+${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/ext/ChangeLog
+${GEM_LIBDIR}/ext/extconf.rb
+${GEM_LIBDIR}/ext/ruby_debug.c
+${GEM_LIBDIR}/lib/ChangeLog
+${GEM_LIBDIR}/lib/ruby-debug-base.rb
+${GEM_LIBDIR}/lib/ruby_debug.${RUBY_DLEXT}
+${GEM_LIBDIR}/test/test-ruby-debug-base.rb
+${GEM_HOME}/specifications/ruby-debug-base-0.10.0.gemspec
+@dirrm ${GEM_LIBDIR}/test
+@dirrm ${GEM_LIBDIR}/lib
+@dirrm ${GEM_LIBDIR}/ext
+@dirrm ${GEM_LIBDIR}
diff --git a/devel/ruby-debug-base/distinfo b/devel/ruby-debug-base/distinfo
new file mode 100644
index 00000000000..540abe0ac6a
--- /dev/null
+++ b/devel/ruby-debug-base/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/04/06 23:03:23 seb Exp $
+
+SHA1 (ruby-debug-base-0.10.0.gem) = 7237b90618edf4c3e1156b5039443970a4c92234
+RMD160 (ruby-debug-base-0.10.0.gem) = 1cbc72250c45a4e6e40b9c27e8cc7a8f4b4a28ec
+Size (ruby-debug-base-0.10.0.gem) = 34304 bytes
+SHA1 (patch-aa) = 91b3ae89cbc972451c4efd65523e5d251b7253e2
diff --git a/devel/ruby-debug-base/patches/patch-aa b/devel/ruby-debug-base/patches/patch-aa
new file mode 100644
index 00000000000..78f94394d7e
--- /dev/null
+++ b/devel/ruby-debug-base/patches/patch-aa
@@ -0,0 +1,32 @@
+$NetBSD: patch-aa,v 1.1.1.1 2008/04/06 23:03:23 seb Exp $
+
+Sync with current Rake and drop the ruby-debug gem build.
+
+--- Rakefile.orig 1970-01-01 00:00:00.000000000 +0000
++++ Rakefile
+@@ -23,7 +23,6 @@ CLI_FILES = COMMON_FILES + FileList[
+ "cli/**/*",
+ 'ChangeLog',
+ 'bin/*',
+- 'doc/rdebug.1',
+ 'test/**/*.cmd',
+ 'test/**/*.right',
+ 'test/**/gcd.rb',
+@@ -150,16 +149,13 @@ end
+ Rake::GemPackageTask.new(base_spec) do |pkg|
+ pkg.need_tar = true
+ end
+-Rake::GemPackageTask.new(cli_spec) do |pkg|
+- pkg.need_tar = true
+-end
+
+ task :default => [:package]
+
+ # Windows specification
+ win_spec = base_spec.clone
+ win_spec.extensions = []
+-win_spec.platform = Gem::Platform::WIN32
++win_spec.platform = Gem::Platform::CURRENT
+ win_spec.files += ["lib/#{SO_NAME}"]
+
+ desc "Create Windows Gem"