From owner-freebsd-ports Sun Feb 8 17:10:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04688 for freebsd-ports-outgoing; Sun, 8 Feb 1998 17:10:02 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04682; Sun, 8 Feb 1998 17:10:01 -0800 (PST) (envelope-from gnats) Received: from nejimaki2.pfu.co.jp (nejimaki2.pfu.co.jp [202.248.171.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04156 for ; Sun, 8 Feb 1998 17:05:27 -0800 (PST) (envelope-from ematsu@pfu.co.jp) Received: from capella.pfu.co.jp ([202.248.171.134]) by nejimaki2.pfu.co.jp (8.8.8+2.7Wbeta7/3.6Wbeta7-97111523) with ESMTP id KAA27921 for ; Mon, 9 Feb 1998 10:05:13 +0900 (JST) Received: from nejimaki.pfu.co.jp by capella.pfu.co.jp (8.8.8+2.7Wbeta7/3.4W5-MX971027-PFU Domain Mail Master) id KAA20814; Mon, 9 Feb 1998 10:10:01 +0900 (JST) Received: from Io.unoke.pfu.co.jp by nejimaki.pfu.co.jp (8.8.7/3.4W5-MX971025-PFU Domain Mail Master) id KAA19833; Mon, 9 Feb 1998 10:05:51 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by Io.unoke.pfu.co.jp (8.8.5/3.5Wpl7) with ESMTP id KAA01150 for ; Mon, 9 Feb 1998 10:10:38 +0900 (JST) Message-Id: <19980209101037L.ematsu@pfu.co.jp> Date: Mon, 09 Feb 1998 10:10:37 +0900 From: usagi@ruby.club.or.jp Reply-To: usagi@ruby.club.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5684: Upgrading ruby-1.0 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >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