4005ce317e
A 0010-Try-to-load-rbconfigpackagingsupport-and-fail-gracef.patch A 0011-Add-support-for-scripts-pre-post-for-subpackages.patch A 0012-typo-in-gem2rpm.yml.documentation-custom_pkgs-instea.patch A 0013-Also-tag-LICENSE-MIT-as-docfile.patch A 0014-Refactor-into-multiple-lines.patch A 0015-Add-licence-to-the-list-of-license-files-as-well.patch A 0016-add-two-more-ways-to-express-changes.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/rubygem-gem2rpm?expand=0&rev=10
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/16] 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.2.2
|
|
|