pngcheck 0.2.6-arm64-darwin → 0.2.7-arm64-darwin

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c72dc880a4b5233de36e0e7b9ac3fe4c18af80002c2ecb0e779876477ab8e27
4
- data.tar.gz: b739556b37c7230df17025a31e03f8091c0252be7944b62c597a77cab72bd988
3
+ metadata.gz: d65f5e6b11536b4fcc897f32878a1c3df560192389ee61e5ac366aacdc673879
4
+ data.tar.gz: fcf3f8dada57664a18cefd38eac6dbebb31b2fe6f2882bc56fe3605f4c1191ed
5
5
  SHA512:
6
- metadata.gz: 11e3550cf4b118ce57d6be0cc7574713b332873a50139c5ca71559b06912d3af21b97fee9572cf7d88d38bf085019ac8f4e7c4b7114ac8f12c327f79c48ea656
7
- data.tar.gz: 1abb0873f6bab8c7b4dee91ccaddb99067dbc6693fc9475887d603d6cbf63c05d00b88f8b9caed2ec5780e483f9b28e5ab5db02f383b1b9e76b1d8d6d188c68c
6
+ metadata.gz: 96e5b0510914be6809247931f96b7a3162e297dfe54c769ac780bcca6f8691e0d9173bcb36bcb8aca0d75ccada61268e14dcfbdafb45aef3296226cb0004905b
7
+ data.tar.gz: c6413f56b46f81aeb0dc86d32c92b75c4eb0224e9cd268abfa9a2fa41be60ec490f2bcb73664ede246a09e4a2c7b25d74fa679f0c9f7e3745e66032f15b2aed3
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/ext/layout.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ PNGCHECK_ARCH = "pngcheck-3.0.3.tar.gz"
4
+ PNGCHECK_URI = "http://www.libpng.org/pub/png/src/#{PNGCHECK_ARCH}"
5
+ PNGCHECK_LOCAL = "ext/#{PNGCHECK_ARCH}"
@@ -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,15 @@ 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
+
67
78
  def checkpoint
68
79
  File.join(@target, "#{name}-#{version}-#{host}.installed")
69
80
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PngCheck
4
- VERSION = "0.2.6"
4
+ VERSION = "0.2.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pngcheck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-13 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -101,6 +101,7 @@ files:
101
101
  - bin/setup
102
102
  - ext/Makefile
103
103
  - ext/extconf.rb
104
+ - ext/layout.rb
104
105
  - ext/wrapper.c
105
106
  - lib/pngcheck.rb
106
107
  - lib/pngcheck/pngcheck.so