Compare commits
100 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
676fef02da | ||
|
|
7d621c7694 | ||
|
|
4cfb8d66c8 | ||
|
|
afe13386b4 | ||
|
|
d79662ab8e | ||
|
|
00d8ccc0f9 | ||
|
|
7c189a32f4 | ||
|
|
3219b7c06f | ||
|
|
4e8ae1dda6 | ||
|
|
5588ae61be | ||
|
|
39e081a8a5 | ||
|
|
e92cb84952 | ||
|
|
df952508f7 | ||
|
|
512a00db47 | ||
|
|
ba78ded4db | ||
|
|
3f600724fc | ||
|
|
237aa3b521 | ||
|
|
fc0445e68c | ||
|
|
aa9f2e06e6 | ||
|
|
73b3c1995b | ||
|
|
76af21c270 | ||
|
|
55990dd1f0 | ||
|
|
db107f41c7 | ||
|
|
3fefa6998d | ||
|
|
40d2e1c0a7 | ||
|
|
78c5251a79 | ||
|
|
c645a03053 | ||
|
|
ecb12b4bcb | ||
|
|
070c898fc1 | ||
|
|
34189341c5 | ||
|
|
5e5eb3f079 | ||
|
|
a89e29a1cf | ||
|
|
814a885ef2 | ||
|
|
2afb74ec29 | ||
|
|
700c41e545 | ||
|
|
591c3e33cf | ||
|
|
0dcd0b0081 | ||
|
|
0e5924d07e | ||
|
|
2a2b23504d | ||
|
|
7708a4a62d | ||
|
|
c6dd5c8596 | ||
|
|
513c8abbc3 | ||
|
|
6760fb4c4e | ||
|
|
164714c63f | ||
|
|
d296b62183 | ||
|
|
532f7865bb | ||
|
|
e6a8c9154e | ||
|
|
e0a004fdfd | ||
|
|
6a38109c16 | ||
|
|
0c53338d7a | ||
|
|
955f50d4f5 | ||
|
|
9881ff3bfc | ||
|
|
78399fe4e5 | ||
|
|
0f6772c5de | ||
|
|
60bb9e0d1c | ||
|
|
18b4de20f4 | ||
|
|
b3c60a9881 | ||
|
|
2c83a787c6 | ||
|
|
3718372d2a | ||
|
|
12058f9bb6 | ||
|
|
19ffb0d759 | ||
|
|
134a2c5002 | ||
|
|
a0bec81a82 | ||
|
|
812a5f4d63 | ||
|
|
6385bfd70f | ||
|
|
8ec15d0f08 | ||
|
|
2418a4cca3 | ||
|
|
fa751871ef | ||
|
|
4e75df74ee | ||
|
|
b9a6f06090 | ||
|
|
33eb10b9cd | ||
|
|
13fff1ff3c | ||
|
|
f8544bf58a | ||
|
|
cc9cd50e81 | ||
|
|
46d2973f7f | ||
|
|
e532a5fb48 | ||
|
|
483b1fe77f | ||
|
|
c06e03c65b | ||
|
|
8be9a8091d | ||
|
|
707f7b0f94 | ||
|
|
daa56d7991 | ||
|
|
c0e807f563 | ||
|
|
3dc8d72bdd | ||
|
|
83f7b97fa1 | ||
|
|
50958daa7a | ||
|
|
0fafae907a | ||
|
|
a7f4dc0264 | ||
|
|
5b501a1c44 | ||
|
|
001eec5390 | ||
|
|
48debde8ba | ||
|
|
d7fd13acd3 | ||
|
|
94c9681d6d | ||
|
|
701169b922 | ||
|
|
b99f358a2d | ||
|
|
4124cac3ea | ||
|
|
c895d97fb5 | ||
|
|
3b4b41d4fd | ||
|
|
b0f664fcf4 | ||
|
|
310521a5bc | ||
|
|
5d14ca70d7 |
5 changed files with 369 additions and 52 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,2 +1,2 @@
|
||||||
rake-compiler-0.7.0.gem
|
/rake-compiler-*.gem
|
||||||
rake-compiler-0.7.1.gem
|
/rake-compiler-*-test-missing-files.tar.gz
|
||||||
|
|
|
||||||
35
rake-compiler-create-missing-test-files.sh
Normal file
35
rake-compiler-create-missing-test-files.sh
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "$0 <VERSION>"
|
||||||
|
}
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
if [ $# -lt 1 ] ; then
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
VERSION=$1
|
||||||
|
|
||||||
|
GEMNAME=rake-compiler
|
||||||
|
TMPDIR=$(mktemp -d /tmp/${GEMNAME}-XXXXXX)
|
||||||
|
CURDIR=$(pwd)
|
||||||
|
GITTOPDIR=${GEMNAME}-${VERSION}
|
||||||
|
|
||||||
|
pushd $TMPDIR
|
||||||
|
|
||||||
|
git clone http://github.com/rake-compiler/${GEMNAME} ${GITTOPDIR}
|
||||||
|
cd ${GEMNAME}-$VERSION
|
||||||
|
|
||||||
|
git checkout -b fedora-$VERSION v$VERSION
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
tar czf $CURDIR/${GEMNAME}-${VERSION}-test-missing-files.tar.gz \
|
||||||
|
${GITTOPDIR}/spec/ \
|
||||||
|
|
||||||
|
popd
|
||||||
|
rm -rf $TMPDIR
|
||||||
|
|
||||||
10
rubygem-rake-compiler-0.8.3-spec-with-ruby200.patch
Normal file
10
rubygem-rake-compiler-0.8.3-spec-with-ruby200.patch
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
--- rake-compiler-0.8.3/spec/lib/rake/extensiontask_spec.rb.newver 2013-02-27 23:12:42.000000000 +0900
|
||||||
|
+++ rake-compiler-0.8.3/spec/lib/rake/extensiontask_spec.rb 2013-02-27 23:14:20.000000000 +0900
|
||||||
|
@@ -471,6 +471,7 @@
|
||||||
|
'rbconfig-1.9.1' => '/some/path/version/1.9.1/to/rbconfig.rb',
|
||||||
|
'rbconfig-1.9.2' => '/some/path/version/1.9.1/to/rbconfig.rb',
|
||||||
|
'rbconfig-1.9.3' => '/some/path/version/1.9.1/to/rbconfig.rb',
|
||||||
|
+ 'rbconfig-2.0.0' => '/some/path/version/2.0.0/to/rbconfig.rb',
|
||||||
|
'rbconfig-3.0.0' => '/some/fake/version/3.0.0/to/rbconfig.rb'
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
@ -1,26 +1,34 @@
|
||||||
%global gemname rake-compiler
|
%global gem_name rake-compiler
|
||||||
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
|
||||||
%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
|
||||||
|
|
||||||
%global rubyabi 1.8
|
%undefine _changelog_trimtime
|
||||||
|
|
||||||
Summary: Rake-based Ruby C Extension task generator
|
Summary: Rake-based Ruby C Extension task generator
|
||||||
Name: rubygem-%{gemname}
|
Name: rubygem-%{gem_name}
|
||||||
Version: 0.7.1
|
Version: 1.3.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Group: Development/Languages
|
# SPDX confirmed
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://rake-compiler.rubyforge.org/
|
URL: https://github.com/rake-compiler/rake-compiler
|
||||||
Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
|
Source1: %{gem_name}-%{version}-test-missing-files.tar.gz
|
||||||
|
# Source1 is created by $ bash %%SOURCE2 %%version
|
||||||
|
Source2: %{gem_name}-create-missing-test-files.sh
|
||||||
|
|
||||||
BuildRequires: ruby(abi) = %{rubyabi}
|
Requires: ruby(release)
|
||||||
|
BuildRequires: ruby(release)
|
||||||
BuildRequires: ruby(rubygems) >= 1.3.5
|
BuildRequires: ruby(rubygems) >= 1.3.5
|
||||||
|
BuildRequires: rubygems-devel
|
||||||
|
# %%check
|
||||||
BuildRequires: rubygem(rake)
|
BuildRequires: rubygem(rake)
|
||||||
Requires: ruby(abi) = %{rubyabi}
|
BuildRequires: rubygem(cucumber)
|
||||||
|
BuildRequires: rubygem(rspec) >= 3
|
||||||
|
# cucumber test needs ruby.h header and compiler
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: ruby-devel
|
||||||
Requires: ruby(rubygems) >= 1.3.5
|
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(%{gem_name}) = %{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
rake-compiler aims to help Gem developers while dealing with
|
rake-compiler aims to help Gem developers while dealing with
|
||||||
|
|
@ -36,70 +44,333 @@ clarity of code were lacking.
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: Documentation for %{name}
|
Summary: Documentation for %{name}
|
||||||
Group: Documentation
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
This package contains documentation for %{name}.
|
This package contains documentation for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c -T
|
%setup -q -n %{gem_name}-%{version} -b1
|
||||||
|
mv ../%{gem_name}-%{version}.gemspec .
|
||||||
mkdir -p .%{gemdir}
|
|
||||||
gem install \
|
|
||||||
--local \
|
|
||||||
--install-dir $(pwd)%{gemdir} \
|
|
||||||
--force \
|
|
||||||
--rdoc \
|
|
||||||
-V \
|
|
||||||
%{SOURCE0}
|
|
||||||
|
|
||||||
# rpmlint cosmetic
|
# rpmlint cosmetic
|
||||||
pushd .%{geminstdir}
|
|
||||||
sed -i -e 's|\r||' README.rdoc
|
|
||||||
find ./lib/rake -name \*.rb | xargs sed -i -e '\@/usr/bin/env@d'
|
find ./lib/rake -name \*.rb | xargs sed -i -e '\@/usr/bin/env@d'
|
||||||
popd
|
|
||||||
|
# Permission
|
||||||
|
find . -name \*.rb -print0 | xargs --null chmod 0644
|
||||||
|
|
||||||
|
# be_true -> be_truthy, be_false -> be_falsey
|
||||||
|
grep -rl be_true features/ | xargs sed -i 's|be_true|be_truthy|'
|
||||||
|
grep -rl be_false features/ | xargs sed -i 's|be_false|be_falsey|'
|
||||||
|
|
||||||
|
# Don't strip binary for default. Also kill unneeded "-pipe" from LDFLAGS
|
||||||
|
sed -i tasks/bin/cross-ruby.rake \
|
||||||
|
-e '\@LDFLAGS=@d'
|
||||||
|
|
||||||
|
# Cucumber 7 change
|
||||||
|
sed -i cucumber.yml -e "s|~@java|'not @java'|"
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
gem build %{gem_name}-%{version}.gemspec
|
||||||
|
%gem_install
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{gemdir}
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
|
cp -a .%{_prefix}/* %{buildroot}%{_prefix}/
|
||||||
|
|
||||||
# Move files under %%_bindir
|
rm -f %{buildroot}%{gem_cache}
|
||||||
mkdir -p %{buildroot}/%{_bindir}
|
pushd %{buildroot}%{gem_instdir}
|
||||||
mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir}
|
rm -rf \
|
||||||
|
Gemfile \
|
||||||
rmdir %{buildroot}%{gemdir}/bin
|
Rakefile \
|
||||||
|
appveyor.yml \
|
||||||
|
cucumber.yml \
|
||||||
|
features/ \
|
||||||
|
spec/ \
|
||||||
|
tasks/ \
|
||||||
|
tmp/ \
|
||||||
|
%{nil}
|
||||||
|
popd
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd .%{geminstdir}
|
rm -rf .%{gem_instdir}/spec
|
||||||
rake spec
|
cp -a spec/ .%{gem_instdir}/
|
||||||
|
|
||||||
%clean
|
pushd .%{gem_instdir}
|
||||||
rm -rf %{buildroot}
|
ruby -Ilib -S rspec spec/
|
||||||
|
|
||||||
|
export CUCUMBER_PUBLISH_QUIET=true
|
||||||
|
ruby -Ilib -S cucumber
|
||||||
|
popd
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_bindir}/rake-compiler
|
%{_bindir}/rake-compiler
|
||||||
%dir %{geminstdir}
|
|
||||||
%doc %{geminstdir}/README.rdoc
|
%license %{gem_instdir}/LICENSE.txt
|
||||||
%doc %{geminstdir}/LICENSE.txt
|
|
||||||
%doc %{geminstdir}/History.txt
|
%dir %{gem_instdir}
|
||||||
%{geminstdir}/Rakefile
|
%doc %{gem_instdir}/README.md
|
||||||
%{geminstdir}/cucumber.yml
|
%doc %{gem_instdir}/History.md
|
||||||
%{geminstdir}/[a-z]*/
|
|
||||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
%{gem_instdir}/bin/
|
||||||
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
%{gem_libdir}
|
||||||
|
|
||||||
|
%{gem_spec}
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root,-)
|
%{gem_docdir}
|
||||||
%{gemdir}/doc/%{gemname}-%{version}
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Dec 18 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.1-1
|
||||||
|
- 1.3.1
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Apr 13 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.0-1
|
||||||
|
- 1.3.0
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.9-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 01 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.9-1
|
||||||
|
- 1.2.9
|
||||||
|
|
||||||
|
* Sat Oct 05 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.8-1
|
||||||
|
- 1.2.8
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 1 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.7-1
|
||||||
|
- 1.2.7
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.6-1
|
||||||
|
- 1.2.6
|
||||||
|
|
||||||
|
* Thu Aug 3 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.5-1
|
||||||
|
- 1.2.5
|
||||||
|
|
||||||
|
* Tue Aug 1 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.4-1
|
||||||
|
- 1.2.4
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 30 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.3-1
|
||||||
|
- 1.2.3
|
||||||
|
|
||||||
|
* Thu May 25 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.2-1
|
||||||
|
- 1.2.2
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 21 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.1-1
|
||||||
|
- 1.2.1
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Apr 15 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.0-1
|
||||||
|
- 1.2.0
|
||||||
|
|
||||||
|
* Fri Jan 28 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.9-2
|
||||||
|
- Rebuild for tagging issue
|
||||||
|
|
||||||
|
* Sun Jan 23 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.9-1
|
||||||
|
- 1.1.9
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 18 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.8-1
|
||||||
|
- 1.1.8
|
||||||
|
|
||||||
|
* Fri Jan 14 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.7-2
|
||||||
|
- Fix for cucumber 7 syntax change
|
||||||
|
|
||||||
|
* Tue Jan 4 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.7-1
|
||||||
|
- 1.1.7
|
||||||
|
|
||||||
|
* Sun Dec 12 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.6-1
|
||||||
|
- 1.1.6
|
||||||
|
|
||||||
|
* Fri Dec 10 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.3-1
|
||||||
|
- 1.1.3
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Aug 9 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.1-1
|
||||||
|
- 1.1.1
|
||||||
|
- Don't strip binary for default, and kill unneeded "-pipe" from LDFLAGS
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 26 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.1.0-1
|
||||||
|
- 1.1.0
|
||||||
|
|
||||||
|
* Tue Dec 24 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.9-1
|
||||||
|
- 1.0.9
|
||||||
|
|
||||||
|
* Tue Oct 15 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.8-1
|
||||||
|
- 1.0.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 11 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.7-2
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 10 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.7-1
|
||||||
|
- 1.0.7
|
||||||
|
|
||||||
|
* Sun Dec 30 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.6-1
|
||||||
|
- 1.0.6
|
||||||
|
|
||||||
|
* Thu Dec 13 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.5-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Sep 5 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.5-1
|
||||||
|
- 1.0.5
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 30 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.4-1
|
||||||
|
- 1.0.4
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 31 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.3-1
|
||||||
|
- 1.0.3
|
||||||
|
|
||||||
|
* Sun Jun 26 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.1-1
|
||||||
|
- 1.0.1
|
||||||
|
|
||||||
|
* Sun May 15 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.9-1
|
||||||
|
- 0.9.9
|
||||||
|
|
||||||
|
* Wed May 4 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.8-2
|
||||||
|
- 0.9.8
|
||||||
|
|
||||||
|
* Wed Mar 23 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.7-1
|
||||||
|
- 0.9.7
|
||||||
|
|
||||||
|
* Wed Mar 9 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.6-1
|
||||||
|
- 0.9.6
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 4 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.5-1
|
||||||
|
- 0.9.5
|
||||||
|
|
||||||
|
* Sun Dec 28 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.4-1
|
||||||
|
- 0.9.4
|
||||||
|
|
||||||
|
* Wed Aug 13 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.3-1
|
||||||
|
- 0.9.3
|
||||||
|
|
||||||
|
* Thu Jun 26 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.2-3
|
||||||
|
- Adjust test suite for ruby 2.1.x
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 19 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.2-1
|
||||||
|
- 0.9.2
|
||||||
|
|
||||||
|
* Thu Aug 8 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.1-1
|
||||||
|
- 0.9.1
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 27 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.8.3-3
|
||||||
|
- Fix test failure with ruby200
|
||||||
|
|
||||||
|
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 0.8.3-2
|
||||||
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
||||||
|
|
||||||
|
* Fri Feb 22 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.8.3-1
|
||||||
|
- 0.8.3
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 24 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.8.2-2
|
||||||
|
- Fix BR
|
||||||
|
|
||||||
|
* Thu Jan 24 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.8.2-1
|
||||||
|
- 0.8.2
|
||||||
|
|
||||||
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Apr 16 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.8.1-1
|
||||||
|
- 0.8.1
|
||||||
|
|
||||||
|
* Tue Apr 03 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 0.8.0-3
|
||||||
|
- Fix conditionals for F17 to work for RHEL 7 as well.
|
||||||
|
|
||||||
|
* Sun Jan 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.8.0-2
|
||||||
|
- Rebuild against ruby 1.9
|
||||||
|
|
||||||
|
* Sun Jan 15 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.8.0-1
|
||||||
|
- 0.8.0
|
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.9-3
|
||||||
|
- F-17: Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.7.9-2
|
||||||
|
- Kill BR: rubygem(rcov) for now
|
||||||
|
|
||||||
|
* Sat Jun 11 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.7.9-1
|
||||||
|
- 0.7.9
|
||||||
|
- %%check now uses rspec, not spec
|
||||||
|
|
||||||
|
* 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
|
* Wed Aug 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.7.1-1
|
||||||
- 0.7.1
|
- 0.7.1
|
||||||
|
|
||||||
|
|
|
||||||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
||||||
0a82ac13904c3d64784cc97fecd7ffa9 rake-compiler-0.7.1.gem
|
SHA512 (rake-compiler-1.3.1.gem) = 9022a55fbb397f218ead147f515047d208a1adf0b240d023117b51e0d9297cd95a3aee9aa60e5f29cb7a8e8de05ec1807d4449b25ddde65e42349a60e5a77e41
|
||||||
|
SHA512 (rake-compiler-1.3.1-test-missing-files.tar.gz) = c183725797e92c81503c7942f42f0596b9e41e299f9ff0c8ca020200137eccae5ab67bd10df1dfb940d7a0aad552de2cee094eb396e215d4d6e5397dac559841
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue