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
29 lines
827 B
Diff
29 lines
827 B
Diff
From 953ff66677490c78ceff14afc0365f832079333a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marcus=20R=C3=BCckert?= <darix@nordisch.org>
|
|
Date: Tue, 21 Oct 2014 17:55:23 +0200
|
|
Subject: [PATCH 10/32] Try to load rbconfigpackagingsupport and fail
|
|
gracefully if not available
|
|
|
|
The file will patch ruby_install_name on unversioned ruby installations.
|
|
---
|
|
templates/gem_packages.spec.erb | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/templates/gem_packages.spec.erb b/templates/gem_packages.spec.erb
|
|
index 29873e5..a6ab58b 100644
|
|
--- a/templates/gem_packages.spec.erb
|
|
+++ b/templates/gem_packages.spec.erb
|
|
@@ -1,4 +1,9 @@
|
|
<%
|
|
+
|
|
+ begin
|
|
+ require 'rbconfigpackagingsupport'
|
|
+ rescue LoadError => ex
|
|
+ end
|
|
def self.patch_mod_full_name(path, mod_full_name)
|
|
path.gsub(/\/-/, "/#{mod_full_name}")
|
|
end
|
|
--
|
|
2.20.1
|
|
|