summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Fojtik <mfojtik@redhat.com>2010-10-19 12:58:07 +0200
committerMichal fojtik <mfojtik@redhat.com>2010-10-19 12:58:07 +0200
commit7d96ecb5ca11a8894e316d1d564408ba6a1acb9a (patch)
treecb6bdf6c0f038562afc899fe79be6bc9735f59a0
parentd2773ab8906ae7e2a3b96908bf86f3384329f4b0 (diff)
downloadrubygem-typhoeus-7d96ecb5ca11a8894e316d1d564408ba6a1acb9a.tar.gz
rubygem-typhoeus-7d96ecb5ca11a8894e316d1d564408ba6a1acb9a.tar.xz
rubygem-typhoeus-7d96ecb5ca11a8894e316d1d564408ba6a1acb9a.zip
Initial import
-rw-r--r--.gitignore1
-rw-r--r--rubygem-typhoeus.spec151
-rw-r--r--sources1
3 files changed, 153 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..ad47994 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/typhoeus-0.1.31.gem
diff --git a/rubygem-typhoeus.spec b/rubygem-typhoeus.spec
new file mode 100644
index 0000000..27a2bdc
--- /dev/null
+++ b/rubygem-typhoeus.spec
@@ -0,0 +1,151 @@
+%global ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"] ')
+%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
+%global gemname typhoeus
+%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
+%global rubyabi 1.8
+
+Summary: A library for interacting with web services at blinding speed
+Name: rubygem-%{gemname}
+Version: 0.1.31
+Release: 3%{?dist}
+Group: Development/Languages
+License: MIT
+URL: http://github.com/pauldix/typhoeus
+Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
+Patch0: %{name}-gcc-flags-fix.patch
+Requires: rubygems
+Requires: ruby(abi) = %{rubyabi}
+Requires: rubygem(rack)
+BuildRequires: ruby(abi) = %{rubyabi}
+BuildRequires: rubygems
+BuildRequires: rubygem(rspec)
+BuildRequires: rubygem(rake)
+BuildRequires: rubygem(rack)
+BuildRequires: rubygem(diff-lcs)
+BuildRequires: rubygem(json)
+BuildRequires: ruby-devel
+BuildRequires: libcurl-devel
+Provides: rubygem(%{gemname}) = %{version}
+
+%description
+Like a modern code version of the mythical beast with 100 serpent heads,
+Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling
+logic.
+
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation
+Requires:%{name} = %{version}-%{release}
+
+%description doc
+Documentation for %{name}
+
+%prep
+%setup -q -c -T
+mkdir -p ./%{gemdir}
+export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
+gem install \
+ --local \
+ --install-dir ./%{gemdir} \
+ -V --force --rdoc \
+ %{SOURCE0}
+pushd .%{geminstdir}
+%patch0
+popd
+
+%build
+pushd .%{geminstdir}/ext/%{gemname}
+(%_bindir/ruby extconf.rb && make clean all)
+popd
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}%{gemdir}
+cp -a ./%{gemdir}/* %{buildroot}%{gemdir}
+mkdir -p %{buildroot}%{ruby_sitearch}/%{gemname}
+mv -f %{buildroot}%{geminstdir}/ext/%{gemname}/*.so %{buildroot}%{ruby_sitearch}/%{gemname}
+rm -rf %{buildroot}%{geminstdir}/ext
+find %{buildroot}/%{geminstdir} -name .gitignore | xargs rm -f
+
+# remove all shebang, set permission to 0644 (mtasaka)
+for f in $(find %{buildroot}%{geminstdir} -name \*.rb)
+do
+ sed -i -e '/^#!/d' $f
+ chmod 0644 $f
+done
+
+%check
+pushd .%{geminstdir}
+ln -sf %{buildroot}%{ruby_sitearch}/%{gemname}/native.so lib/%{gemname}/native.so
+
+NEEDSKIP=""
+for needskip in \
+ spec/%{gemname}/request_spec.rb \
+ spec/%{gemname}/hydra_spec.rb \
+ spec/%{gemname}/remote_spec.rb \
+ spec/%{gemname}/multi_spec.rb \
+ spec/%{gemname}/easy_spec.rb \
+ spec/%{gemname}/remote_proxy_object_spec.rb
+do
+ NEEDSKIP="$NEEDSKIP $needskip"
+done
+
+for needskip in $NEEDSKIP
+do
+ mv $needskip ${needskip}.save
+done
+
+rake spec --trace
+
+for needskip in $NEEDSKIP
+do
+ mv ${needskip}.save $needskip
+done
+
+rm -f lib/%{gemname}/native.so
+
+popd
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-, root, root, -)
+%dir %{geminstdir}
+%dir %{ruby_sitearch}/%{gemname}
+%{geminstdir}/lib
+%{ruby_sitearch}/%{gemname}/*.so
+%doc %{geminstdir}/VERSION
+%doc %{geminstdir}/README.textile
+%doc %{geminstdir}/CHANGELOG.markdown
+%{gemdir}/cache/%{gemname}-%{version}.gem
+%{gemdir}/specifications/%{gemname}-%{version}.gemspec
+
+%files doc
+%defattr(-, root, root, -)
+%{geminstdir}/Rakefile
+%{geminstdir}/spec
+%{geminstdir}/benchmarks
+%{geminstdir}/examples
+%{geminstdir}/profilers
+%{geminstdir}/%{gemname}.gemspec
+%{gemdir}/doc/%{gemname}-%{version}
+
+%changelog
+* Thu Oct 14 2010 Michal Fojtik <mfojtik@redhat.com> - 0.1.31-3
+- Preserved failing test files (thx. to mtasaka)
+- Fixed macros usage
+- Replaced path with macro
+- Removed libcurl from requires
+
+* Wed Oct 13 2010 Michal Fojtik <mfojtik@redhat.com> - 0.1.31-2
+- Fixed License to MIT
+- Fixed libcurl BuildRequire
+- Gem now recompiles with correct GCC flags
+- Directory issues should be fixed
+- Removed -devel subpackage
+- Added tests
+
+
+* Wed Oct 06 2010 Michal Fojtik <mfojtik@redhat.com> - 0.1.31-1
+- Initial package
diff --git a/sources b/sources
index e69de29..eed2ed7 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f99f3c63d11d6779306b157ab9db3e1d typhoeus-0.1.31.gem