rpms/rubygem-mongrel/F-10 import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 rubygem-mongrel.spec, 1.3, 1.4 sources, 1.3, 1.4

Jeroen van Meeuwen kanarip at fedoraproject.org
Sat Nov 8 13:41:34 UTC 2008


Author: kanarip

Update of /cvs/pkgs/rpms/rubygem-mongrel/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10499/F-10

Modified Files:
	.cvsignore rubygem-mongrel.spec sources 
Added Files:
	import.log 
Log Message:
1.1.5-1 (new upstream version)


--- NEW FILE import.log ---
rubygem-mongrel-1_1_5-1_fc9:F-10:rubygem-mongrel-1.1.5-1.fc9.src.rpm:1226151643


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/rubygem-mongrel/F-10/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore	5 Sep 2007 19:30:04 -0000	1.3
+++ .cvsignore	8 Nov 2008 13:41:03 -0000	1.4
@@ -1,2 +1,2 @@
-mongrel-1.0.1.gem
-cgi_multipart_eof_fix-2.3.gem
+cgi_multipart_eof_fix-2.5.0.gem
+mongrel-1.1.5.gem


Index: rubygem-mongrel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/rubygem-mongrel/F-10/rubygem-mongrel.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rubygem-mongrel.spec	20 Feb 2008 02:01:57 -0000	1.3
+++ rubygem-mongrel.spec	8 Nov 2008 13:41:03 -0000	1.4
@@ -4,18 +4,21 @@
 %define geminstdir %{gemdir}/gems/%{gemname}-%{version}
 %define ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']")
 
+# Shortcuts for Cgi_Multipart_Eof_Fix (cmef)
+%define cmef_version 2.5.0
+
 Summary: A small fast HTTP library and server for Ruby apps
 Name: rubygem-%{gemname}
 
-Version: 1.0.1
-Release: 6%{?dist}
+Version: 1.1.5
+Release: 1%{?dist}
 Group: Development/Libraries
 # The entire source code is (GPLv2+ or Ruby) except for the code in
-# cgi_multipart_eof_fix-2.3.gem  which is AFL
+# cgi_multipart_eof_fix-2.5.0.gem  which is AFL
 License: (GPLv2+ or Ruby) and AFL
 URL: http://mongrel.rubyforge.org
 Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
-Source1: http://gems.rubyforge.org/gems/cgi_multipart_eof_fix-2.3.gem
+Source1: http://gems.rubyforge.org/gems/cgi_multipart_eof_fix-%{cmef_version}.gem
 BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
 Requires: rubygems
 BuildRequires: ruby-devel
@@ -29,7 +32,6 @@
 A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa
 apps.
 
-
 %prep
 
 %build
@@ -46,14 +48,19 @@
 strip %{buildroot}%{ruby_sitearch}/http11.so
 chmod 0755 %{buildroot}%{ruby_sitearch}/http11.so
 rm -rf %{buildroot}%{geminstdir}/ext
+rm -rf %{buildroot}/%{geminstdir}/.require_paths
 mkdir -p %{buildroot}/%{_bindir}
-mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir}
-rmdir %{buildroot}%{gemdir}/bin
+
+# %{geminstdir}/bin/mongrel_rails does not have a shebang, but it doesn't have to (it's loaded by %{_bindir}/mongrel_rails
+chmod a-x %{buildroot}/%{geminstdir}/bin/mongrel_rails
+mv %{buildroot}/%{gemdir}/bin/mongrel_rails %{buildroot}/%{_bindir}/mongrel_rails
+rm -rf %{buildroot}/%{gemdir}/bin
+
 sed 's.#!/usr/local/bin/ruby.#!/usr/bin/env ruby.' -i %{buildroot}%{geminstdir}/examples/webrick_compare.rb
-chmod a+x %{buildroot}%{geminstdir}/examples/webrick_compare.rb 
-chmod a+x %{buildroot}%{geminstdir}/examples/camping/blog.rb 
+chmod a+x %{buildroot}%{geminstdir}/examples/webrick_compare.rb
+chmod a+x %{buildroot}%{geminstdir}/examples/camping/blog.rb
 chmod a+x %{buildroot}%{geminstdir}/examples/camping/tepee.rb
-chmod a+x %{buildroot}%{gemdir}/gems/cgi_multipart_eof_fix-2.3/test/cgi_multipart_eof_fix_test.rb
+chmod a+x %{buildroot}%{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/test/*.rb
 
 %clean
 %{__rm} -rf %{buildroot}
@@ -64,33 +71,41 @@
 %{ruby_sitearch}/http11.so
 %dir %{geminstdir}
 %doc %{gemdir}/doc/%{gemname}-%{version}
+%doc %{geminstdir}/COPYING
+%doc %{geminstdir}/CHANGELOG
+%doc %{geminstdir}/README
+%doc %{geminstdir}/LICENSE
+%doc %{geminstdir}/Manifest
+%doc %{geminstdir}/TODO
+%doc %{geminstdir}/%{gemname}.gemspec
+%{geminstdir}/mongrel-public_cert.pem
 %{geminstdir}/bin/
-%{geminstdir}/doc/
+#%{geminstdir}/doc/
 %{geminstdir}/examples/
 %{geminstdir}/lib/
-%{geminstdir}/Rakefile
+#%{geminstdir}/Rakefile
 %{geminstdir}/setup.rb
 %{geminstdir}/test/
 %{geminstdir}/tools/
-%doc %{geminstdir}/README
-%doc %{geminstdir}/LICENSE
-%doc %{geminstdir}/COPYING
 %{gemdir}/cache/%{gemname}-%{version}.gem
 %{gemdir}/specifications/%{gemname}-%{version}.gemspec
 
-%dir %{gemdir}/gems/cgi_multipart_eof_fix-2.3/
-%{gemdir}/gems/cgi_multipart_eof_fix-2.3/lib/
-%{gemdir}/gems/cgi_multipart_eof_fix-2.3/test/
-%doc %{gemdir}/gems/cgi_multipart_eof_fix-2.3/CHANGELOG
-%doc %{gemdir}/gems/cgi_multipart_eof_fix-2.3/LICENSE
-%doc %{gemdir}/gems/cgi_multipart_eof_fix-2.3/Manifest
-%doc %{gemdir}/gems/cgi_multipart_eof_fix-2.3/README
-%doc %{gemdir}/gems/cgi_multipart_eof_fix-2.3/cgi_multipart_eof_fix.gemspec
-%doc %{gemdir}/doc/cgi_multipart_eof_fix-2.3
-%{gemdir}/cache/cgi_multipart_eof_fix-2.3.gem
-%{gemdir}/specifications/cgi_multipart_eof_fix-2.3.gemspec
+%dir %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/
+%{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/lib/
+%{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/test/
+%doc %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/CHANGELOG
+%doc %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/LICENSE
+%doc %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/Manifest
+%doc %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/README
+%doc %{gemdir}/gems/cgi_multipart_eof_fix-%{cmef_version}/cgi_multipart_eof_fix.gemspec
+%doc %{gemdir}/doc/cgi_multipart_eof_fix-%{cmef_version}
+%{gemdir}/cache/cgi_multipart_eof_fix-%{cmef_version}.gem
+%{gemdir}/specifications/cgi_multipart_eof_fix-%{cmef_version}.gemspec
 
 %changelog
+* Sat Nov 08 2008 Jeroen van Meeuwen <j.van.meeuwen at ogd.nl> - 1.1.5-1
+- New upstream version (bugfixes)
+
 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 1.0.1-6
 - Autorebuild for GCC 4.3
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/rubygem-mongrel/F-10/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources	5 Sep 2007 19:30:04 -0000	1.3
+++ sources	8 Nov 2008 13:41:03 -0000	1.4
@@ -1,2 +1,2 @@
-e3caa5d827d0d4bf03acc7245b71694f  mongrel-1.0.1.gem
-fca23cd955342af53f590c10c06ec87f  cgi_multipart_eof_fix-2.3.gem
+4f8d588e53755d5c86b0b61187e6d996  cgi_multipart_eof_fix-2.5.0.gem
+a37617eb48f0932cc32143b2d76c0d12  mongrel-1.1.5.gem




More information about the fedora-extras-commits mailing list