2012-08-04 09:39:29 +02:00
|
|
|
Index: gem2rpm-0.8.1/bin/gem2rpm
|
|
|
|
===================================================================
|
|
|
|
--- gem2rpm-0.8.1.orig/bin/gem2rpm
|
|
|
|
+++ gem2rpm-0.8.1/bin/gem2rpm
|
|
|
|
@@ -69,6 +69,16 @@ rest = opts.permute(ARGV)
|
|
|
|
|
|
|
|
template = nil
|
|
|
|
if template_file.nil?
|
|
|
|
+ f = open("/etc/os-release", "r") if File.exists?("/etc/os-release")
|
|
|
|
+ if f
|
|
|
|
+ f.read.split('\n').each do |line|
|
|
|
|
+ line.match(%r{^ID=(.*)$}) { |m| template_file=m[1] }
|
|
|
|
+ end
|
|
|
|
+ f.close
|
|
|
|
+ f = nil
|
|
|
|
+ end
|
|
|
|
+end
|
|
|
|
+if template_file.nil?
|
|
|
|
template = Gem2Rpm::TEMPLATE
|
|
|
|
else
|
|
|
|
begin
|
2013-03-20 09:54:16 +01:00
|
|
|
|