forked from pool/rubygem-gem2rpm
Marcus Rueckert
ec53805b8a
M 0001-use-the-ID-from-os-release-to-use-the-proper-templat.patch M 0002-added-basic-config-file-support-to-gem2rpm-in-yaml-f.patch A 0003-new-opensuse-templates.-they-require-the-config-file.patch A 0004-added-example-gem2rpm.yml.patch A 0005-properly-shorten-description-and-summary.patch A 0006-Preserve-the-license-header-found-in-the-output-file.patch A 0007-fixes-for-the-opensuse-template.patch A 0008-do-not-use-not-.-not-supported-on-1.8-e.g.patch D 0003-sle-12-templates.-they-require-the-config-file-suppo.patch D 0004-openSUSE-template-fixes.patch D 0005-added-example-gem2rpm.yml.patch D 0006-properly-shorten-description-and-summary.patch D 0007-Preserve-the-license-header-found-in-the-output-file.patch D 0008-dont-allow-suffixes-with-just-a-plain-number.-prefix.patch D 0009-rubinius-has-no-extensions-docdir.patch D 0010-switch-to-new-packaging-scheme-by-default.patch D 0011-fixes-for-the-opensuse-template.patch - new patch for fixing usage of not() which breaks on 1.8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/rubygem-gem2rpm?expand=0&rev=8
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From ba7932c7d7bc6a70a45ac6ebb841a9e1bf8bb86b Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marcus=20R=C3=BCckert?= <darix@nordisch.org>
|
|
Date: Tue, 21 Oct 2014 14:54:55 +0200
|
|
Subject: [PATCH 8/8] do not use not(). not supported on 1.8 e.g.
|
|
|
|
---
|
|
templates/gem_packages.spec.erb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/templates/gem_packages.spec.erb b/templates/gem_packages.spec.erb
|
|
index 058660b..94d4005 100644
|
|
--- a/templates/gem_packages.spec.erb
|
|
+++ b/templates/gem_packages.spec.erb
|
|
@@ -96,7 +96,7 @@ PreReq: update-alternatives
|
|
%description -n <%= pkg_basename %><%= config[:version_suffix] %>
|
|
<%= config[:description] or spec.description -%>
|
|
|
|
-<% if spec.has_rdoc && not(config[:disable_docs]) -%>
|
|
+<% if spec.has_rdoc && !(config[:disable_docs]) -%>
|
|
%package -n <%= pkg_basename %>-doc<%= config[:version_suffix] %>
|
|
Summary: RDoc documentation for <%= spec.name %>
|
|
Group: Development/Languages/Ruby
|
|
@@ -191,7 +191,7 @@ fi
|
|
<% end -%>
|
|
<%= gem_spec_dir %>/<%= mod_full_name -%>.gemspec
|
|
|
|
-<% if spec.has_rdoc && not(config[:disable_docs]) -%>
|
|
+<% if spec.has_rdoc && !(config[:disable_docs]) -%>
|
|
%files -n <%= pkg_basename %>-doc<%= config[:version_suffix] %>
|
|
%defattr(-,root,root,-)
|
|
%doc <%= gem_doc_dir %>
|
|
--
|
|
1.8.4.5
|
|
|