ffi 1.9.22 → 1.9.23.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +0 -2
- data/ext/ffi_c/libffi.darwin.mk +1 -1
- data/lib/ffi/version.rb +1 -1
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b87d4e3577aec7b4815557b72890bd8750e688ae3a614792402d557ee0ffbdf
|
|
4
|
+
data.tar.gz: 3a71b37d27705b5221245832af385037660bbc086697380b320b069c4cf148f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5222f206dc3368dadde029a4ce705b8bfb721849313f15b0931d58ba7753484434ac1435b20356e495d4f6472ef0423bcc5c52b51e10f99bb4483b39fbe5a8f
|
|
7
|
+
data.tar.gz: 5c51de21f637b03dc18174fa165433fe6d1c746ae0b4ab98158217113e43881ba619418742a11487fbcb2d5e6788ef5391f85dd4a4f672b606ad4d5e9499da97
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -43,8 +43,6 @@ At a minimum, you will need:
|
|
|
43
43
|
* A C compiler (e.g. Xcode on OSX, gcc on everything else)
|
|
44
44
|
* libffi development library - this is commonly in the libffi-dev or libffi-devel
|
|
45
45
|
|
|
46
|
-
On Linux systems running with [PaX](https://en.wikipedia.org/wiki/PaX) (Gentoo, Alpine, etc.) FFI may trigger `mprotect` errors. You may need to disable [mprotect](https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options#Restrict_mprotect.28.29) for ruby (`paxctl -m [/path/to/ruby]`) for the time being until a solution is found.
|
|
47
|
-
|
|
48
46
|
## Installation
|
|
49
47
|
|
|
50
48
|
From rubygems:
|
data/ext/ffi_c/libffi.darwin.mk
CHANGED
|
@@ -47,7 +47,7 @@ LIBTARGETS = $(foreach arch,$(ARCHES),"$(BUILD_DIR)"/libffi-$(arch)/.libs/libffi
|
|
|
47
47
|
# Build a fat binary and assemble
|
|
48
48
|
build_ffi = \
|
|
49
49
|
mkdir -p "$(BUILD_DIR)"/libffi-$(1); \
|
|
50
|
-
(if [ ! -f "$(
|
|
50
|
+
(if [ ! -f "$(LIBFFI_SRC_DIR)"/configure ]; then \
|
|
51
51
|
echo "Running autoreconf for libffi"; \
|
|
52
52
|
cd "$(LIBFFI_SRC_DIR)" && \
|
|
53
53
|
/bin/sh $(LIBFFI_AUTOGEN) > /dev/null; \
|
data/lib/ffi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ffi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.23.pre1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wayne Meissner
|
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
|
29
29
|
Ao8FZozVJz8xVEuYNJsL2k70w0FiwXwoWyvKyekgPBvYNUj4JGDMtBBayJTOpDs7
|
|
30
30
|
3EVmCm5IRuqZ1UcDFouQ9w==
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
|
-
date: 2018-02-
|
|
32
|
+
date: 2018-02-24 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: rake
|
|
@@ -635,9 +635,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
635
635
|
version: '1.9'
|
|
636
636
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
637
637
|
requirements:
|
|
638
|
-
- - "
|
|
638
|
+
- - ">"
|
|
639
639
|
- !ruby/object:Gem::Version
|
|
640
|
-
version:
|
|
640
|
+
version: 1.3.1
|
|
641
641
|
requirements: []
|
|
642
642
|
rubyforge_project:
|
|
643
643
|
rubygems_version: 2.7.3
|
metadata.gz.sig
CHANGED
|
Binary file
|