[DRE-commits] [ruby-ffi] branch master updated (346eac9 -> ef3ce12)

Antonio Terceiro terceiro at moszumanska.debian.org
Wed Jan 8 12:48:13 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  346eac9   Release to unstable
       new  8dd9000   Add instructions for porters
       new  1a56914   Imported Upstream version 1.9.3debian
       new  436e848   Merge tag 'upstream/1.9.3debian'
       new  8f7e81c   add a simple smoke test to debian/tests
       new  c01d959   debian/control: add `XS-Testsuite: autopkgtest`
       new  ef8a21a   changelog for new upstream version
       new  b7f931d   History.txt not present anymore
       new  7e79c41   bump standards version
       new  ef3ce12   Release to unstable

The 9 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:
 COPYING                                   | 721 ++----------------------------
 COPYING.LESSER                            | 165 -------
 History.txt                               |   1 -
 LICENSE                                   |  32 +-
 README.md                                 |  12 +-
 checksums.yaml.gz                         | Bin 0 -> 427 bytes
 debian/README.porting                     |  13 +
 debian/changelog                          |   9 +
 debian/control                            |   3 +-
 debian/ruby-ffi.docs                      |   1 -
 debian/rules                              |   4 +
 debian/tests/control                      |   1 +
 debian/tests/smoke                        |  13 +
 ext/ffi_c/AbstractMemory.c                |  35 +-
 ext/ffi_c/AbstractMemory.h                |  33 +-
 ext/ffi_c/ArrayType.c                     |  33 +-
 ext/ffi_c/ArrayType.h                     |  33 +-
 ext/ffi_c/Buffer.c                        |  34 +-
 ext/ffi_c/Call.c                          |  33 +-
 ext/ffi_c/Call.h                          |  33 +-
 ext/ffi_c/ClosurePool.c                   |  33 +-
 ext/ffi_c/ClosurePool.h                   |  33 +-
 ext/ffi_c/DynamicLibrary.c                |  33 +-
 ext/ffi_c/DynamicLibrary.h                |  33 +-
 ext/ffi_c/Function.c                      |  33 +-
 ext/ffi_c/Function.h                      |  33 +-
 ext/ffi_c/FunctionInfo.c                  |  34 +-
 ext/ffi_c/LastError.c                     |  34 +-
 ext/ffi_c/LastError.h                     |  33 +-
 ext/ffi_c/LongDouble.h                    |  33 +-
 ext/ffi_c/MappedType.c                    |  33 +-
 ext/ffi_c/MappedType.h                    |  33 +-
 ext/ffi_c/MemoryPointer.c                 |  35 +-
 ext/ffi_c/MemoryPointer.h                 |  33 +-
 ext/ffi_c/MethodHandle.c                  |  33 +-
 ext/ffi_c/MethodHandle.h                  |  33 +-
 ext/ffi_c/Platform.c                      |  33 +-
 ext/ffi_c/Platform.h                      |  33 +-
 ext/ffi_c/Pointer.c                       |  33 +-
 ext/ffi_c/Pointer.h                       |  33 +-
 ext/ffi_c/Struct.c                        |  35 +-
 ext/ffi_c/Struct.h                        |  33 +-
 ext/ffi_c/StructByValue.c                 |  33 +-
 ext/ffi_c/StructByValue.h                 |  33 +-
 ext/ffi_c/StructLayout.c                  |  33 +-
 ext/ffi_c/Thread.c                        |  33 +-
 ext/ffi_c/Thread.h                        |  33 +-
 ext/ffi_c/Type.c                          |  35 +-
 ext/ffi_c/Type.h                          |  33 +-
 ext/ffi_c/Types.c                         |  33 +-
 ext/ffi_c/Types.h                         |  33 +-
 ext/ffi_c/Variadic.c                      |  34 +-
 ext/ffi_c/compat.h                        |  33 +-
 ext/ffi_c/cruby-ext.iml                   |  12 -
 ext/ffi_c/ffi.c                           |  34 +-
 ext/ffi_c/rbffi.h                         |  33 +-
 ffi.gemspec                               |   4 +-
 gen/log                                   |   1 -
 lib/ffi/autopointer.rb                    |  32 +-
 lib/ffi/enum.rb                           |  33 +-
 lib/ffi/errno.rb                          |  32 +-
 lib/ffi/ffi.iml                           |  11 -
 lib/ffi/ffi.rb                            |  33 +-
 lib/ffi/io.rb                             |  32 +-
 lib/ffi/library.rb                        |  34 +-
 lib/ffi/managedstruct.rb                  |  29 ++
 lib/ffi/platform.rb                       |  31 +-
 lib/ffi/platform/x86_64-cygwin/types.conf |   3 +
 lib/ffi/pointer.rb                        |  32 +-
 lib/ffi/struct.rb                         |  33 +-
 lib/ffi/struct_layout_builder.rb          |  33 +-
 lib/ffi/types.rb                          |  33 +-
 lib/ffi/union.rb                          |  35 +-
 lib/ffi/variadic.rb                       |  35 +-
 lib/ffi/version.rb                        |   2 +-
 libtest/BoolTest.c                        |   5 +-
 libtest/StructTest.c                      |   5 +-
 metadata.yml                              | 173 +++----
 spec/ffi/spec.iml                         |  12 -
 79 files changed, 1413 insertions(+), 1646 deletions(-)
 delete mode 100644 COPYING.LESSER
 delete mode 100644 History.txt
 create mode 100644 checksums.yaml.gz
 create mode 100644 debian/README.porting
 create mode 100644 debian/tests/control
 create mode 100755 debian/tests/smoke
 delete mode 100644 ext/ffi_c/cruby-ext.iml
 delete mode 100644 gen/log
 delete mode 100644 lib/ffi/ffi.iml
 create mode 100755 lib/ffi/platform/x86_64-cygwin/types.conf
 delete mode 100644 spec/ffi/spec.iml

-- 
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