Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
Mamoru Tasaka
06d324804b 0.7.8 2011-04-30 04:40:24 +09:00
Mamoru Tasaka
b2cf4a15ec 0.7.7 2011-04-04 23:47:19 +09:00
Mamoru Tasaka
3c02a63824 - 0.7.6 2011-02-07 02:27:51 +09:00
Mamoru Tasaka
16ade5b91d Add source 2010-12-07 03:44:42 +09:00
Mamoru Tasaka
d5c42d38df - 0.7.5
- Move more files to -doc
- Now needs rubygem(isolate) and some other rubygem(foo) for BR
2010-12-07 03:43:22 +09:00
Mamoru Tasaka
4c0165cbd7 * Wed Aug 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.1-1
- 0.7.1
2010-08-11 02:06:30 +09:00
Fedora Release Engineering
c5d63138ec dist-git conversion 2010-07-29 11:54:16 +00:00
Jesse Keating
47c41319fa Initialize branch F-13 for rubygem-rake-compiler 2010-02-17 03:06:53 +00:00
5 changed files with 59 additions and 27 deletions

View file

@ -1 +0,0 @@
rake-compiler-0.7.0.gem

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
rake-compiler-0.7.0.gem
rake-compiler-0.7.1.gem
/rake-compiler-0.7.5.gem
/rake-compiler-0.7.6.gem
/rake-compiler-0.7.7.gem
/rake-compiler-0.7.8.gem

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: rubygem-rake-compiler
# $Id$
NAME := rubygem-rake-compiler
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -6,16 +6,20 @@
Summary: Rake-based Ruby C Extension task generator
Name: rubygem-%{gemname}
Version: 0.7.0
Version: 0.7.8
Release: 1%{?dist}
Group: Development/Languages
License: MIT
URL: http://rake-compiler.rubyforge.org/
Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ruby(abi) = %{rubyabi}
BuildRequires: ruby(rubygems) >= 1.3.5
BuildRequires: rubygem(cucumber)
BuildRequires: rubygem(isolate)
BuildRequires: rubygem(rake)
BuildRequires: rubygem(rcov)
BuildRequires: rubygem(rspec)
Requires: ruby(abi) = %{rubyabi}
Requires: ruby(rubygems) >= 1.3.5
Requires: rubygem(rake) >= 0.8.3
@ -74,28 +78,72 @@ mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir}
rmdir %{buildroot}%{gemdir}/bin
%check
pushd .%{geminstdir}
# Modify Isolate file
cp -p Isolate{,.orig}
sed -i -e 's|gem |# gem|' Isolate
# cucumber 0.10.0 needs fixing for newer rake (0.9.0 beta5)
# rake aborted!
# undefined method `desc' for #<Cucumber::Rake::Task:0xb742ebb0>
# rake spec
ruby -Ilib %{_bindir}/spec spec/
# back to the original
mv -f Isolate{.orig,}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_bindir}/rake-compiler
%dir %{geminstdir}
%doc %{geminstdir}/README.rdoc
%doc %{geminstdir}/LICENSE.txt
%doc %{geminstdir}/History.txt
%{geminstdir}/Rakefile
%{geminstdir}/cucumber.yml
%{geminstdir}/[a-z]*/
%{geminstdir}/bin/
%{geminstdir}/features/
%{geminstdir}/lib/
%{geminstdir}/tasks/
%{gemdir}/cache/%{gemname}-%{version}.gem
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
%files doc
%defattr(-,root,root,-)
%{gemdir}/doc/%{gemname}-%{version}
%{geminstdir}/Isolate
%{geminstdir}/Rakefile
%{geminstdir}/spec/
%changelog
* Sat Apr 30 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.7.8-1
- 0.7.8
* Mon Apr 4 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.7.7-1
- 0.7.7
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Feb 7 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.6-1
- 0.7.6
* Tue Nov 30 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.5-2
- 0.7.5
- Move more files to -doc
- Now needs rubygem(isolate) and some other rubygem(foo) for BR
* Wed Aug 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.1-1
- 0.7.1
* Thu Dec 10 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.0-1
- 0.7.0

View file

@ -1 +1 @@
bc8dbdadac79b6a30cf3aa702a3a1ead rake-compiler-0.7.0.gem
26d6fb9fb857af9324e4850dbf99cfab rake-compiler-0.7.8.gem