Created
March 2, 2017 11:49
-
-
Save gnurag/221649225ff0ef2a8469554511a0331f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{?scl:%scl_package rubygem-%{gem_name}} | |
%{!?scl:%global pkg_name %{name}} | |
%global gem_name foreman_maintain | |
%global confdir foreman_maintain | |
%{!?_root_bindir:%global _root_bindir %{_bindir}} | |
%{!?_root_mandir:%global _root_mandir %{_mandir}} | |
%{!?_root_sysconfdir:%global _root_sysconfdir %{_sysconfdir}} | |
Summary: The Foreman/Satellite maintenance tool | |
Name: %{?scl_prefix}rubygem-%{gem_name} | |
Version: 0.0.1 | |
Release: 1%{?dist} | |
Group: Development/Languages | |
License: GPLv3 | |
URL: http://github.com/theforeman/foreman_maintain | |
Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem | |
Requires: %{?scl_prefix_ruby}ruby(release) | |
Requires: %{?scl_prefix_ruby}ruby(rubygems) | |
Requires: %{?scl_prefix}rubygem(clamp) >= 1.0.0 | |
Requires: %{?scl_prefix}rubygem(highline) | |
BuildRequires: %{?scl_prefix_ruby}rubygems-devel | |
BuildRequires: %{?scl_prefix_ruby}ruby(release) | |
BuildRequires: %{?scl_prefix_ruby}ruby(rubygems) | |
BuildRequires: %{?scl_prefix_ruby}ruby | |
BuildArch: noarch | |
Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} | |
%{?scl:Obsoletes: ruby193-rubygem-%{gem_name}} | |
%if 0%{?scl:1} | |
Obsoletes: rubygem-%{gem_name} < 0.0.0-0 | |
%endif | |
%description | |
foreman_maintain aims to provide various features that helps keeping the Foreman/Satellite up and running. It supports multiple versions and subparts of the Foreman infrastructure, including server or smart proxy and is smart enough to provide the right tools for the specific version. | |
%package doc | |
Summary: Documentation for %{pkg_name} | |
Group: Documentation | |
Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release} | |
BuildArch: noarch | |
%{?scl:Obsoletes: ruby193-rubygem-%{gem_name}-doc} | |
%if 0%{?scl:1} | |
Obsoletes: rubygem-%{gem_name}-doc < 0.3.0-2 | |
%endif | |
%description doc | |
Documentation for %{pkg_name} | |
%prep | |
%setup -n %{pkg_name}-%{version} -q -c -T | |
%{?scl:scl enable %{scl} - <<EOF} | |
%gem_install -n %{SOURCE0} | |
%{?scl:EOF} | |
%build | |
%install | |
mkdir -p %{buildroot}%{gem_dir} | |
cp -pa .%{gem_dir}/* \ | |
%{buildroot}%{gem_dir}/ | |
sed -i '1s@/.*@/usr/bin/%{?scl_prefix}ruby@' .%{_bindir}/* | |
mkdir -p %{buildroot}%{_root_bindir} | |
cp -pa .%{_bindir}/* \ | |
%{buildroot}%{_root_bindir}/ | |
find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x | |
%files | |
%dir %{gem_instdir} | |
%{_root_bindir}/foreman-maintain | |
%config(noreplace) %{_root_sysconfdir}/%{confdir}/cli_config.yml | |
%{gem_instdir}/bin | |
%{gem_instdir}/lib | |
%{gem_instdir}/locale | |
%{gem_instdir}/LICENSE | |
%exclude %{gem_cache} | |
%{gem_spec} | |
%files doc | |
%doc %{gem_instdir}/test | |
%doc %{gem_docdir} | |
%doc %{gem_instdir}/config | |
%doc %{gem_instdir}/doc | |
%doc %{gem_instdir}/README.md | |
%changelog | |
* Mon Feb 27 2017 Anurag Patel <[email protected]> 0.0.1-1 | |
- Package foreman_maintain into RPM (#3, [email protected]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment