|
|
|
%global _enable_debug_package 0
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%global __os_install_post /usr/lib/rpm/brp-compress %{nil}
|
|
|
|
%global entrydns_root /srv/entrydns
|
|
|
|
%global entrydns_user entrydns
|
|
|
|
%global entrydns_group entrydns
|
|
|
|
%global entrydns_systemd_unit unicorn-entrydns.service
|
|
|
|
|
|
|
|
Name: entrydns
|
|
|
|
Version: 0.1.6
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: Free DNS management service for everyone
|
|
|
|
|
|
|
|
Group: Applications/Internet
|
|
|
|
License: AGPL
|
|
|
|
URL: https://entrydns.net
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildArch: x86_64
|
|
|
|
|
|
|
|
BuildRequires: ruby(release) = 2.0.0
|
|
|
|
BuildRequires: rubygems >= 2.0.0
|
|
|
|
BuildRequires: ruby-devel >= 2.0.0
|
|
|
|
BuildRequires: community-mysql-devel >= 5.5
|
|
|
|
BuildRequires: rubygems-devel >= 2.0
|
|
|
|
BuildRequires: libxml2-devel
|
|
|
|
BuildRequires: libxslt-devel
|
|
|
|
BuildRequires: community-mysql-server
|
|
|
|
|
|
|
|
Requires: ruby(release) = 2.0.0
|
|
|
|
Requires: memcached >= 1.4.10
|
|
|
|
Requires: nodejs >= 0.10.0
|
|
|
|
Requires: rubygem-bundler >= 1.1.4
|
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
|
|
|
|
|
|
|
Provides: entrydns = %{version}
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
EntryDNS delivers a totally free DNS management service for your enjoyment.
|
|
|
|
Our aim is to provide a friendly and caring, yet powerful service for your
|
|
|
|
DNS needs.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
# required config file for assets pre-compilation
|
|
|
|
cp config/database.mysql.sample.yml config/database.yml
|
|
|
|
cp config/settings.sample.yml config/settings.yml
|
|
|
|
bundle install --deployment --without development test
|
|
|
|
|
|
|
|
# pre-compile assets
|
|
|
|
bundle exec rake RAILS_ENV=production db:create db:schema:load
|
|
|
|
bundle exec rake RAILS_ENV=production assets:precompile
|
|
|
|
|
|
|
|
# fix wrong sheebang for unicorn
|
|
|
|
%if 0%{?fedora} >= 17
|
|
|
|
find vendor/bundle/ruby/*/gems -type f -wholename '*/bin/unicorn*' | xargs \
|
|
|
|
grep -rl '/this/will/be/overwritten/or/wrapped/anyways/do/not/worry/ruby' | \
|
|
|
|
xargs sed -i -e 's|/this/will/be/overwritten/or/wrapped/anyways/do/not/worry/ruby|/usr/bin/env ruby|'
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
# clean up not required files and directories
|
|
|
|
rm -rf test doc spec Capfile Guardfile .git .gitignore .rspec .rvmrc config/database.yml
|
|
|
|
|
|
|
|
find vendor/ -type f -wholename "*/cache/*.gem" -delete
|
|
|
|
find . -type f -name ".git*" -delete
|
|
|
|
|
|
|
|
install -p -d -m 0755 %{buildroot}%{_sysconfdir}/%{name}
|
|
|
|
install -p -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
|
|
|
|
install -p -d %{buildroot}%{_var}/log
|
|
|
|
install -p -d -m 0750 %{buildroot}%{_var}/log/%{name}
|
|
|
|
install -p -d -m 0755 %{buildroot}/run/%{name}
|
|
|
|
install -p -d -m 0755 %{buildroot}%{entrydns_root}
|
|
|
|
install -p -d -m 0755 %{buildroot}%{entrydns_root}/log
|
|
|
|
install -p -d -m 0755 %{buildroot}%{entrydns_root}/tmp
|
|
|
|
install -p -d -m 0755 %{buildroot}%{_unitdir}
|
|
|
|
install -p -d -m 0755 %{buildroot}%{_tmpfilesdir}
|
|
|
|
cp -R app %{buildroot}%{entrydns_root}
|
|
|
|
cp -R config %{buildroot}%{entrydns_root}
|
|
|
|
cp -R db %{buildroot}%{entrydns_root}
|
|
|
|
cp -R lib %{buildroot}%{entrydns_root}
|
|
|
|
cp -R public %{buildroot}%{entrydns_root}
|
|
|
|
cp -R script %{buildroot}%{entrydns_root}
|
|
|
|
cp -R vendor %{buildroot}%{entrydns_root}
|
|
|
|
cp -R .bundle %{buildroot}%{entrydns_root}
|
|
|
|
cp config.ru %{buildroot}%{entrydns_root}
|
|
|
|
cp Gemfile %{buildroot}%{entrydns_root}
|
|
|
|
cp Gemfile.lock %{buildroot}%{entrydns_root}
|
|
|
|
cp Rakefile %{buildroot}%{entrydns_root}
|
|
|
|
cp dist/fedora/etc/sysconfig/unicorn-entrydns %{buildroot}%{_sysconfdir}/sysconfig
|
|
|
|
cp dist/fedora/etc/%{name}/unicorn.conf %{buildroot}%{_sysconfdir}/%{name}
|
|
|
|
cp dist/fedora%{_unitdir}/%{entrydns_systemd_unit} %{buildroot}%{_unitdir}
|
|
|
|
cp dist/fedora/etc/tmpfiles.d/%{name}.conf %{buildroot}%{_tmpfilesdir}
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, %{entrydns_user}, 0755)
|
|
|
|
%{entrydns_root}/app
|
|
|
|
%attr(0750, root, %{entrydns_user}) %{entrydns_root}/config
|
|
|
|
%attr(0770, root, %{entrydns_user}) %{entrydns_root}/db
|
|
|
|
%{entrydns_root}/lib
|
|
|
|
%dir %attr(0770, root, %{entrydns_user}) %{entrydns_root}/log/
|
|
|
|
%dir %attr(0770, root, %{entrydns_user}) %{entrydns_root}/tmp/
|
|
|
|
%{entrydns_root}/public
|
|
|
|
%{entrydns_root}/script
|
|
|
|
%{entrydns_root}/vendor
|
|
|
|
%{entrydns_root}/.bundle
|
|
|
|
%{entrydns_root}/config.ru
|
|
|
|
%{entrydns_root}/Gemfile
|
|
|
|
%{entrydns_root}/Gemfile.lock
|
|
|
|
%{entrydns_root}/Rakefile
|
|
|
|
%attr(0644, root, root) %config(noreplace) %{_sysconfdir}/sysconfig/unicorn-entrydns
|
|
|
|
%attr(0644, root, root) %config(noreplace) %{_sysconfdir}/%{name}/unicorn.conf
|
|
|
|
%{_unitdir}/%{entrydns_systemd_unit}
|
|
|
|
%attr(-, %{entrydns_user}, %{entrydns_group}) %{_var}/log/%{name}
|
|
|
|
%dir /run/%{name}
|
|
|
|
%{_tmpfilesdir}/%{name}.conf
|
|
|
|
|
|
|
|
|
|
|
|
%pre
|
|
|
|
getent group %{entrydns_group} >/dev/null || groupadd -r %{entrydns_group}
|
|
|
|
getent passwd %{entrydns_user} >/dev/null || \
|
|
|
|
useradd -r -g %{entrydns_group} -d %{entrydns_root} -s /sbin/nologin \
|
|
|
|
-c "EntryDNS user" %{entrydns_user}
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
%systemd_post %{entrydns_systemd_unit}
|
|
|
|
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun %{entrydns_systemd_unit}
|
|
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%systemd_postun_with_restart %{entrydns_systemd_unit}
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Sun Sep 01 2013 Vaidas Jablonskis <jablonskis@gmail.com> - 1:0.1.0-1
|
|
|
|
- Major upgrade to support ruby 2.0 and more.
|
|
|
|
|
|
|
|
* Sat Apr 20 2013 Vaidas Jablonskis <jablonskis@gmail.com> - 1:0.0.6-1
|
|
|
|
- Make sure /run/entrydns is created properly
|
|
|
|
|
|
|
|
* Sun Mar 17 2013 Vaidas Jablonskis <jablonskis@gmail.com> - 1:0.0.5-2
|
|
|
|
- Bumped version to 0.0.5
|
|
|
|
- Fixed pid directory permissions
|
|
|
|
|
|
|
|
* Tue Feb 5 2013 Vaidas Jablonskis <jablonskis@gmail.com> - 1:0.0.2-1
|
|
|
|
- initial test build
|