56 lines
1.8 KiB
RPMSpec
56 lines
1.8 KiB
RPMSpec
|
Summary: Simple service discovery for Apache Mesos clusters
|
||
|
Name: surok
|
||
|
Version: 0.7.4.1
|
||
|
Release: 1.fc24
|
||
|
License: BSD
|
||
|
Group: admin
|
||
|
URL: https://github.com/Difrex/surok
|
||
|
Source0: surok.tar.gz
|
||
|
BuildArch: noarch
|
||
|
Requires: python3-requests, python3-dns, python3-memcached, python3-jinja2
|
||
|
# BuildRoot: %{_tmppath}/%{name}-%{release}-root
|
||
|
|
||
|
%description
|
||
|
Simple service discovery for Apache Mesos clusters
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
|
||
|
%install
|
||
|
mkdir -p %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok/__init__.py %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok/logger.py %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok/system.py %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok/discovery.py %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok/templates.py %{buildroot}/opt/surok/surok
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/surok.py %{buildroot}/opt/surok
|
||
|
mkdir -p %{buildroot}/etc/surok/{conf,conf.d,templates}
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/conf/surok.json %{buildroot}/etc/surok/conf
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/conf.d/selfcheck.json %{buildroot}/etc/surok/conf.d
|
||
|
install -p -m 644 /root/rpmbuild/BUILD/surok-%{version}/templates/selfcheck.jj2 %{buildroot}/etc/surok/templates
|
||
|
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
%files
|
||
|
/opt/surok/surok/__init__.py
|
||
|
/opt/surok/surok/logger.py
|
||
|
/etc/surok/conf/surok.json
|
||
|
/opt/surok/surok.py
|
||
|
/opt/surok/surok/discovery.py
|
||
|
/opt/surok/surok/system.py
|
||
|
/opt/surok/surok/templates.py
|
||
|
/etc/surok/conf.d/selfcheck.json
|
||
|
/etc/surok/templates/selfcheck.jj2
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc
|
||
|
|
||
|
|
||
|
%changelog
|
||
|
* Mon Nov 14 2016 Denis Zheleztsov <difrex.punk@gmail.com> -
|
||
|
- Initial build.
|
||
|
|