ffi-libarchive-binary 0.2.1-x86-linux
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 +7 -0
- data/.gitignore +15 -0
- data/.rspec +1 -0
- data/Gemfile +11 -0
- data/README.adoc +103 -0
- data/Rakefile +60 -0
- data/ext/Makefile +4 -0
- data/ext/extconf.rb +6 -0
- data/ffi-libarchive-binary.gemspec +30 -0
- data/lib/ffi-libarchive-binary.rb +25 -0
- data/lib/ffi-libarchive-binary/libarchive_recipe.rb +51 -0
- data/lib/ffi-libarchive-binary/version.rb +5 -0
- data/updates/config.guess +1700 -0
- data/updates/config.sub +1860 -0
- metadata +75 -0
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ffi-libarchive-binary
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.1
|
5
|
+
platform: x86-linux
|
6
|
+
authors:
|
7
|
+
- Ribose Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ffi-libarchive
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
description: Contains pre-compiled and install-time-compiled binaries for ffi-libarchive
|
28
|
+
email:
|
29
|
+
- open.source@ribose.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".gitignore"
|
35
|
+
- ".rspec"
|
36
|
+
- Gemfile
|
37
|
+
- README.adoc
|
38
|
+
- Rakefile
|
39
|
+
- ext/Makefile
|
40
|
+
- ext/extconf.rb
|
41
|
+
- ffi-libarchive-binary.gemspec
|
42
|
+
- lib/ffi-libarchive-binary.rb
|
43
|
+
- lib/ffi-libarchive-binary/libarchive.so
|
44
|
+
- lib/ffi-libarchive-binary/libarchive_recipe.rb
|
45
|
+
- lib/ffi-libarchive-binary/version.rb
|
46
|
+
- updates/config.guess
|
47
|
+
- updates/config.sub
|
48
|
+
homepage: https://github.com/fontist/ffi-libarchive-binary
|
49
|
+
licenses:
|
50
|
+
- BSD-3-Clause
|
51
|
+
metadata:
|
52
|
+
homepage_uri: https://github.com/fontist/ffi-libarchive-binary
|
53
|
+
source_code_uri: https://github.com/fontist/ffi-libarchive-binary
|
54
|
+
changelog_uri: https://github.com/fontist/ffi-libarchive-binary
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options: []
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 2.4.0
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
requirements: []
|
70
|
+
rubyforge_project:
|
71
|
+
rubygems_version: 2.6.14.4
|
72
|
+
signing_key:
|
73
|
+
specification_version: 4
|
74
|
+
summary: Binaries for ffi-libarchive
|
75
|
+
test_files: []
|