Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a38273b63e | ||
|
|
c36563252a | ||
|
|
b38236b90b | ||
|
|
588b9aabf5 | ||
|
|
8dcff4ac8a | ||
|
|
469c0e5d2f |
5 changed files with 18 additions and 28 deletions
|
|
@ -1 +0,0 @@
|
||||||
rake-compiler-0.6.0.gem
|
|
||||||
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
rake-compiler-0.7.0.gem
|
||||||
|
/rake-compiler-0.9.3.gem
|
||||||
21
Makefile
21
Makefile
|
|
@ -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 $$/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)
|
|
||||||
|
|
@ -6,8 +6,8 @@
|
||||||
|
|
||||||
Summary: Rake-based Ruby C Extension task generator
|
Summary: Rake-based Ruby C Extension task generator
|
||||||
Name: rubygem-%{gemname}
|
Name: rubygem-%{gemname}
|
||||||
Version: 0.6.0
|
Version: 0.9.3
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://rake-compiler.rubyforge.org/
|
URL: http://rake-compiler.rubyforge.org/
|
||||||
|
|
@ -15,9 +15,9 @@ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildRequires: ruby(abi) = %{rubyabi}
|
BuildRequires: ruby(abi) = %{rubyabi}
|
||||||
BuildRequires: ruby(rubygems)
|
BuildRequires: ruby(rubygems) >= 1.3.5
|
||||||
Requires: ruby(abi) = %{rubyabi}
|
Requires: ruby(abi) = %{rubyabi}
|
||||||
Requires: ruby(rubygems)
|
Requires: ruby(rubygems) >= 1.3.5
|
||||||
Requires: rubygem(rake) >= 0.8.3
|
Requires: rubygem(rake) >= 0.8.3
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Provides: rubygem(%{gemname}) = %{version}-%{release}
|
Provides: rubygem(%{gemname}) = %{version}-%{release}
|
||||||
|
|
@ -84,7 +84,6 @@ rm -rf %{buildroot}
|
||||||
%doc %{geminstdir}/README.rdoc
|
%doc %{geminstdir}/README.rdoc
|
||||||
%doc %{geminstdir}/LICENSE.txt
|
%doc %{geminstdir}/LICENSE.txt
|
||||||
%doc %{geminstdir}/History.txt
|
%doc %{geminstdir}/History.txt
|
||||||
%{geminstdir}/Rakefile
|
|
||||||
%{geminstdir}/cucumber.yml
|
%{geminstdir}/cucumber.yml
|
||||||
%{geminstdir}/[a-z]*/
|
%{geminstdir}/[a-z]*/
|
||||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
%{gemdir}/cache/%{gemname}-%{version}.gem
|
||||||
|
|
@ -93,9 +92,20 @@ rm -rf %{buildroot}
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{gemdir}/doc/%{gemname}-%{version}
|
%{gemdir}/doc/%{gemname}-%{version}
|
||||||
|
%{geminstdir}/Rakefile
|
||||||
|
%exclude %{geminstdir}/Gemfile
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 24 2014 Denis Fateyev <denis@fateyev.com> - 0.9.3-2
|
||||||
|
- Build fix, spec cleanup
|
||||||
|
|
||||||
|
* Wed Sep 24 2014 Denis Fateyev <denis@fateyev.com> - 0.9.3-1
|
||||||
|
- Update to 0.9.3
|
||||||
|
|
||||||
|
* Thu Dec 10 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.0-1
|
||||||
|
- 0.7.0
|
||||||
|
|
||||||
* Wed Jul 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.6.0-1
|
* Wed Jul 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.6.0-1
|
||||||
- 0.6.0
|
- 0.6.0
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
9a8edefde6ca9df9222f6cfe3973c130 rake-compiler-0.6.0.gem
|
a608beb185f00f9da5abcfde46564b8f rake-compiler-0.9.3.gem
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue