From 469c0e5d2ff0f8d7060e77f512a4d47310fb8c75 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:31:53 +0000 Subject: [PATCH 1/6] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb4f8f3..cee77f3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ 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 +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)) From 8dcff4ac8a9ac5ccac58aa3e817861b74f4292d9 Mon Sep 17 00:00:00 2001 From: Mamoru Tasaka Date: Wed, 9 Dec 2009 16:34:17 +0000 Subject: [PATCH 2/6] - 0.7.0 --- .cvsignore | 2 +- rubygem-rake-compiler.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index d5b8d1c..5928b4f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -rake-compiler-0.6.0.gem +rake-compiler-0.7.0.gem diff --git a/rubygem-rake-compiler.spec b/rubygem-rake-compiler.spec index 23d0355..205be3a 100644 --- a/rubygem-rake-compiler.spec +++ b/rubygem-rake-compiler.spec @@ -6,7 +6,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} -Version: 0.6.0 +Version: 0.7.0 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -15,9 +15,9 @@ 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) +BuildRequires: ruby(rubygems) >= 1.3.5 Requires: ruby(abi) = %{rubyabi} -Requires: ruby(rubygems) +Requires: ruby(rubygems) >= 1.3.5 Requires: rubygem(rake) >= 0.8.3 BuildArch: noarch Provides: rubygem(%{gemname}) = %{version}-%{release} @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Thu Dec 10 2009 Mamoru Tasaka - 0.7.0-1 +- 0.7.0 + * Wed Jul 29 2009 Mamoru Tasaka - 0.6.0-1 - 0.6.0 diff --git a/sources b/sources index bdfb6a8..9df4993 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9a8edefde6ca9df9222f6cfe3973c130 rake-compiler-0.6.0.gem +bc8dbdadac79b6a30cf3aa702a3a1ead rake-compiler-0.7.0.gem From 588b9aabf5b0fa11e076a0abab24dcfa76a75647 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 8 May 2010 02:22:19 +0000 Subject: [PATCH 3/6] Initialize branch EL-6 for rubygem-rake-compiler --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..46381b9 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-6 From b38236b90ba9c3f340296b0c09ad2a60de652a04 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 11:54:20 +0000 Subject: [PATCH 4/6] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index cee77f3..0000000 --- a/Makefile +++ /dev/null @@ -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) diff --git a/branch b/branch deleted file mode 100644 index 46381b9..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-6 From c36563252a76660b3a15c70d65e323c4b93bc42f Mon Sep 17 00:00:00 2001 From: Denis Fateyev Date: Thu, 25 Sep 2014 02:09:01 +0600 Subject: [PATCH 5/6] rubygem-rake-compiler: version 0.9.3 --- .gitignore | 1 + rubygem-rake-compiler.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5928b4f..d7d8480 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ rake-compiler-0.7.0.gem +/rake-compiler-0.9.3.gem diff --git a/rubygem-rake-compiler.spec b/rubygem-rake-compiler.spec index 205be3a..47610d9 100644 --- a/rubygem-rake-compiler.spec +++ b/rubygem-rake-compiler.spec @@ -6,7 +6,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} -Version: 0.7.0 +Version: 0.9.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Wed Sep 24 2014 Denis Fateyev - 0.9.3-1 +- Update to 0.9.3 + * Thu Dec 10 2009 Mamoru Tasaka - 0.7.0-1 - 0.7.0 diff --git a/sources b/sources index 9df4993..186dd49 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bc8dbdadac79b6a30cf3aa702a3a1ead rake-compiler-0.7.0.gem +a608beb185f00f9da5abcfde46564b8f rake-compiler-0.9.3.gem From a38273b63eaf7db04e61bfd47f219a866d2866b3 Mon Sep 17 00:00:00 2001 From: Denis Fateyev Date: Thu, 25 Sep 2014 02:43:23 +0600 Subject: [PATCH 6/6] rubygem-rake-compiler: version 0.9.3 --- rubygem-rake-compiler.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rubygem-rake-compiler.spec b/rubygem-rake-compiler.spec index 47610d9..a26d6dc 100644 --- a/rubygem-rake-compiler.spec +++ b/rubygem-rake-compiler.spec @@ -7,7 +7,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} Version: 0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ @@ -84,7 +84,6 @@ rm -rf %{buildroot} %doc %{geminstdir}/README.rdoc %doc %{geminstdir}/LICENSE.txt %doc %{geminstdir}/History.txt -%{geminstdir}/Rakefile %{geminstdir}/cucumber.yml %{geminstdir}/[a-z]*/ %{gemdir}/cache/%{gemname}-%{version}.gem @@ -93,9 +92,14 @@ rm -rf %{buildroot} %files doc %defattr(-,root,root,-) %{gemdir}/doc/%{gemname}-%{version} +%{geminstdir}/Rakefile +%exclude %{geminstdir}/Gemfile %changelog +* Wed Sep 24 2014 Denis Fateyev - 0.9.3-2 +- Build fix, spec cleanup + * Wed Sep 24 2014 Denis Fateyev - 0.9.3-1 - Update to 0.9.3