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
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
From e9601db421071203202ddb0122e8826859238e73 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marcus=20R=C3=BCckert?= <mrueckert@suse.de>
|
|
Date: Thu, 10 Nov 2016 15:46:22 +0100
|
|
Subject: [PATCH 25/25] allow running commands after patching
|
|
|
|
but before we actually rebuild the gem.
|
|
needed for libv8 gem.
|
|
---
|
|
gem2rpm.yml.documentation | 2 ++
|
|
templates/opensuse.spec.erb | 5 +++++
|
|
2 files changed, 7 insertions(+)
|
|
|
|
diff --git a/gem2rpm.yml.documentation b/gem2rpm.yml.documentation
|
|
index 376eacd..fbed82e 100644
|
|
--- a/gem2rpm.yml.documentation
|
|
+++ b/gem2rpm.yml.documentation
|
|
@@ -22,6 +22,8 @@
|
|
# :patches:
|
|
# foo.patch: -p1
|
|
# bar.patch:
|
|
+# :post_patch:
|
|
+# if you need to fiddle with the source dir before rebuilding the gem
|
|
# ## used by gem2rpm
|
|
# :sources:
|
|
# - foo.desktop
|
|
diff --git a/templates/opensuse.spec.erb b/templates/opensuse.spec.erb
|
|
index ae2d458..e6e9a1a 100644
|
|
--- a/templates/opensuse.spec.erb
|
|
+++ b/templates/opensuse.spec.erb
|
|
@@ -143,6 +143,11 @@ PreReq: update-alternatives
|
|
<% config[:patches].each_with_index do |patch, i| -%>
|
|
%patch<%= i %> <%= patch[1] if patch[1] %>
|
|
<% end -%>
|
|
+<% if config[:post_patch] -%>
|
|
+# MANUAL
|
|
+<%= config[:post_patch] %>
|
|
+# /MANUAL
|
|
+<% end -%>
|
|
find -type f -print0 | xargs -0 touch -r %{S:0}
|
|
%gem_build
|
|
<% end -%>
|
|
--
|
|
2.10.1
|
|
|