2011-05-30 08:11:41 +00:00
|
|
|
# Generated from pg-0.11.0.gem by gem2rpm -*- rpm-spec -*-
|
|
|
|
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
|
|
|
%global gemname pg
|
|
|
|
%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
2011-06-03 16:55:57 +00:00
|
|
|
%{!?ruby_sitearch: %global ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')}
|
2011-05-30 08:11:41 +00:00
|
|
|
%global rubyabi 1.8
|
|
|
|
|
|
|
|
Summary: A Ruby interface to the PostgreSQL RDBMS
|
|
|
|
Name: rubygem-%{gemname}
|
|
|
|
Version: 0.11.0
|
2011-06-03 17:26:15 +00:00
|
|
|
Release: 5%{?dist}
|
2011-05-30 08:11:41 +00:00
|
|
|
Group: Development/Languages
|
2011-06-01 14:03:45 +00:00
|
|
|
# Upstream license clarification (https://bitbucket.org/ged/ruby-pg/issue/72/)
|
|
|
|
#
|
|
|
|
# The portions of the code that are BSD-licensed are licensed under
|
|
|
|
# the BSD 3-Clause license; the contents of the BSD file are incorrect.
|
|
|
|
#
|
2011-05-30 08:11:41 +00:00
|
|
|
License: (GPLv2 or Ruby) and BSD
|
|
|
|
URL: http://bitbucket.org/ged/ruby-pg/
|
|
|
|
Source0: http://rubygems.org/gems/%{gemname}-%{version}.gem
|
|
|
|
Requires: ruby(abi) = %{rubyabi}
|
|
|
|
Requires: rubygems
|
|
|
|
Requires: ruby
|
|
|
|
BuildRequires: ruby(abi) = %{rubyabi}
|
|
|
|
BuildRequires: rubygems
|
|
|
|
BuildRequires: ruby ruby-devel
|
|
|
|
BuildRequires: postgresql-server postgresql-devel
|
|
|
|
# Keep requiring rspec-core as long as rubygem(rspec) is provided by RSpec 1.x
|
|
|
|
BuildRequires: rubygem(rspec-core)
|
|
|
|
Provides: rubygem(%{gemname}) = %{version}
|
|
|
|
|
|
|
|
%description
|
|
|
|
This is the extension library to access a PostgreSQL database from Ruby.
|
|
|
|
This library works with PostgreSQL 7.4 and later.
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Documentation
|
2011-06-03 16:55:57 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
2011-05-30 08:11:41 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for %{name}
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -c -T
|
|
|
|
mkdir -p .%{gemdir}
|
2011-06-03 17:26:15 +00:00
|
|
|
export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
|
2011-05-30 08:11:41 +00:00
|
|
|
gem install --local --install-dir .%{gemdir} \
|
2011-06-03 17:26:15 +00:00
|
|
|
-V --force %{SOURCE0}
|
2011-05-30 08:11:41 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}%{gemdir}
|
|
|
|
cp -a .%{gemdir}/* \
|
|
|
|
%{buildroot}%{gemdir}/
|
|
|
|
|
2011-06-03 16:55:57 +00:00
|
|
|
install -d -m0755 %{buildroot}%{ruby_sitearch}
|
|
|
|
mv %{buildroot}%{geminstdir}/lib/pg_ext.so %{buildroot}%{ruby_sitearch}/
|
|
|
|
|
2011-05-31 09:55:01 +00:00
|
|
|
# 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
|
2011-05-30 08:11:41 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
pushd .%{geminstdir}
|
|
|
|
rspec spec
|
|
|
|
popd
|
|
|
|
|
|
|
|
%files
|
2011-06-03 16:55:57 +00:00
|
|
|
%{ruby_sitearch}/pg_ext.so
|
2011-05-30 08:11:41 +00:00
|
|
|
%dir %{geminstdir}
|
|
|
|
%doc %{geminstdir}/BSD
|
|
|
|
%doc %{geminstdir}/GPL
|
|
|
|
%doc %{geminstdir}/LICENSE
|
|
|
|
%{geminstdir}/lib
|
|
|
|
%{gemdir}/cache/%{gemname}-%{version}.gem
|
|
|
|
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc %{gemdir}/doc/%{gemname}-%{version}
|
|
|
|
%doc %{geminstdir}/ChangeLog
|
|
|
|
%doc %{geminstdir}/Contributors
|
|
|
|
%{geminstdir}/Rakefile
|
|
|
|
%{geminstdir}/Rakefile.local
|
|
|
|
%doc %{geminstdir}/README
|
|
|
|
%doc %{geminstdir}/README.ja
|
|
|
|
%doc %{geminstdir}/README.OS_X
|
|
|
|
%doc %{geminstdir}/README.windows
|
|
|
|
%{geminstdir}/rake
|
|
|
|
%{geminstdir}/spec
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2011-06-03 17:26:15 +00:00
|
|
|
* Fri Jun 03 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-5
|
|
|
|
- Pass CFLAGS to extconf.rb.
|
|
|
|
|
2011-06-03 16:55:57 +00:00
|
|
|
* Fri Jun 03 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-4
|
|
|
|
- Binary extension moved into ruby_sitearch dir.
|
|
|
|
- -doc subpackage made architecture independent.
|
|
|
|
|
2011-06-01 14:03:45 +00:00
|
|
|
* Wed Jun 01 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-3
|
2011-06-03 16:55:57 +00:00
|
|
|
- Quoted upstream license clarification.
|
2011-06-01 14:03:45 +00:00
|
|
|
|
2011-05-31 09:55:01 +00:00
|
|
|
* Mon May 30 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-2
|
|
|
|
- Removed/fixed shebang in non-executables.
|
|
|
|
- Removed sources.
|
|
|
|
|
2011-05-30 08:11:41 +00:00
|
|
|
* Thu May 26 2011 Vít Ondruch <vondruch@redhat.com> - 0.11.0-1
|
|
|
|
- Initial package
|