|
|
@ -1,3 +1,8 @@ |
|
|
|
|
|
|
|
%global _enable_debug_package 0 |
|
|
|
|
|
|
|
%global debug_package %{nil} |
|
|
|
|
|
|
|
%global __os_install_post /usr/lib/rpm/brp-compress %{nil} |
|
|
|
|
|
|
|
%global app_root /srv/entrydns |
|
|
|
|
|
|
|
|
|
|
|
Name: entrydns |
|
|
|
Name: entrydns |
|
|
|
Version: 0.0.2 |
|
|
|
Version: 0.0.2 |
|
|
|
Release: 1%{?dist} |
|
|
|
Release: 1%{?dist} |
|
|
@ -16,9 +21,18 @@ BuildRequires: mysql-devel >= 5.5 |
|
|
|
BuildRequires: rubygems-devel >= 1.8 |
|
|
|
BuildRequires: rubygems-devel >= 1.8 |
|
|
|
BuildRequires: libxml2-devel |
|
|
|
BuildRequires: libxml2-devel |
|
|
|
BuildRequires: libxslt-devel |
|
|
|
BuildRequires: libxslt-devel |
|
|
|
|
|
|
|
BuildRequires: rubygem-rake >= 0.9.6 |
|
|
|
|
|
|
|
#BuildRequires: rubygem-therubyracer >= 0.10.2 |
|
|
|
|
|
|
|
#BuildRequires: rubygem-compass >= 0.12.2 |
|
|
|
|
|
|
|
#BuildRequires: rubygem-sass-rails >= 3.2.5 |
|
|
|
Requires: ruby(abi) = 1.9.1 |
|
|
|
Requires: ruby(abi) = 1.9.1 |
|
|
|
|
|
|
|
Requires: rubygem-nokogiri >= 0.3.3 |
|
|
|
|
|
|
|
Requires: rubygem-tzinfo >= 0.3.29 |
|
|
|
|
|
|
|
Requires: rubygem-erubis >= 2.1.7 |
|
|
|
|
|
|
|
Requires: rubygem-rdoc >= 3.12 |
|
|
|
|
|
|
|
Requires: rubygem-rake >= 0.9.6 |
|
|
|
|
|
|
|
Requires: rubygem-rack >= 1.4.0 |
|
|
|
|
|
|
|
|
|
|
|
%global entrydns_root /srv/%{name} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description |
|
|
|
%description |
|
|
|
EntryDNS delivers a totally free DNS management service for your enjoyment. |
|
|
|
EntryDNS delivers a totally free DNS management service for your enjoyment. |
|
|
@ -31,22 +45,43 @@ DNS needs. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build |
|
|
|
%build |
|
|
|
|
|
|
|
bundle install --path assests_tmp/ --without development test production |
|
|
|
|
|
|
|
bundle exec rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile |
|
|
|
bundle install --path vendor/ --without development test |
|
|
|
bundle install --path vendor/ --without development test |
|
|
|
# clean not required files and directories |
|
|
|
|
|
|
|
rm -rf test doc spec Capfile Gemfile Gemfile.lock Guardfile Rakefile .git |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install |
|
|
|
%install |
|
|
|
rm -rf %{buildroot} |
|
|
|
# clean not required files and directories |
|
|
|
|
|
|
|
rm -rf test doc spec Capfile Gemfile Gemfile.lock Guardfile Rakefile .git \ |
|
|
|
|
|
|
|
.bundle .gitignore .rspec .rvmrc vendor/ruby/1.9.1/cache/* |
|
|
|
|
|
|
|
|
|
|
|
install -p -d -m 0755 %{buildroot}%{entrydns_root} |
|
|
|
find vendor/ -type f -wholename "*/cache/*.gem" -delete |
|
|
|
cp -R . %{buildroot}%{entrydns_root} |
|
|
|
find . -type f -name ".git*" -delete |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
install -p -d -m 0755 %{buildroot}%{app_root} |
|
|
|
|
|
|
|
install -p -d -m 0755 %{buildroot}%{app_root}/log |
|
|
|
|
|
|
|
cp -R app %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R config %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R db %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R lib %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R public %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R script %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp -R vendor %{buildroot}%{app_root} |
|
|
|
|
|
|
|
cp config.ru %{buildroot}%{app_root} |
|
|
|
|
|
|
|
|
|
|
|
%files |
|
|
|
|
|
|
|
%doc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files |
|
|
|
|
|
|
|
%{app_root}/app |
|
|
|
|
|
|
|
%{app_root}/config |
|
|
|
|
|
|
|
%{app_root}/db |
|
|
|
|
|
|
|
%{app_root}/lib |
|
|
|
|
|
|
|
%{app_root}/log/ |
|
|
|
|
|
|
|
%{app_root}/public |
|
|
|
|
|
|
|
%{app_root}/script |
|
|
|
|
|
|
|
%{app_root}/vendor |
|
|
|
|
|
|
|
%{app_root}/config.ru |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog |
|
|
|
%changelog |
|
|
|
|
|
|
|
* Tue Feb 5 2013 Vaidas Jablonskis <jablonskis@gmail.com> - 1:0.0.2-1 |
|
|
|
|
|
|
|
- initial build |
|
|
|