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
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
From 0ee368bc6c4ea35d233dadbe1f2c7048a99d3dc4 Mon Sep 17 00:00:00 2001
|
|
From: Theo chatzimichos <tampakrap@opensuse.org>
|
|
Date: Fri, 5 Dec 2014 17:11:47 +0200
|
|
Subject: [PATCH 11/32] Add support for :scripts: (pre/post) for subpackages
|
|
|
|
With this commit we can add pre/post/(etc) scripts in gem2rpm.yml for
|
|
subpackages, as in the example below:
|
|
|
|
:custom_pkgs:
|
|
apache:
|
|
:scripts:
|
|
:pre: |-
|
|
some_command
|
|
:post:
|
|
another_command
|
|
---
|
|
templates/opensuse.spec.erb | 11 +++++++++++
|
|
1 file changed, 11 insertions(+)
|
|
|
|
diff --git a/templates/opensuse.spec.erb b/templates/opensuse.spec.erb
|
|
index 8bc281c..af04eaf 100644
|
|
--- a/templates/opensuse.spec.erb
|
|
+++ b/templates/opensuse.spec.erb
|
|
@@ -209,6 +209,17 @@ This package holds the <%= custom_pkg_name %> sub package for <%= spec.name -%>
|
|
%defattr(-,root,root,-)
|
|
<%= data[:filelist] %>
|
|
|
|
+<% if data[:scripts]
|
|
+ if data[:scripts].is_a? Hash
|
|
+ data[:scripts].each do |section, content| -%>
|
|
+%<%=section %> <%=custom_pkg_name %>
|
|
+<%= content %>
|
|
+
|
|
+<% end
|
|
+ end
|
|
+ end
|
|
+-%>
|
|
+
|
|
<% end
|
|
end
|
|
-%>
|
|
--
|
|
2.20.1
|
|
|