Compare commits

..

18 Commits
f31 ... rawhide

Author SHA1 Message Date
Fedora Release Engineering
39b62a7134 Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-23 01:32:30 +00:00
Vít Ondruch
85892974b3 Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.1 2022-01-27 13:59:57 +01:00
Vít Ondruch
87feb355a8 Re-enable long double test fixed by FFI 1.15.5.
https://github.com/ffi/ffi/pull/919
2022-01-27 13:33:51 +01:00
Vít Ondruch
19f6fee2f1 Disable fork spec broken by recent libffi. 2022-01-27 13:33:15 +01:00
Mamoru TASAKA
38a003c073 F-36: rebuild against ruby31 2022-01-27 11:23:16 +09:00
Pavel Valena
d8b17396d3 Update to ffi 1.15.5.
Resolves: rhbz#2038923
2022-01-18 08:08:59 +01:00
Miro Hrončok
7c9858cbd1 Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34 2022-01-08 11:12:42 +01:00
Pavel Valena
8592276be6 Update to ffi 1.15.4.
Resolves: rhbz#1909309
2021-10-29 10:21:35 +02:00
Fedora Release Engineering
016527c64c - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-23 12:03:34 +00:00
Fedora Release Engineering
96aa12eb25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-27 15:51:57 +00:00
Tom Stellard
510dc30e27 Add BuildRequires: make
https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot
2021-01-08 20:59:35 +00:00
Vít Ondruch
47f13fd990 Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0 2021-01-06 13:38:10 +01:00
Vít Ondruch
d0ea39b543 Disable long double test failing on i686. 2020-12-03 17:32:27 +01:00
Pavel Valena
88643501bb Update to ffi 1.13.1.
Resolves: rhbz#1797215
2020-11-13 00:18:18 +01:00
Fedora Release Engineering
a435e6bceb - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-29 06:22:41 +00:00
Fedora Release Engineering
9bfc3bb03f - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-30 18:28:26 +00:00
Pavel Valena
6b5f4db35a Update sources file. 2020-01-21 15:53:20 +01:00
Pavel Valena
2dda1ccc0b Update to ffi 1.12.1
also enhance .spec file.
2020-01-20 20:22:39 +01:00
3 changed files with 67 additions and 12 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
/ffi-*.gem
/ffi-*-spec.tgz
/ffi-*-spec.txz

View File

@ -1,15 +1,16 @@
%global gem_name ffi
Name: rubygem-%{gem_name}
Version: 1.10.0
Release: 3%{?dist}
Version: 1.15.5
Release: 4%{?dist}
Summary: FFI Extensions for Ruby
License: BSD
URL: http://wiki.github.com/ffi/ffi
URL: https://github.com/ffi/ffi/wiki
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
# git clone https://github.com/ffi/ffi.git && cd ffi
# git checkout 1.10.0 && tar czvf ffi-1.10.0-spec.tgz spec/
Source1: %{gem_name}-%{version}-spec.tgz
# git clone https://github.com/ffi/ffi.git --no-checkout
# cd ffi && git archive -v -o ffi-1.15.5-spec.txz v1.15.5 spec/
Source1: %{gem_name}-%{version}-spec.txz
BuildRequires: make
BuildRequires: ruby(release)
BuildRequires: rubygems-devel
BuildRequires: ruby-devel
@ -17,7 +18,8 @@ BuildRequires: ruby-devel
# https://fedoraproject.org/wiki/Packaging:C_and_C++#BuildRequires_and_Requires
BuildRequires: gcc
BuildRequires: libffi-devel
BuildRequires: rubygem(rspec)
BuildRequires: rubygem(rspec) >= 3
BuildRequires: rubygem(bigdecimal)
%description
Ruby-FFI is a ruby extension for programmatically loading dynamic
@ -63,7 +65,11 @@ pushd spec/ffi/fixtures
make JFLAGS="%{optflags}"
popd
rspec -I$(dirs +1)%{gem_extdir_mri} spec
# Recent libffi corrupts dynamically allocated closures with call to fork.
# https://bugzilla.redhat.com/show_bug.cgi?id=2040380
mv spec/ffi/fork_spec.rb{,.disabled}
RUBYOPT="-I$(dirs +1)%{gem_extdir_mri}" rspec spec
popd
%files
@ -73,7 +79,6 @@ popd
%license %{gem_instdir}/COPYING
%license %{gem_instdir}/LICENSE
%license %{gem_instdir}/LICENSE.SPECS
%exclude %{gem_instdir}/appveyor.yml
%{gem_libdir}
%exclude %{gem_cache}
%{gem_spec}
@ -86,8 +91,58 @@ popd
%{gem_instdir}/Rakefile
%{gem_instdir}/samples
%{gem_instdir}/ffi.gemspec
%{gem_instdir}/rakelib/ffi_gem_helper.rb
%changelog
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Thu Jan 27 2022 Vít Ondruch <vondruch@redhat.com> - 1.15.5-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.1
* Thu Jan 27 2022 Vít Ondruch <vondruch@redhat.com> - 1.15.5-2
- Disable fork spec broken by recent libffi.
- Re-enable long double test fixed by FFI 1.15.5.
* Thu Jan 27 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.15.5-2
- F-36: rebuild against ruby31
* Tue Jan 18 2022 Pavel Valena <pvalena@redhat.com> - 1.15.5-1
- Update to ffi 1.15.5.
Resolves: rhbz#2038923
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 1.15.4-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
* Mon Sep 13 2021 Pavel Valena <pvalena@redhat.com> - 1.15.4-1
- Update to ffi 1.15.4.
Resolves: rhbz#1909309
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jan 6 2021 Vít Ondruch <vondruch@redhat.com> - 1.13.1-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
* Thu Dec 03 2020 Vít Ondruch <vondruch@redhat.com> - 1.13.1-1
- Disable long double test failing on i686.
* Thu Nov 12 22:57:22 CET 2020 Pavel Valena <pvalena@redhat.com> - 1.13.1-1
- Update to ffi 1.13.1.
Resolves: rhbz#1797215
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Jan 20 2020 Pavel Valena <pvalena@redhat.com> - 1.12.1-1
- Update to ffi 1.12.1.
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

View File

@ -1,2 +1,2 @@
SHA512 (ffi-1.10.0.gem) = 7bdb52c9912c976379fa50e86bc6cb2551c236b59f7610d864ab37a5357a231ed9b44c45941d8be68038e6e84542005b808045ed8da0e9e07de4428100f3bf1b
SHA512 (ffi-1.10.0-spec.tgz) = 9afdea156c92b632a40f358b4b4a25898d5ef51019b3e543e96349a6c863c7d580c69c0661552a874f1b364684cfb13a8b594179ffb0326a8b9d77fe43260f63
SHA512 (ffi-1.15.5.gem) = 074df34edffc7038ab08199350a97b32280d61ea15dd85d459b008bd3363ec5403b4e533621c8e460e5288f01fec944bff9b149851b819e85bab75ad2362227c
SHA512 (ffi-1.15.5-spec.txz) = 746e69d9d9d43f53b165898c943b6acb6fea0bf5bf0669fade331a5a38bace4cf9de59dda09c57f4fc5ad8b22ead5aa72f07e61318d7ed794e9cefe76dee55a3