Marcus Rueckert
2c88c1595d
- dropped all patches and replaced them with git format-patch series: - modified: 0001-use-the-ID-from-os-release-to-use-the-proper-templat.patch 0002-added-basic-config-file-support-to-gem2rpm-in-yaml-f.patch 0003-new-opensuse-templates.-they-require-the-config-file.patch 0004-added-example-gem2rpm.yml.patch 0005-properly-shorten-description-and-summary.patch 0006-Preserve-the-license-header-found-in-the-output-file.patch 0007-fixes-for-the-opensuse-template.patch 0008-do-not-use-not-.-not-supported-on-1.8-e.g.patch 0009-No-longer-require-the-ruby-version-inside-the-subpac.patch 0010-Try-to-load-rbconfigpackagingsupport-and-fail-gracef.patch 0011-Add-support-for-scripts-pre-post-for-subpackages.patch 0012-typo-in-gem2rpm.yml.documentation-custom_pkgs-instea.patch 0013-Also-tag-LICENSE-MIT-as-docfile.patch 0014-Refactor-into-multiple-lines.patch 0015-Add-licence-to-the-list-of-license-files-as-well.patch 0016-add-two-more-ways-to-express-changes.patch - dropped: 0017-touch-unpacked-sources.patch 0001-Also-tag-APACHE-LICENSE-2.0-as-docfile.patch - newly added: 0017-.markdown-is-also-seen-in-the-wild.patch 0018-Only-use-the-extensions-doc-dir-on-MRI-2.1.x.patch 0019-Cleaner-solution-for-the-extensions-doc-dir.patch 0020-Ruby-1.8-insists-on-the-for-the-parameter.patch 0021-Fix-company-name-in-copyright-header.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/rubygem-gem2rpm?expand=0&rev=20
57 lines
2.1 KiB
Diff
57 lines
2.1 KiB
Diff
From eed51b54253c303c593d9466ed8ed17523bda3d1 Mon Sep 17 00:00:00 2001
|
|
From: Stephan Kulow <coolo@suse.de>
|
|
Date: Wed, 15 Oct 2014 10:38:29 +0200
|
|
Subject: [PATCH 07/25] fixes for the opensuse template:
|
|
|
|
- add one more space for sources
|
|
- add empty lines in front of the warning preamble - otherwise format_spec_file
|
|
removes it as old license comment
|
|
- don't %ghost %_bindir
|
|
---
|
|
templates/gem_packages.spec.erb | 6 +++---
|
|
templates/opensuse.spec.erb | 4 +++-
|
|
2 files changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/templates/gem_packages.spec.erb b/templates/gem_packages.spec.erb
|
|
index d1734db..058660b 100644
|
|
--- a/templates/gem_packages.spec.erb
|
|
+++ b/templates/gem_packages.spec.erb
|
|
@@ -173,9 +173,9 @@ fi
|
|
<% end -%>
|
|
<% spec.executables.each do |executable| -%>
|
|
<%= rb_bindir %>/<%= "#{executable}#{rb_suffix}-#{spec.version}" %>
|
|
-%ghost <%= rb_bindir %>/<%= "#{executable}#{rb_suffix}" %>
|
|
-%ghost <%= rb_bindir %>/<%= "#{executable}-#{spec.version}" %>
|
|
-%ghost <%= rb_bindir %>/<%= executable %>
|
|
+<%= rb_bindir %>/<%= "#{executable}#{rb_suffix}" %>
|
|
+<%= rb_bindir %>/<%= "#{executable}-#{spec.version}" %>
|
|
+<%= rb_bindir %>/<%= executable %>
|
|
%ghost <%= rb_sysconfdir %>/alternatives/<%= executable %>
|
|
%ghost <%= rb_sysconfdir %>/alternatives/<%= "#{executable}#{rb_suffix}" %>
|
|
%ghost <%= rb_sysconfdir %>/alternatives/<%= "#{executable}-#{spec.version}" %>
|
|
diff --git a/templates/opensuse.spec.erb b/templates/opensuse.spec.erb
|
|
index 25fdec3..8bc281c 100644
|
|
--- a/templates/opensuse.spec.erb
|
|
+++ b/templates/opensuse.spec.erb
|
|
@@ -15,6 +15,8 @@
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
<% if config && not(config.empty?) -%>
|
|
+
|
|
+
|
|
#
|
|
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
|
|
# All sections marked as MANUAL, license headers, summaries and descriptions
|
|
@@ -74,7 +76,7 @@ Url: <%= spec.homepage %>
|
|
Source: http://rubygems.org/gems/%{mod_full_name}.gem
|
|
<% if config[:sources]
|
|
config[:sources].each_with_index do |src, i| -%>
|
|
-Source<%= i+1 %>: <%= src %>
|
|
+Source<%= i+1 %>: <%= src %>
|
|
<% end
|
|
end -%>
|
|
<% if config[:patches] -%>
|
|
--
|
|
2.10.1
|
|
|