Date: Mon, 09 Feb 1998 10:10:37 +0900 From: usagi@ruby.club.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: ports/5684: Upgrading ruby-1.0 port Message-ID: <19980209101037L.ematsu@pfu.co.jp>
next in thread | raw e-mail | index | archive | help
>Number: 5684 >Category: ports >Synopsis: Upgrading ruby-1.0 port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 8 17:10:01 PST 1998 >Last-Modified: >Originator: Eiji-usagi-MATSUmoto >Organization: Ruby Club member >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: I would like to upgrade ruby-1.0 port collection that I maintain. >Description: Changes - catch-up new version (ruby-1.0-971225) - Some trivial bug fixed. >How-To-Repeat: >Fix: Here is the 'diff -ruN' results. diff -ruN ruby.old/Makefile ruby/Makefile --- ruby.old/Makefile Sat Feb 7 13:15:31 1998 +++ ruby/Makefile Sat Feb 7 12:40:20 1998 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.4 1997/12/01 08:09:37 vanilla Exp $ # -DISTNAME= ruby-1.0-971125 +DISTNAME= ruby-1.0-971225 PKGNAME= ruby-1.0 CATEGORIES= lang MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/ diff -ruN ruby.old/files/md5 ruby/files/md5 --- ruby.old/files/md5 Sat Feb 7 13:15:30 1998 +++ ruby/files/md5 Sat Feb 7 12:43:19 1998 @@ -1 +1 @@ -MD5 (ruby-1.0-971125.tar.gz) = 832404a835e8b9c6681bf85410ff5975 +MD5 (ruby-1.0-971225.tar.gz) = ae6508e0dc9c26ded7221e5200c34493 diff -ruN ruby.old/patches/patch-ah ruby/patches/patch-ah --- ruby.old/patches/patch-ah Thu Jan 1 09:00:00 1970 +++ ruby/patches/patch-ah Sat Feb 7 13:06:39 1998 @@ -0,0 +1,11 @@ +--- string.c.orig Tue Dec 9 10:18:11 1997 ++++ string.c Sat Feb 7 13:05:36 1998 +@@ -421,7 +421,7 @@ + UINT len; + int retval; + +- if (ignorecase != FALSE) { ++ if (ignorecase) { + return str_cicmp(str1, str2); + } + diff -ruN ruby.old/patches/patch-ai ruby/patches/patch-ai --- ruby.old/patches/patch-ai Thu Jan 1 09:00:00 1970 +++ ruby/patches/patch-ai Sat Feb 7 13:07:04 1998 @@ -0,0 +1,14 @@ +--- file.c.orig Mon Oct 20 11:09:34 1997 ++++ file.c Sat Feb 7 13:00:38 1998 +@@ -1326,6 +1326,11 @@ + if (!e) return 0; + + l2 = strlen(e); ++ if (l2 == 2 && e[1] == '*') { ++ e = strrchr(p, *e); ++ if (!e) return 0; ++ return e - p; ++ } + if (l1 < l2) return l1; + + if (strcmp(p+l1-l2, e) == 0) { diff -ruN ruby.old/patches/patch-aj ruby/patches/patch-aj --- ruby.old/patches/patch-aj Thu Jan 1 09:00:00 1970 +++ ruby/patches/patch-aj Sat Feb 7 13:08:03 1998 @@ -0,0 +1,20 @@ +--- lib/tktext.rb.orig Tue Aug 19 16:23:57 1997 ++++ lib/tktext.rb Sat Feb 7 13:01:50 1998 +@@ -131,7 +131,7 @@ + @t = parent + @path = @id = $tk_text_mark + $tk_text_mark = $tk_text_mark.succ +- tk_call @t.path, 'set', @id, index ++ tk_call @t.path, 'mark', 'set', @id, index + @t._addtag id, self + end + def id +@@ -139,7 +139,7 @@ + end + + def set(where) +- tk_call @t.path, 'mark', 'unset', @id, where ++ tk_call @t.path, 'mark', 'set', @id, where + end + + def unset >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980209101037L.ematsu>