From owner-freebsd-ruby@FreeBSD.ORG Wed Nov 14 00:48:39 2012 Return-Path: Delivered-To: freebsd-ruby@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C037E91; Wed, 14 Nov 2012 00:48:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) by mx1.freebsd.org (Postfix) with ESMTP id BAE818FC0C; Wed, 14 Nov 2012 00:48:35 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) (authenticated bits=0) by mouf.net (8.14.5/8.14.5) with ESMTP id qAE0mOtJ049642 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Tue, 13 Nov 2012 19:48:29 -0500 (EST) (envelope-from swills@FreeBSD.org) Message-ID: <50A2EA57.9070700@FreeBSD.org> Date: Tue, 13 Nov 2012 19:48:23 -0500 From: Steve Wills User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121110 Thunderbird/16.0.2 MIME-Version: 1.0 To: Paul Schmehl Subject: Re: My first ruby-based port References: <05D08C9ADA8C05A8ADC45777@utd71538.campus.ad.utdallas.edu> In-Reply-To: <05D08C9ADA8C05A8ADC45777@utd71538.campus.ad.utdallas.edu> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mouf.net [199.48.129.64]); Tue, 13 Nov 2012 19:48:30 -0500 (EST) X-Spam-Status: No, score=0.0 required=4.5 tests=none autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mouf.net X-Virus-Scanned: clamav-milter 0.97.5 at mouf.net X-Virus-Status: Clean Cc: FreeBSD Ports List X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Nov 2012 00:48:39 -0000 On 11/12/12 10:32, Paul Schmehl wrote: > I'm working on porting snorby. Great, glad to hear that! > It's a ruby rails application. I've got > quite a bit sorted out, but I've run into a problem that has me stumped. Someone else was working on this but ran into an issue that I can't recall. Something to do with image libraries I think. > I'm copying the distro to ${PREFIX}/www/snorby and then running bundle > install, which is based on the author's instructions on installing the > app. Calling bundle install is probably not the way to go, for a number of reasons. Take a look at how other rubygem- ports are built. > The command runs but generates an error, and I'm not sure if this > is a missing ruby or rails dependency or what the cause might be. > > Here's the error message: > > cd /var/tmp/snorby/www/snorby && /usr/local/bin/bundle install > Fetching gem metadata from http://rubygems.org/..... > Fetching gem metadata from http://rubygems.org/.. > Fetching http://github.com/Snorby/delayed_job_data_mapper.git > git: not found It's trying to call git to download what I guess is a fork of delayed_job_data_mapper. There's a port for delayed_job_data_mapper already I think. Fetching things from git respos without somehow verifying them is something we avoid. Steve > Git error: command `git clone > 'http://github.com/Snorby/delayed_job_data_mapper.git' > "/usr/local/lib/ruby/gems/1.9/cache/bundler/git/delayed_job_data_mapper-431f00851d1c0120050c4c484e6372165f307abc" > --bare --no-hardlinks` in directory /var/tmp/snorby/www/snorby has failed. > *** Error code 11 > > Hopefully someone can point me in the right direction. I've posted to > the snorby mailing list but haven't gotten an answer yet. >