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: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: yahns-public@yhbt.net Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 02A3C1F80E for ; Thu, 15 Oct 2015 22:47:39 +0000 (UTC) From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH] gemspec fixes for various RubyGems versions Date: Thu, 15 Oct 2015 22:47:39 +0000 Message-Id: <20151015224739.1090-1-e@80x24.org> List-Id: Version may not be frozen in some RubyGems versions, so we must dup it. Use a SPDX-compatible license string for GPL-3.0+, too (RubyGems still complains, for now) --- yahns.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yahns.gemspec b/yahns.gemspec index 83ca155..25be531 100644 --- a/yahns.gemspec +++ b/yahns.gemspec @@ -3,7 +3,7 @@ Gem::Specification.new do |s| manifest = File.read('.gem-manifest').split(/\n/) s.name = %q{yahns} - s.version = ENV["VERSION"] + s.version = ENV["VERSION"].dup s.authors = ["yahns hackers"] s.summary = "sleepy, multi-threaded, non-blocking application server" s.description = File.read("README").split(/\n\n/)[1].strip @@ -23,5 +23,5 @@ Gem::Specification.new do |s| s.add_development_dependency(%q, '>= 4.3', '< 6.0') s.homepage = "http://yahns.yhbt.net/README" - s.licenses = "GPLv3+" + s.licenses = "GPL-3.0+" end -- EW