Update to 3.1.4.

This commit is contained in:
Akinori MUSHA 2003-02-25 06:36:03 +00:00
parent fbc660cb2c
commit c06eeaf15b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=76450
4 changed files with 24 additions and 17 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= setup.rb
PORTVERSION= 3.1.2
PORTREVISION= 1
PORTVERSION= 3.1.4
CATEGORIES= devel ruby
MASTER_SITES= http://www.loveruby.net/archive/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTNAME:R}

View file

@ -1 +1 @@
MD5 (ruby/setup-3.1.2.tar.gz) = 6fec8a65cc94fcfde5eb545c9ef436e1
MD5 (ruby/setup-3.1.4.tar.gz) = 12e1be5570d3b5d6bef68eaf72846319

View file

@ -1,7 +1,11 @@
--- ruby-install.rb.orig Tue May 7 13:52:44 2002
+++ ruby-install.rb Sat May 25 11:06:48 2002
@@ -1006,3 +1006,3 @@
begin
- installer = ToplevelInstaller.new( File.dirname($0) )
+ installer = ToplevelInstaller.new( Dir.pwd )
installer.execute
--- ruby-install.rb.orig Tue Feb 25 15:33:48 2003
+++ ruby-install.rb Tue Feb 25 15:34:14 2003
@@ -857,7 +857,7 @@
class ToplevelInstaller < Installer
def self.invoke
- new(File.dirname($0)).invoke
+ new(Dir.pwd).invoke
end

View file

@ -1,7 +1,11 @@
--- ruby-setup.rb.orig Tue May 7 13:52:44 2002
+++ ruby-setup.rb Sat May 25 11:06:36 2002
@@ -1121,3 +1121,3 @@
begin
- installer = PackageManager.new( File.dirname($0) )
+ installer = PackageManager.new( Dir.pwd )
installer.execute
--- ruby-setup.rb.orig Tue Feb 25 15:33:48 2003
+++ ruby-setup.rb Tue Feb 25 15:34:25 2003
@@ -857,7 +857,7 @@
class ToplevelInstaller < Installer
def self.invoke
- new(File.dirname($0)).invoke
+ new(Dir.pwd).invoke
end