From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 189231396D0 for ; Wed, 9 Aug 2017 06:21:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74CCB1FC005; Wed, 9 Aug 2017 06:21:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C6711FC046 for ; Wed, 9 Aug 2017 06:21:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D0C13419E9 for ; Wed, 9 Aug 2017 06:21:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E47DC75F9 for ; Wed, 9 Aug 2017 06:21:25 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1502259680.cca35be825a6d151a736014c7c9665cdb444dd5f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pdf-reader/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/pdf-reader/files/pdf-reader-1.3.3-Rakefile.patch X-VCS-Directories: dev-ruby/pdf-reader/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: cca35be825a6d151a736014c7c9665cdb444dd5f X-VCS-Branch: master Date: Wed, 9 Aug 2017 06:21:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6c9697fb-e2bf-44fb-9f43-356bcdec4ef5 X-Archives-Hash: d58173013cc2fbedef5c69d5641e9de4 commit: cca35be825a6d151a736014c7c9665cdb444dd5f Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Mon Aug 7 15:57:34 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Aug 9 06:21:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca35be8 dev-ruby/pdf-reader: remove unused patch. .../files/pdf-reader-1.3.3-Rakefile.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/dev-ruby/pdf-reader/files/pdf-reader-1.3.3-Rakefile.patch b/dev-ruby/pdf-reader/files/pdf-reader-1.3.3-Rakefile.patch deleted file mode 100644 index 6a602da3480..00000000000 --- a/dev-ruby/pdf-reader/files/pdf-reader-1.3.3-Rakefile.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- Rakefile.old 2014-05-07 00:17:16.985166191 +0200 -+++ Rakefile 2014-05-07 00:17:46.592166984 +0200 -@@ -5,28 +5,8 @@ - require 'rdoc/task' - require 'rspec/core/rake_task' - --# Cane requires ripper, which appears to only work on MRI 1.9 --if RUBY_VERSION >= "1.9" && RUBY_ENGINE == "ruby" -- -- desc "Default Task" -- task :default => [ :quality, :spec ] -- -- require 'cane/rake_task' -- require 'morecane' -- -- desc "Run cane to check quality metrics" -- Cane::RakeTask.new(:quality) do |cane| -- cane.abc_max = 20 -- cane.style_measure = 100 -- cane.max_violations = 93 -- -- cane.use Morecane::EncodingCheck, :encoding_glob => "{app,lib,spec}/**/*.rb" -- end -- --else -- desc "Default Task" -- task :default => [ :spec ] --end -+desc "Default Task" -+task :default => [ :spec ] - - desc "Run all rspec files" - RSpec::Core::RakeTask.new("spec") do |t|