From 153bdc43299a3792c257b706df75660c7ad4ba78 Mon Sep 17 00:00:00 2001 From: Jeroen van Meeuwen Date: Mon, 16 Mar 2009 11:32:43 +0000 Subject: [PATCH] 0.9.1-1 --- .cvsignore | 2 +- import.log | 1 + rubygem-rack.spec | 32 ++++++++++++++++++++++++++------ sources | 2 +- 4 files changed, 29 insertions(+), 8 deletions(-) diff --git a/.cvsignore b/.cvsignore index b2d19c5..63cf102 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -rack-0.4.0.gem +rack-0.9.1.gem diff --git a/import.log b/import.log index 3cfb0a0..55aa17a 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ rubygem-rack-0_4_0-2_fc10:HEAD:rubygem-rack-0.4.0-2.fc10.src.rpm:1228230958 +rubygem-rack-0_9_1-1_fc10:HEAD:rubygem-rack-0.9.1-1.fc10.src.rpm:1237203146 diff --git a/rubygem-rack.spec b/rubygem-rack.spec index abe5daa..dc030a9 100644 --- a/rubygem-rack.spec +++ b/rubygem-rack.spec @@ -4,8 +4,8 @@ Name: rubygem-%{gemname} Summary: Common API for connecting web frameworks, web servers and layers of software -Version: 0.4.0 -Release: 3%{?dist} +Version: 0.9.1 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://rubyforge.org/projects/%{gemname}/ @@ -32,10 +32,27 @@ mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}/%{gemdir} \ --force %{SOURCE0} -chmod 755 %{buildroot}/%{geminstdir}/test/cgi/test.fcgi -chmod 755 %{buildroot}/%{geminstdir}/test/cgi/test.ru -chmod 755 %{buildroot}/%{geminstdir}/test/cgi/test -chmod 755 %{buildroot}/%{geminstdir}/bin/rackup +# Remove backup files +find %{buildroot}/%{geminstdir} -type f -name "*~" -delete + +# Delete zero-length files +find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; + +# Fix anything executable that does not have a shebang +for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do + [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file +done + +# Find files with a shebang that do not have executable permissions +for file in `find %{buildroot}/%{geminstdir} -type f ! -perm /a+x -name "*.rb"`; do + [ ! -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 755 $file +done + +# Find files that have non-standard-executable-perm +find %{buildroot}/%{geminstdir} -type f -perm /g+wx -exec chmod -v g-w {} \; + +# Find files that are not readable +find %{buildroot}/%{geminstdir} -type f ! -perm /go+r -exec chmod -v go+r {} \; # Move %{gemdir}/bin/rackup to %{_bindir} mkdir -p %{buildroot}/%{_bindir} @@ -66,6 +83,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Mon Mar 16 2009 Jeroen van Meeuwen - 0.9.1-1 +- New upstream version + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild diff --git a/sources b/sources index da5f3c8..5141c9b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -193b18066b640a499117107873ab490c rack-0.4.0.gem +355ea9c30e8ff9a1c02ef227b39319b5 rack-0.9.1.gem