From owner-freebsd-questions@FreeBSD.ORG Sun May 18 19:09:22 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB7881065674 for ; Sun, 18 May 2008 19:09:22 +0000 (UTC) (envelope-from hoyhoy.freebsd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id 676EF8FC16 for ; Sun, 18 May 2008 19:09:22 +0000 (UTC) (envelope-from hoyhoy.freebsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so737086nfh.33 for ; Sun, 18 May 2008 12:09:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=7FnfVWNvt8ZG1Tzi8o8GE6pNK06LduwcPAo/EICRY5Q=; b=JMRSR7W9rDosQmj/dtq4KANo5GtpWNTeCgF4T1L/TtPm9zfdPB3usl6eS24A7d7FC5/DwcY6b65bkBYFAC3rULGtGO7EaPFCsjsPmUYuraInoIfFXSGjvzb/xhQ3lpLsyceHpiCyKIIOnZQ0gNiuKvAw+QgRpGSzoW0XJrHUpFM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=d7sYRhyBAxnE+fBgJQX3uxuR6WEv28zr32KIPTgudcdsvvstC/rU57QdExwzXlrE0xfv4p4/WPZ4o7c/3xjvHKF2ZZlvSopN4/T1ThjW1K1o+3GN11s/h148FuSAx6IcY3/zdqnKNp4qO3uZ5Dg5ZMZBJZZFwMVDmRpVQjsc4FU= Received: by 10.210.77.3 with SMTP id z3mr5954574eba.183.1211136186829; Sun, 18 May 2008 11:43:06 -0700 (PDT) Received: by 10.210.134.2 with HTTP; Sun, 18 May 2008 11:43:06 -0700 (PDT) Message-ID: <29e39ca0805181143w777e07e6m15429ab26166a128@mail.gmail.com> Date: Sun, 18 May 2008 11:43:06 -0700 From: "Tony Perrie" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Portinstall converters/ruby-iconv failing with rejected patch-rexml-update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2008 19:09:22 -0000 I'm attempting to portinstall ruby-iconv on FreeBSD 6.2-RELEASE #7, but I'm getting the following error: ===> Patching for ruby-1.8.6.111_2,1 ===> Applying FreeBSD patches for ruby-1.8.6.111_2,1 1 out of 3 hunks failed--saving rejects to lib/rexml/rexml.rb.rej => Patch patch-rexml-update failed to apply cleanly. => Patch(es) patch-ext_tk_tkutil_extconf.rb patch-io.c patch- lib_webrick_httpservlet_filehandler.rb patch-mkmf.rb applied cleanly. *** Error code 1 Stop in /ports/lang/ruby18. *** Error code 1 Stop in /ports/lang/ruby18. *** Error code 1 Stop in /ports/converters/ruby-iconv. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall. 1398.0 env make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! converters/ruby-iconv (patch error) I looked around for these individual patch files in /var/build and / tmp, but I didn't see them anywhere. I did find the rexml.rej contained the following. ************** *** 20,29 **** # or can be accessed # online[http://www.germane-software.com/software/rexml/docs/ tutorial.html] module REXML - COPYRIGHT = "Copyright (c) 2001-2007 Sean Russell " - DATE = "2007/209" - VERSION = "3.1.7.1" - REVISION = "$Revision: 1.1 $".gsub(/\$Revision: 1.1 $/,'').strip Copyright = COPYRIGHT Version = VERSION --- 22,31 ---- # or can be accessed # online[http://www.germane-software.com/software/rexml/docs/ tutorial.html] module REXML + COPYRIGHT = "Copyright \xC2\xA9 2001-2006 Sean Russell @germane-software.com>" + VERSION = "3.1.7.2" + DATE = "2007/275" + REVISION = "$Revision: 1.1 $".gsub(/\$Revision: 1.1 $/,'').strip Copyright = COPYRIGHT Version = VERSION Is there a before filter I can run to either prevent this patch from running or does another patch exist? Please advise, Tony