2016-11-10 17:21:35 +01:00
|
|
|
From 660fa598f3a78f94f35e1edf10d143dae5db62bb Mon Sep 17 00:00:00 2001
|
|
|
|
From: Stephan Kulow <coolo@suse.de>
|
|
|
|
Date: Wed, 11 Feb 2015 02:30:14 +0100
|
2019-02-23 08:09:23 +01:00
|
|
|
Subject: [PATCH 17/32] .markdown is also seen in the wild
|
2016-11-10 17:21:35 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
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
|
|
|
|
}
|
|
|
|
--
|
2019-02-23 08:09:23 +01:00
|
|
|
2.20.1
|
2016-11-10 17:21:35 +01:00
|
|
|
|