| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: ruby2.5-rubygem-ffi-testsuite | Distribution: SUSE Linux Enterprise 15 |
| Version: 1.9.18 | Vendor: SUSE LLC <https://www.suse.com/> |
| Release: 1.31 | Build date: Fri May 25 22:11:17 2018 |
| Group: Development/Languages/Ruby | Build host: sheep63 |
| Size: 167889 | Source RPM: rubygem-ffi-1.9.18-1.31.src.rpm |
| Packager: https://www.suse.com/ | |
| Url: http://wiki.github.com/ffi/ffi | |
| Summary: Test suite for ffi | |
Test::Unit or RSpec files, useful for developers.
BSD-3-Clause
* Sat Mar 04 2017 coolo@suse.com
- updated to version 1.9.18
see installed ChangeLog
* Sat Jan 14 2017 coolo@suse.com
- updated to version 1.9.17
see installed ChangeLog
* Tue Jul 12 2016 coolo@suse.com
- updated to version 1.9.14
see installed ChangeLog
* Thu Jul 07 2016 coolo@suse.com
- updated to version 1.9.13
see installed ChangeLog
* Wed Jul 06 2016 coolo@suse.com
- updated to version 1.9.12
see installed ChangeLog
* Wed Jul 01 2015 coolo@suse.com
- updated to version 1.9.10
see installed ChangeLog
* Sat Jun 27 2015 coolo@suse.com
- updated to version 1.9.9
see installed ChangeLog
* Wed Mar 18 2015 coolo@suse.com
- updated to version 1.9.8, no changelog
* Fri Nov 21 2014 opensuse_buildservice@ojkastl.de
- manual dependency libffi-devel and rpmlintrc now in gem2rpm.yml
* Fri Nov 21 2014 opensuse_buildservice@ojkastl.de
- adapted to new packaging scheme, regenerated spec with gem2rpm, readded libffi-devel
* Fri Nov 21 2014 opensuse_buildservice@ojkastl.de
- update to version 1.9.6
* Tue Jul 22 2014 dmacvicar@suse.de
- remove rdoc buildrequires to build with older
rubies including rdoc. It is still pulled otherwise
* Thu Feb 06 2014 coolo@suse.com
- updated to version 1.9.3
* Thu Oct 31 2013 coolo@suse.com
- updated to version 1.9.3, changed license to BSD
* Sat Jun 15 2013 coolo@suse.com
- updated to version 1.9.0, no changelog
* Wed Apr 24 2013 coolo@suse.com
- updated to version 1.8.1, no changelog
* Fri Apr 12 2013 coolo@suse.com
- updated to version 1.7.0
* Tue Mar 26 2013 coolo@suse.com
- remove rm, it's done by gem_cleanup now
* Sat Mar 23 2013 coolo@suse.com
- updated to version 1.5.0, no changelog
* Sun Mar 03 2013 coolo@suse.com
- updated to version 1.4.0
* Fri Jan 25 2013 coolo@suse.com
- updated to version 1.3.1
* Tue Jan 08 2013 coolo@suse.com
- updated to version 1.3.0
* Wed Nov 21 2012 coolo@suse.com
- updated to version 1.2.0
* Thu Aug 09 2012 coolo@suse.com
- updated to version 1.1.5
* Sat Aug 04 2012 coolo@suse.com
- updated to version 1.1.4, more updates for libffi
* Fri Aug 03 2012 coolo@suse.com
- updated to version 1.1.3, fix compilation
* Mon Jul 30 2012 coolo@suse.com
- update to 1.1.2 - fixes for arm
* Sat Jul 28 2012 coolo@suse.com
- updated to 1.1.1 - no changelog
* Sun Jul 22 2012 coolo@suse.com
- update to 1.1.0 - no changelog
* Fri Jun 29 2012 cfarrell@suse.com
- license update: LGPL-3.0
See https://github.com/ffi/ffi/blob/master/LICENSE
* Wed Apr 04 2012 coolo@suse.com
- update to 1.0.11 - no changelog
* Wed Mar 28 2012 saschpe@suse.de
- Spec file cleanup:
* Factory preparation
* Wed Aug 24 2011 fcastelli@novell.com
- fix license
- add 'provides' macros
* Sun May 22 2011 dmacvicar@suse.de
- update to 1.0.9
* Fri Jun 11 2010 mrueckert@suse.de
- update to version 0.6.3
* Fri Jun 11 2010 mrueckert@suse.de
- use rubygems_requires macro
* Sun Feb 14 2010 dmacvicar@novell.com
- update to 0.6.0
* Thu Dec 17 2009 dmacvicar@novell.com
- Update to 0.5.4
* bugfix in extconf.rb when appending to $CFLAGS
- from 0.5.3
* fixes powerpc, cywin and FreeBSD installation/build
problems
- from 0.5.2
* Fedora fixes
* Tue Nov 03 2009 dmacvicar@novell.com
- Update to 0.5.1
* This is a bug fix release for variadic functions which return
structures by value
* Tue Oct 13 2009 dmacvicar@novell.com
- Update to 0.5.0
* Major improvements
* New Function class
* Structs can be passed and returned by value
* Implement a custom trampoline for x86_64, resulting in roughly 30% speedup
* Improve dispatch of functions which take (0..6) char/short/int/long/pointer arguments by between 50% and 200% on x86_64
* Callbacks are now approximately 100% faster on x86_64
* Minor improvements
* Add support for MacOSX Snow Leopard
* Improve support for Windows releasing fat binaries on rubyforge
* Better introspection in structs:
* Add StructLayout::Field#type, size, offset, alignment and name
methods
* Add StructLayout#fields which returns an array of
StructLayout::Field objects
* Add automagic deducing of library name from module name.
Idea and prototype implementation from Matt Hulse
* Callback fields in structs can now be both read and written
* Add a bunch of new benchmarks
* Lots of refactoring
* Experimental features
* blocking functions (i.e. native code that blocks the thread) support
* Bug fixes
* Fix RUBY-FFI_43 (rake gem dependency)
* Wed Aug 12 2009 dmacvicar@novell.com
- update to 0.4.0
* Add support for boolean types
* Add support for methods as callbacks
* Add FFI::IO.read as described in JRUBY-3636
* Add Pointer::NULL constant
* Add AbstractMemory#get_array_of_string()
* Implement Pointer.new(address) and Pointer.new(:type, address)
* Fix RUBY_FFI-38
* Fix build issues
* Sun Jul 26 2009 dmacvicar@novell.com
- initial package for 0.3.5
/usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/LICENSE.SPECS /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/async_callback_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/bool_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/buffer_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/callback_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/custom_param_type.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/custom_type_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/dup_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/enum_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/errno_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/ffi_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/Benchmark.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/BoolTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/BufferTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/ClosureTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/EnumTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/FunctionTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/GNUmakefile /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/GlobalVariable.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/LastErrorTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/NumberTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/PipeHelper.h /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/PipeHelperPosix.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/PipeHelperWindows.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/PointerTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/ReferenceTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/StringTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/StructTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/UnionTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/VariadicTest.c /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/fixtures/classes.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/function_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/io_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/library_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/long_double.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/managed_struct_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/memorypointer_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/number_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/platform_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/pointer_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/rbx /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/rbx/attach_function_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/rbx/memory_pointer_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/rbx/spec_helper.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/rbx/struct_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/spec_helper.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/string_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/strptr_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_by_ref_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_callback_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_initialize_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_packed_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/struct_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/typedef_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/union_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/ffi/variadic_spec.rb /usr/lib64/ruby/gems/2.5.0/gems/ffi-1.9.18/spec/spec.opts
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Feb 9 16:32:59 2026