From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.236.177.33 with SMTP id c21cs105436yhm; Fri, 18 Nov 2011 18:02:25 -0800 (PST) Received: by 10.52.114.232 with SMTP id jj8mr6013774vdb.94.1321668144199; Fri, 18 Nov 2011 18:02:24 -0800 (PST) Return-Path: Received: from rubyforge.org (rubyforge.org. [205.234.109.19]) by mx.google.com with ESMTP id b6si2090147vdw.62.2011.11.18.18.02.24; Fri, 18 Nov 2011 18:02:24 -0800 (PST) Received-SPF: pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19; DomainKey-Status: bad (test mode) Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=sup-talk-bounces@rubyforge.org; domainkeys=hardfail (test mode) header.From=hollunder@lavabit.com Received: from rubyforge.org (rubyforge.org [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id E1C87185837A; Fri, 18 Nov 2011 21:02:23 -0500 (EST) Received: from karen.lavabit.com (karen.lavabit.com [72.249.41.33]) by rubyforge.org (Postfix) with ESMTP id 8268718581B2 for ; Fri, 18 Nov 2011 19:33:09 -0500 (EST) Received: from a.earth.lavabit.com (a.earth.lavabit.com [192.168.111.10]) by karen.lavabit.com (Postfix) with ESMTP id 1392C11BB86 for ; Fri, 18 Nov 2011 18:33:09 -0600 (CST) Received: from lavabit.com (eris.mozart.uni-klu.ac.at [143.205.216.123]) by lavabit.com with ESMTP id CRV53WR0BQTC for ; Fri, 18 Nov 2011 18:33:09 -0600 Received: from 143.205.216.123 (SquirrelMail authenticated user hollunder@lavabit.com) by lavabit.com with HTTP; Fri, 18 Nov 2011 19:33:08 -0500 (EST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=JFFlFCKRuH99kmKl/lHgV515rTwIE0McCFzDviR1sLjo4HjOzPFrnkc3nyMWATzjlvClhS9xCDvI6xFteyc+pb6/rb5yN6ySkLvLKzYD0pynjI4HmXG0iMQlfUkXVzpnFhaLKX+2iJ0HG4f5htwF20m6dBPgUa+aO9RsWslFnjs=; h=Message-ID:In-Reply-To:References:Date:Subject:From:To:User-Agent:MIME-Version:Content-Type; Message-ID: <29426.143.205.216.123.1321662788.squirrel@lavabit.com> In-Reply-To: <1321649693-sup-3146@stapelberg.de> References: <56777.143.205.193.62.1320657425.squirrel@lavabit.com> <1320700740-sup-9219@tilus.net> <1929.143.205.216.123.1320746264.squirrel@lavabit.com> <1320868149-sup-368@qwerzila> <1321649693-sup-3146@stapelberg.de> Date: Fri, 18 Nov 2011 19:33:08 -0500 (EST) From: hollunder@lavabit.com To: "sup-talk" User-Agent: SquirrelMail/1.4.13 MIME-Version: 1.0 Content-Type: multipart/mixed;boundary="----=_20111118193308_73193" Subject: [sup-talk] small patch and build error X-BeenThere: sup-talk@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: User & developer discussion of Sup List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: sup-talk-bounces@rubyforge.org Errors-To: sup-talk-bounces@rubyforge.org ------=_20111118193308_73193 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Hi there again, I have a small patch as well. This one is against sup-next and fixes a path issue in the rakefile ("cannot load such file -- sup-files") and a deprecation warning ("WARNING: rake/gempackagetask is deprecated. Use rubygems/package_task instead") However, I don't manage to build sup-next, this time with: /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': iconv will be deprecated in the future, use String#encode instead. /usr/lib/ruby/gems/1.9.1/gems/gettext-2.1.0/lib/gettext/runtime/locale_path.rb:20: Use RbConfig instead of obsolete and deprecated Config. rake aborted! invalid date format in specification: "2011-11-19 01:30:45 +0100" I don't quite know how to fix this one. Regards, Philipp ------=_20111118193308_73193 Content-Type: text/x-patch; name="rakefile.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="rakefile.patch" --- ../sup-next/Rakefile 2011-11-19 01:15:01.091850944 +0100 +++ Rakefile 2011-11-19 01:25:10.155791337 +0100 @@ -31,9 +31,9 @@ $:.push "lib" require 'rubygems' -require "sup-files" -require "sup-version" -require 'rake/gempackagetask.rb' +require "./sup-files" +require "./sup-version" +require 'rubygems/package_task.rb' spec = Gem::Specification.new do |s| s.name = %q{sup} ------=_20111118193308_73193 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sup-talk mailing list sup-talk@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-talk ------=_20111118193308_73193--