pngcheck 0.2.6-x64-mingw32 → 0.2.8-x64-mingw32
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
- data/.cross_rubies +1 -0
- data/Rakefile +12 -0
- data/bin/rspec +29 -0
- data/ext/layout.rb +5 -0
- data/lib/pngcheck/pngcheck.dll +0 -0
- data/lib/pngcheck/recipe.rb +17 -2
- data/lib/pngcheck/version.rb +1 -1
- metadata +32 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: daf9af99be4c19a0cc1a07f54cf62022ea8368c6866e069eab151cf6d688c87c
|
4
|
+
data.tar.gz: 6efdde0bed4f535134d5ee7fcc6df4ffb2e8ac43386da01496b48d0ef7227384
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55c6ee60051a74aa817dd3de7e5791aa17abfeb2b2aa9206311967d4b14b58cace8057c24632507aafc216363a4005afafe87d15cffda1547a885a92bb5a4565
|
7
|
+
data.tar.gz: 7accefe773ffea102cd665c95031977805148c57b369cb58c48220a623f75f61a237b3b4b22f428f0de72cd73a43ac4dda69b7ca921ec2c66c926d3cbdb588ea
|
data/.cross_rubies
CHANGED
data/Rakefile
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
require "bundler/gem_tasks"
|
4
4
|
require "rspec/core/rake_task"
|
5
5
|
require "rubocop/rake_task"
|
6
|
+
require_relative "ext/layout"
|
6
7
|
|
7
8
|
RSpec::Core::RakeTask.new(:spec)
|
8
9
|
RuboCop::RakeTask.new
|
@@ -20,14 +21,24 @@ task "gem:native:any" do
|
|
20
21
|
sh "rake platform:any gem"
|
21
22
|
end
|
22
23
|
|
24
|
+
desc "Download pngcheck source"
|
25
|
+
task :pngcheck do
|
26
|
+
test_cmd = "test -f #{PNGCHECK_LOCAL}"
|
27
|
+
wget_cmd = "wget -nc -nv -O #{PNGCHECK_LOCAL} #{PNGCHECK_URI}"
|
28
|
+
sh "#{test_cmd} || #{wget_cmd}"
|
29
|
+
end
|
30
|
+
task compile: :pngcheck
|
31
|
+
|
23
32
|
require "rubygems/package_task"
|
24
33
|
|
25
34
|
desc "Define the gem task to build on any platform (compile on install)"
|
26
35
|
task "platform:any" do
|
27
36
|
spec = Gem::Specification::load("pngcheck.gemspec").dup
|
37
|
+
spec.files << PNGCHECK_LOCAL
|
28
38
|
task = Gem::PackageTask.new(spec)
|
29
39
|
task.define
|
30
40
|
end
|
41
|
+
task "gem:native:any": :pngcheck
|
31
42
|
|
32
43
|
File.readlines(".cross_rubies", chomp: true).each do |platform|
|
33
44
|
desc "Build pre-compiled gem for the #{platform} platform"
|
@@ -53,6 +64,7 @@ require "rake/clean"
|
|
53
64
|
CLOBBER.include("pkg")
|
54
65
|
CLEAN.include("ports",
|
55
66
|
"tmp",
|
67
|
+
PNGCHECK_LOCAL,
|
56
68
|
"lib/pngcheck/*.dll",
|
57
69
|
"lib/pngcheck/*.dylib",
|
58
70
|
"lib/pngcheck/*.so")
|
data/bin/rspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rspec' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("bundle", __dir__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300))
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rspec-core", "rspec")
|
data/ext/layout.rb
ADDED
data/lib/pngcheck/pngcheck.dll
CHANGED
Binary file
|
data/lib/pngcheck/recipe.rb
CHANGED
@@ -8,14 +8,16 @@ require "shellwords"
|
|
8
8
|
require "open3"
|
9
9
|
require_relative "version"
|
10
10
|
|
11
|
+
ROOT = Pathname.new(File.expand_path("../..", __dir__))
|
12
|
+
require "#{ROOT}/ext/layout.rb"
|
13
|
+
|
11
14
|
module PngCheck
|
12
15
|
class Recipe < MiniPortile
|
13
|
-
ROOT = Pathname.new(File.expand_path("../..", __dir__))
|
14
16
|
COMMON_FLAGS = "-shared -fPIC -Wall -O -DUSE_ZLIB"
|
15
17
|
|
16
18
|
def files_to_load_all
|
17
19
|
@files << {
|
18
|
-
url: "http://www.libpng.org/pub/png/src/pngcheck-3.0.3.tar.gz"
|
20
|
+
url: "file:#{ROOT}/#{PNGCHECK_LOCAL}", # "http://www.libpng.org/pub/png/src/pngcheck-3.0.3.tar.gz"
|
19
21
|
sha256: "c36a4491634af751f7798ea421321642f9590faa032eccb0dd5fb4533609dee6", # rubocop:disable Layout/LineLength
|
20
22
|
}
|
21
23
|
end
|
@@ -64,6 +66,19 @@ module PngCheck
|
|
64
66
|
FileUtils.touch(checkpoint)
|
65
67
|
end
|
66
68
|
|
69
|
+
def download_file_file(uri, full_path)
|
70
|
+
if MiniPortile.windows?
|
71
|
+
FileUtils.mkdir_p File.dirname(full_path)
|
72
|
+
FileUtils.cp uri.to_s.delete_prefix("file:"), full_path
|
73
|
+
else
|
74
|
+
super
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def tmp_path
|
79
|
+
"tmp/#{@host}/ports"
|
80
|
+
end
|
81
|
+
|
67
82
|
def checkpoint
|
68
83
|
File.join(@target, "#{name}-#{version}-#{host}.installed")
|
69
84
|
end
|
data/lib/pngcheck/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pngcheck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.3.22
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.3.22
|
13
33
|
- !ruby/object:Gem::Dependency
|
14
34
|
name: ffi
|
15
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -25,33 +45,33 @@ dependencies:
|
|
25
45
|
- !ruby/object:Gem::Version
|
26
46
|
version: '1.0'
|
27
47
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
48
|
+
name: rake
|
29
49
|
requirement: !ruby/object:Gem::Requirement
|
30
50
|
requirements:
|
31
51
|
- - "~>"
|
32
52
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0
|
34
|
-
type: :
|
53
|
+
version: '13.0'
|
54
|
+
type: :runtime
|
35
55
|
prerelease: false
|
36
56
|
version_requirements: !ruby/object:Gem::Requirement
|
37
57
|
requirements:
|
38
58
|
- - "~>"
|
39
59
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0
|
60
|
+
version: '13.0'
|
41
61
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
62
|
+
name: libpng-ruby
|
43
63
|
requirement: !ruby/object:Gem::Requirement
|
44
64
|
requirements:
|
45
65
|
- - "~>"
|
46
66
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
67
|
+
version: '0.6'
|
48
68
|
type: :development
|
49
69
|
prerelease: false
|
50
70
|
version_requirements: !ruby/object:Gem::Requirement
|
51
71
|
requirements:
|
52
72
|
- - "~>"
|
53
73
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
74
|
+
version: '0.6'
|
55
75
|
- !ruby/object:Gem::Dependency
|
56
76
|
name: rspec
|
57
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,6 +105,7 @@ email:
|
|
85
105
|
- open.source@ribose.com
|
86
106
|
executables:
|
87
107
|
- console
|
108
|
+
- rspec
|
88
109
|
- setup
|
89
110
|
extensions: []
|
90
111
|
extra_rdoc_files: []
|
@@ -98,9 +119,11 @@ files:
|
|
98
119
|
- README.adoc
|
99
120
|
- Rakefile
|
100
121
|
- bin/console
|
122
|
+
- bin/rspec
|
101
123
|
- bin/setup
|
102
124
|
- ext/Makefile
|
103
125
|
- ext/extconf.rb
|
126
|
+
- ext/layout.rb
|
104
127
|
- ext/wrapper.c
|
105
128
|
- lib/pngcheck.rb
|
106
129
|
- lib/pngcheck/pngcheck.dll
|