[DRE-commits] [ruby-ffi] branch master updated (47e33f0 -> f42624e)

Antonio Terceiro terceiro at moszumanska.debian.org
Sat Oct 11 22:56:14 UTC 2014


This is an automated email from the git hooks/post-receive script.

terceiro pushed a change to branch master
in repository ruby-ffi.

      from  47e33f0   Release to unstable
      adds  4f0b7b5   Imported Upstream version 1.9.6debian
       new  9db7ea2   Merge tag 'upstream/1.9.6debian'
       new  6d061a8   New upstream release
       new  5cf9ff0   debian/patches/disable-rake-compiler.patch: refresh
       new  1c1cc2f   debian/repack.sh: exclude .o files included upstream
      adds  69ffc91   Imported Upstream version 1.9.6debian
      adds  cbcb8db   Imported Upstream version 1.9.6debian
       new  59c549a   Merge tag 'upstream/1.9.6debian'
       new  f42624e   prepare for upload

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Rakefile                                        |  44 +--
 checksums.yaml.gz                               | Bin 427 -> 0 bytes
 debian/changelog                                |  11 +
 debian/patches/disable-rake-compiler.patch      |   3 +-
 debian/repack.sh                                |   1 +
 debian/ruby-tests.rb                            |   6 -
 debian/rules                                    |   2 +
 ext/ffi_c/DynamicLibrary.c                      |  14 +-
 ext/ffi_c/DynamicLibrary.h                      |  49 +++
 ext/ffi_c/Function.c                            |   7 +-
 ext/ffi_c/FunctionInfo.c                        |   4 +-
 ext/ffi_c/Platform.c                            |   4 +-
 ext/ffi_c/Struct.c                              |   1 +
 ext/ffi_c/Variadic.c                            |   4 +-
 ext/ffi_c/extconf.rb                            |   4 +-
 ffi.gemspec                                     |  10 +-
 lib/ffi.rb                                      |   2 +
 lib/ffi/library.rb                              |  14 +-
 lib/ffi/platform.rb                             |   5 +-
 lib/ffi/platform/x86_64-netbsd/types.conf       |   2 +
 lib/ffi/struct.rb                               |   4 +-
 lib/ffi/version.rb                              |   2 +-
 libtest/ClosureTest.c                           |  15 +
 libtest/FunctionTest.c                          |  12 +
 metadata.yml                                    | 223 +++++++-----
 spec/ffi/LICENSE.SPECS                          |  22 ++
 spec/ffi/async_callback_spec.rb                 |   8 +-
 spec/ffi/bool_spec.rb                           |  17 +-
 spec/ffi/buffer_spec.rb                         | 100 ++++--
 spec/ffi/callback_spec.rb                       | 332 ++++++++++++------
 spec/ffi/custom_param_type.rb                   |   1 +
 spec/ffi/custom_type_spec.rb                    |  10 +-
 spec/ffi/dup_spec.rb                            |  14 +-
 spec/ffi/enum_spec.rb                           | 263 +++++++-------
 spec/ffi/errno_spec.rb                          |   4 +-
 spec/ffi/ffi_spec.rb                            |   9 +-
 {libtest => spec/ffi/fixtures}/Benchmark.c      |   0
 {libtest => spec/ffi/fixtures}/BoolTest.c       |   0
 {libtest => spec/ffi/fixtures}/BufferTest.c     |   0
 {libtest => spec/ffi/fixtures}/ClosureTest.c    |   0
 {libtest => spec/ffi/fixtures}/EnumTest.c       |   0
 {libtest => spec/ffi/fixtures}/FunctionTest.c   |   0
 {libtest => spec/ffi/fixtures}/GNUmakefile      |  10 +-
 {libtest => spec/ffi/fixtures}/GlobalVariable.c |   0
 {libtest => spec/ffi/fixtures}/LastErrorTest.c  |   0
 {libtest => spec/ffi/fixtures}/NumberTest.c     |   0
 {libtest => spec/ffi/fixtures}/PointerTest.c    |   0
 {libtest => spec/ffi/fixtures}/ReferenceTest.c  |   0
 {libtest => spec/ffi/fixtures}/StringTest.c     |   0
 {libtest => spec/ffi/fixtures}/StructTest.c     |   0
 {libtest => spec/ffi/fixtures}/UnionTest.c      |   0
 {libtest => spec/ffi/fixtures}/VariadicTest.c   |  37 ++
 spec/ffi/fixtures/classes.rb                    | 438 ++++++++++++++++++++++++
 spec/ffi/function_spec.rb                       |  37 +-
 spec/ffi/io_spec.rb                             |  16 +
 spec/ffi/library_spec.rb                        | 130 +++++--
 spec/ffi/long_double.rb                         |   6 +-
 spec/ffi/managed_struct_spec.rb                 |  18 +-
 spec/ffi/memorypointer_spec.rb                  |  78 +++++
 spec/ffi/number_spec.rb                         |  77 +++--
 spec/ffi/platform_spec.rb                       | 114 ++++++
 spec/ffi/pointer_spec.rb                        |  74 ++--
 spec/ffi/rbx/attach_function_spec.rb            |  11 +-
 spec/ffi/rbx/memory_pointer_spec.rb             |  49 +--
 spec/ffi/rbx/spec_helper.rb                     |   7 +-
 spec/ffi/rbx/struct_spec.rb                     |   9 +-
 spec/ffi/spec_helper.rb                         |  80 ++++-
 spec/ffi/string_spec.rb                         |  34 +-
 spec/ffi/strptr_spec.rb                         |  12 +-
 spec/ffi/struct_by_ref_spec.rb                  |  14 +-
 spec/ffi/struct_callback_spec.rb                |  12 +-
 spec/ffi/struct_initialize_spec.rb              |   4 +-
 spec/ffi/struct_packed_spec.rb                  |  25 +-
 spec/ffi/struct_spec.rb                         | 404 ++++++++++++++--------
 spec/ffi/typedef_spec.rb                        |  35 +-
 spec/ffi/union_spec.rb                          |  14 +-
 spec/ffi/variadic_spec.rb                       |  33 +-
 spec/spec.opts                                  |   3 +-
 78 files changed, 2177 insertions(+), 827 deletions(-)
 delete mode 100644 checksums.yaml.gz
 create mode 100644 spec/ffi/LICENSE.SPECS
 copy {libtest => spec/ffi/fixtures}/Benchmark.c (100%)
 copy {libtest => spec/ffi/fixtures}/BoolTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/BufferTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/ClosureTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/EnumTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/FunctionTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/GNUmakefile (95%)
 copy {libtest => spec/ffi/fixtures}/GlobalVariable.c (100%)
 copy {libtest => spec/ffi/fixtures}/LastErrorTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/NumberTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/PointerTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/ReferenceTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/StringTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/StructTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/UnionTest.c (100%)
 copy {libtest => spec/ffi/fixtures}/VariadicTest.c (59%)
 create mode 100644 spec/ffi/fixtures/classes.rb
 create mode 100644 spec/ffi/io_spec.rb
 create mode 100644 spec/ffi/memorypointer_spec.rb
 create mode 100644 spec/ffi/platform_spec.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-ffi.git



More information about the Pkg-ruby-extras-commits mailing list