From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 3 16:40:15 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0736216A41F for ; Wed, 3 Aug 2005 16:40:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79F9943D49 for ; Wed, 3 Aug 2005 16:40:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j73GeDuL034361 for ; Wed, 3 Aug 2005 16:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j73GeD69034360; Wed, 3 Aug 2005 16:40:13 GMT (envelope-from gnats) Resent-Date: Wed, 3 Aug 2005 16:40:13 GMT Resent-Message-Id: <200508031640.j73GeD69034360@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jonathan Weiss Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDDF616A41F for ; Wed, 3 Aug 2005 16:37:53 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8950B43D45 for ; Wed, 3 Aug 2005 16:37:53 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j73GbrEM030970 for ; Wed, 3 Aug 2005 16:37:53 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j73GbrYj030969; Wed, 3 Aug 2005 16:37:53 GMT (envelope-from nobody) Message-Id: <200508031637.j73GbrYj030969@www.freebsd.org> Date: Wed, 3 Aug 2005 16:37:53 GMT From: Jonathan Weiss To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/84524: [BUGFIX] Fix issue with non-tar rubygems in the rubygems-framework X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Aug 2005 16:40:15 -0000 >Number: 84524 >Category: ports >Synopsis: [BUGFIX] Fix issue with non-tar rubygems in the rubygems-framework >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Aug 03 16:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jonathan Weiss >Release: 5-STABLE >Organization: >Environment: FreeBSD xxx.nodomain 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Jul 21 18:03:54 CEST 2005 root@xxx.nodomain:/usr/obj/usr/src/sys/SATAN i386 >Description: The current Makefile.common for devel/ruby-gems that manages rubygems in the ports tree does not work with non-tar packed gems. The gems should not be extracted and the current Makefile.common uses NO_EXTRACT="YES" to garanty this. The problem is that NO_EXTRACT is not supported and thus non-tar gems are tried to be extracted. This will fail. Ulrich Spoerlein found this issue and has the solution. >How-To-Repeat: Try to create a non-tar gem like stream: http://rubyforge.org/frs/download.php/640/stream-0.5.gem >Fix: Change NO_EXTRACT in the Makefile.common to EXTRACT_ONLY= This will garanty that the gem will not be extracted. Submitted by Ulrich Spoerlein: --- Makefile.common Wed Jul 20 15:49:01 2005 +++ Makefile.common.mine Wed Aug 3 18:30:19 2005 @@ -7,7 +7,7 @@ PKGNAMEPREFIX= rubygem- EXTRACT_SUFX= .gem -NO_EXTRACT= YES +EXTRACT_ONLY= DIST_SUBDIR= rubygem USE_REINPLACE= yes >Release-Note: >Audit-Trail: >Unformatted: