Removed/fixed shebang in non-executables.
Removed sources.
This commit is contained in:
parent
68f1407fa9
commit
3916c5aa67
@ -7,7 +7,7 @@
|
||||
Summary: A Ruby interface to the PostgreSQL RDBMS
|
||||
Name: rubygem-%{gemname}
|
||||
Version: 0.11.0
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Group: Development/Languages
|
||||
# License is not that clear: https://bitbucket.org/ged/ruby-pg/issue/72/
|
||||
License: (GPLv2 or Ruby) and BSD
|
||||
@ -51,8 +51,21 @@ mkdir -p %{buildroot}%{gemdir}
|
||||
cp -a .%{gemdir}/* \
|
||||
%{buildroot}%{gemdir}/
|
||||
|
||||
# Remove all build leftovers.
|
||||
rm %{buildroot}%{geminstdir}/ext/*.{so,o,log}
|
||||
# Remove the binary extension sources and build leftovers.
|
||||
rm -rf %{buildroot}%{geminstdir}/ext
|
||||
|
||||
# Remove useless shebangs.
|
||||
sed -i -e '/^#!\/usr\/bin\/env/d' %{buildroot}%{geminstdir}/lib/pg.rb
|
||||
sed -i -e '/^#!rake/d' %{buildroot}%{geminstdir}/Rakefile
|
||||
sed -i -e '/^#!rake/d' %{buildroot}%{geminstdir}/Rakefile.local
|
||||
|
||||
# Fix spec shebangs.
|
||||
# https://bitbucket.org/ged/ruby-pg/issue/74/
|
||||
for file in `find %{buildroot}%{geminstdir}/spec -type f ! -perm /a+x -name "*.rb"`; do
|
||||
[ ! -z "`head -n 1 $file | grep \"^#!/\"`" ] \
|
||||
&& sed -i -e 's/^#!\/usr\/bin\/env spec/#!\/usr\/bin\/env rspec/' $file \
|
||||
&& chmod -v 755 $file
|
||||
done
|
||||
|
||||
%check
|
||||
pushd .%{geminstdir}
|
||||
@ -64,7 +77,6 @@ popd
|
||||
%doc %{geminstdir}/BSD
|
||||
%doc %{geminstdir}/GPL
|
||||
%doc %{geminstdir}/LICENSE
|
||||
%{geminstdir}/ext
|
||||
%{geminstdir}/lib
|
||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
||||
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
||||
@ -84,5 +96,9 @@ popd
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon May 30 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-2
|
||||
- Removed/fixed shebang in non-executables.
|
||||
- Removed sources.
|
||||
|
||||
* Thu May 26 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-1
|
||||
- Initial package
|
||||
|
Loading…
Reference in New Issue
Block a user