111 lines
3.0 KiB
RPMSpec
111 lines
3.0 KiB
RPMSpec
%global gem_name asciidoctor
|
|
%global mandir %{_mandir}/man1
|
|
|
|
Summary: A fast, open source AsciiDoc implementation in Ruby
|
|
Name: rubygem-%{gem_name}
|
|
Version: 0.1.4
|
|
Release: 1%{?dist}
|
|
Group: Development/Languages
|
|
License: MIT
|
|
URL: http://github.com/asciidoctor/asciidoctor
|
|
Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem
|
|
Patch0: asciidoctor-fix-include-uri.patch
|
|
%if 0%{?rhel} > 6 || 0%{?fedora} > 18
|
|
Requires: ruby(release)
|
|
BuildRequires: ruby(release)
|
|
%else
|
|
Requires: ruby(abi) = 1.9.1
|
|
BuildRequires: ruby(abi) = 1.9.1
|
|
%endif
|
|
Requires: ruby(rubygems)
|
|
BuildRequires: rubygems-devel
|
|
BuildRequires: ruby(rubygems)
|
|
BuildRequires: rubygem(coderay)
|
|
BuildRequires: rubygem(erubis)
|
|
BuildRequires: rubygem(minitest)
|
|
BuildRequires: rubygem(nokogiri)
|
|
BuildRequires: rubygem(tilt)
|
|
BuildRequires: rubygem(haml)
|
|
BuildRequires: rubygem(slim)
|
|
BuildArch: noarch
|
|
Provides: rubygem(%{gem_name}) = %{version}
|
|
|
|
%description
|
|
A fast, open source text processor and publishing toolchain, written in Ruby,
|
|
for transforming AsciiDoc markup into HTML 5, DocBook 4.5, DocBook 5.0 and
|
|
custom output formats. The transformation from AsciiDoc to custom output
|
|
formats is performed by running the nodes in the parsed document tree through a
|
|
collection of templates written in a template language supported by Tilt.
|
|
|
|
%package doc
|
|
Summary: Documentation for %{name}
|
|
Group: Documentation
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
Documentation for %{name}
|
|
|
|
%prep
|
|
gem unpack -V %{SOURCE0}
|
|
%setup -q -D -T -n %{gem_name}-%{version}
|
|
gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
|
|
%patch0 -p1
|
|
|
|
%build
|
|
gem build %{gem_name}.gemspec
|
|
%gem_install
|
|
|
|
%check
|
|
LANG=en_US.utf8 testrb -Ilib test/*_test.rb
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
cp -pa .%{gem_dir}/* \
|
|
%{buildroot}%{gem_dir}/
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
cp -pa .%{_bindir}/* \
|
|
%{buildroot}%{_bindir}/
|
|
|
|
mkdir -p %{buildroot}%{mandir}
|
|
cp -pa .%{gem_instdir}/man/*.1 \
|
|
%{buildroot}%{mandir}/
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/%{gem_name}
|
|
cp -pa .%{gem_instdir}/compat/* \
|
|
%{buildroot}%{_sysconfdir}/%{gem_name}/
|
|
|
|
%files
|
|
%dir %{gem_instdir}
|
|
%exclude %{gem_cache}
|
|
%exclude %{gem_instdir}/%{gem_name}.gemspec
|
|
%exclude %{gem_instdir}/Gemfile
|
|
%exclude %{gem_instdir}/Guardfile
|
|
%exclude %{gem_instdir}/Rakefile
|
|
%exclude %{gem_instdir}/compat
|
|
%exclude %{gem_instdir}/man
|
|
%exclude %{gem_instdir}/test
|
|
%{gem_instdir}/CHANGELOG.adoc
|
|
%{gem_instdir}/LICENSE
|
|
%{gem_instdir}/README.*
|
|
%{_bindir}/*
|
|
%{gem_instdir}/bin
|
|
%{gem_libdir}
|
|
%{mandir}/*
|
|
%{_sysconfdir}/%{gem_name}/*
|
|
%{gem_spec}
|
|
|
|
%files doc
|
|
%doc %{gem_docdir}
|
|
|
|
%changelog
|
|
* Sun Sep 22 2013 Dan Allen <dan.j.allen@gmail.com> - 0.1.4-1
|
|
- Update to Asciidoctor 0.1.4
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
* Sat Jun 08 2013 Dan Allen <dan.j.allen@gmail.com> - 0.1.3-1
|
|
- Update to Asciidoctor 0.1.3
|
|
* Fri Mar 01 2013 Dan Allen <dan.j.allen@gmail.com> - 0.1.1-1
|
|
- Initial package
|