From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-1.9 required=3.0 tests=AWL,BAYES_00,URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id CE827200F4 for ; Fri, 30 Oct 2015 09:51:47 +0000 (UTC) Received: from localhost ([::1]:49377 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6Lb-0004T2-8m for dtas-all@80x24.org; Fri, 30 Oct 2015 05:51:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43558) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6LZ-0004Sx-O5 for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zs6LW-0005tU-Gz for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:45 -0400 Received: from dcvr.yhbt.net ([64.71.152.64]:47975) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6LW-0005tQ-B8 for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:42 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id E4B32200F6 for ; Fri, 30 Oct 2015 09:51:41 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] gemspec: duplicate frozen string for older Rubygems Date: Fri, 30 Oct 2015 09:51:41 +0000 Message-Id: <20151030095141.3504-1-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Older Rubygems (1.8.23 at least on Debian wheezy) tried to modify the version string directly. --- dtas.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dtas.gemspec b/dtas.gemspec index 1bd5141..2c2febc 100644 --- a/dtas.gemspec +++ b/dtas.gemspec @@ -3,7 +3,7 @@ Gem::Specification.new do |s| manifest = File.read('.gem-manifest').split(/\n/) s.name = %q{dtas} - s.version = ENV["VERSION"] + s.version = ENV["VERSION"].dup s.authors = ["dtas hackers"] s.summary = "duct tape audio suite for *nix" s.description = File.read("README").split(/\n\n/)[1].strip -- EW