|
|
|
@ -4,7 +4,6 @@
|
|
|
|
|
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
|
|
|
|
%global gemname RedCloth
|
|
|
|
|
%global gemlibname redcloth_scan.so
|
|
|
|
|
%global workdir %(mktemp -d)
|
|
|
|
|
%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
|
|
|
|
%global installroot %{buildroot}%{geminstdir}
|
|
|
|
|
%global extensionddir %{installroot}/ext/redcloth_scan/
|
|
|
|
@ -12,7 +11,7 @@
|
|
|
|
|
Summary: Textile parser for Ruby
|
|
|
|
|
Name: rubygem-%{gemname}
|
|
|
|
|
Version: 4.1.9
|
|
|
|
|
Release: 6%{?dist}
|
|
|
|
|
Release: 7%{?dist}
|
|
|
|
|
Group: Development/Languages
|
|
|
|
|
License: MIT
|
|
|
|
|
URL: http://redcloth.org
|
|
|
|
@ -30,6 +29,16 @@ Textile parser for Ruby.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -c -T
|
|
|
|
|
export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
|
|
|
|
|
gem install --local --install-dir .%{gemdir} \
|
|
|
|
|
--force -V --rdoc %{SOURCE0}
|
|
|
|
|
|
|
|
|
|
# To create debuginfo file corretly (workaround for
|
|
|
|
|
# "#line" directive)
|
|
|
|
|
pushd .%{geminstdir}/ext/redcloth_scan
|
|
|
|
|
mkdir ext
|
|
|
|
|
ln -sf .. ext/redcloth_scan
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
@ -40,11 +49,7 @@ install -d -m0755 %{buildroot}%{gemdir}
|
|
|
|
|
install -d -m0755 %{buildroot}%{ruby_sitelib}
|
|
|
|
|
install -d -m0755 %{buildroot}%{ruby_sitearch}
|
|
|
|
|
|
|
|
|
|
export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
|
|
|
|
|
gem install --local --install-dir %{workdir} \
|
|
|
|
|
--force -V --rdoc %{SOURCE0}
|
|
|
|
|
|
|
|
|
|
cp -ra %{workdir}/* %{buildroot}%{gemdir}
|
|
|
|
|
cp -a .%{gemdir}/* %{buildroot}%{gemdir}
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}/%{_bindir}
|
|
|
|
|
|
|
|
|
@ -80,6 +85,9 @@ rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Jul 30 2009 Darryl Pierce <dpierce@redhat.com> - 4.1.9-7
|
|
|
|
|
- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries
|
|
|
|
|
|
|
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.9-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|