From bc4afb1d852ecce5bc17b8329bbcf076e45ab28d Mon Sep 17 00:00:00 2001 From: Funda Wang Date: Sat, 28 Sep 2013 21:51:47 +0800 Subject: add switch -d to gem_install to move headers into vendorarchdir --- NEWS | 3 +++ build.macros.in | 8 +++++++- configure.ac | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index c7bffe3..2727df8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +Version 1.190 - 28 Sep 2013, by Funda Wang +- add switch -d to gem_install to move headers into vendorarchdir + Version 1.189 - 25 Sep 2013, by Philippe Makowski - Set valid macros names for Python byte compilation diff --git a/build.macros.in b/build.macros.in index d0e473a..2edb153 100644 --- a/build.macros.in +++ b/build.macros.in @@ -508,11 +508,17 @@ sed -i -e 's/`git ls-files`/`find -type f`/' \\\ fi \ %{_bindir}/gem build %{__ruby_module_name}.gemspec -%gem_install \ +%gem_install(d) \ %{_bindir}/gem install %{__ruby_module_name}-%{version}.gem --local \\\ --env-shebang --rdoc --ri --force --ignore-dependencies \\\ --install-dir %{buildroot}%{ruby_gemdir} \\\ --bindir %{buildroot}%{_bindir} \ + %{-d: \ + mkdir -p %{buildroot}%{ruby_vendorarchdir} \ + for f in $(find %{buildroot}%{ruby_gemdir}/gems/%{__ruby_module_name}-%{version}/ext -name *.h); do \ + mv $f %{buildroot}%{ruby_vendorarchdir}/ \ + done \ + } \ (cd %{buildroot}%{ruby_gemdir}/gems/%{__ruby_module_name}-%{version}; \\\ for f in $(find -name '*.so'); do \\\ dest=${f##./ext/}; \\\ diff --git a/configure.ac b/configure.ac index cf393a8..976123d 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # $Id: configure.ac 271266 2010-11-04 10:43:28Z fwang $ AC_PREREQ(2.59) -AC_INIT(rpm-mageia-setup, 1.189, philippem@mageia.org) +AC_INIT(rpm-mageia-setup, 1.190, philippem@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability no-dist-gzip dist-xz) AC_CONFIG_SRCDIR -- cgit v1.2.1