forked from pool/rubygem-gem2rpm
9f40853891
A 0027-quote-version_suffix-in-gem2rpm.yml.documentation-to.patch A 0028-add-binary_map-support.patch A 0029-Use-or-for-the-conditions-instead-of-and.patch A 0030-gem_package.spec.erb-sync-with-ruby-common.patch A 0031-use-template-opensuse-on-openSUSE-Tumbleweed-where-e.patch A 0032-Replace-no-rdoc-no-ri-with-no-document.patch And refresh all others Remove: D binary_map.patch D enhances.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/rubygem-gem2rpm?expand=0&rev=35
40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
From 660fa598f3a78f94f35e1edf10d143dae5db62bb Mon Sep 17 00:00:00 2001
|
|
From: Stephan Kulow <coolo@suse.de>
|
|
Date: Wed, 11 Feb 2015 02:30:14 +0100
|
|
Subject: [PATCH 17/32] .markdown is also seen in the wild
|
|
|
|
---
|
|
templates/gem_packages.spec.erb | 2 +-
|
|
templates/opensuse.spec.erb | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/templates/gem_packages.spec.erb b/templates/gem_packages.spec.erb
|
|
index 0cd92e2..9e2e877 100644
|
|
--- a/templates/gem_packages.spec.erb
|
|
+++ b/templates/gem_packages.spec.erb
|
|
@@ -133,7 +133,7 @@ Usually in RDoc and RI formats.
|
|
release_notes
|
|
readme
|
|
).each { |file|
|
|
- bpath = path.downcase.gsub(%r{\.rdoc$}, '').gsub(%r{\.txt$}, '').gsub(%r{\.md$}, '')
|
|
+ bpath = path.downcase.gsub(%r{\.rdoc$}, '').gsub(%r{\.txt$}, '').gsub(%r{\.md$}, '').gsub(%r{\.markdown$}, '')
|
|
#$stderr.puts "PATH #{path} #{bpath} #{file}"
|
|
docdirfiles << path if bpath == file
|
|
}
|
|
diff --git a/templates/opensuse.spec.erb b/templates/opensuse.spec.erb
|
|
index b1251c5..a5f34c6 100644
|
|
--- a/templates/opensuse.spec.erb
|
|
+++ b/templates/opensuse.spec.erb
|
|
@@ -123,7 +123,7 @@ PreReq: update-alternatives
|
|
release_notes
|
|
readme
|
|
).each { |file|
|
|
- bpath = path.downcase.gsub(%r{\.rdoc$}, '').gsub(%r{\.txt$}, '').gsub(%r{\.md$}, '')
|
|
+ bpath = path.downcase.gsub(%r{\.rdoc$}, '').gsub(%r{\.txt$}, '').gsub(%r{\.md$}, '').gsub(%r{\.markdown$}, '')
|
|
#$stderr.puts "PATH #{path} #{bpath} #{file}"
|
|
docdirfiles << path if bpath == file
|
|
}
|
|
--
|
|
2.20.1
|
|
|