poppler 3.5.1 → 4.0.0

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: 6d7a60899a6b7edc258eaa0f3a7a3d531ef6481f6bbe26fcda93e55676a34d33
4
- data.tar.gz: b8bb4ffc5daa9775f1f97261d1b631a7da7231ae68e0efd41206ca88a5fe6775
3
+ metadata.gz: 2df2aa9512f314a1b30cfc0c57a808cfd86dc918836ddf3d7b9b0ef280c1c033
4
+ data.tar.gz: 01d59676fe83a19395ca40e5bb1d4aa3a1ed9282af7c1c46113b6a2447323684
5
5
  SHA512:
6
- metadata.gz: 3ab83675e1951f4219b5a25419856e682ccbf1b1ea277990f1560f1b842120a37c899f1a98ca8a5f336ac6e8f8fb6804325c6f2c56eece325f130f0a01721d17
7
- data.tar.gz: 6be17b5889aad6c9ab1c1c0a493789ff5a8ba4965791fa56e98559acb975794af7507ffc13659419c157fd953ed758c31fd1a79b1fd06c443ec72d7458c90b83
6
+ metadata.gz: 87c4fa506019e8bf0b8d0e1dacebca626b9150e0660376d2558a8f389e3b7b6e96b021e912a4dedb31b58c5408ba1d8e5a14029b731c6b229d07f01d87173a22
7
+ data.tar.gz: 1fc8058ab3a7cdd70676ae3c92ae7361651d549c998d93bf341ada4ea36a9e0edee46c5c60829dc4f172ece4e4f02ac6f4a8d1082e0af129cab1bc1a0e311969
@@ -48,18 +48,15 @@ module Poppler
48
48
  password = options[:password]
49
49
 
50
50
  if data
51
- # Workaround: poppler_document_new_from_data()'s .gir
52
- # accepts PDF data as UTF-8 string. PDF data is not UTF-8
53
- # string. So UTF-8 validation is failed.
54
- #
55
- # TODO: Enable the following:
56
- # initialize_new_from_data(data, password)
57
-
58
- @file = Tempfile.new(["poppler", ".pdf"])
59
- @file.binmode
60
- @file.write(data)
61
- @file.close
62
- initialize_new_from_file(ensure_uri(@file.path), password)
51
+ if respond_to?(:initialize_new_from_bytes)
52
+ initialize_new_from_bytes(data, password)
53
+ else
54
+ @file = Tempfile.new(["poppler", ".pdf"])
55
+ @file.binmode
56
+ @file.write(data)
57
+ @file.close
58
+ initialize_new_from_file(ensure_uri(@file.path), password)
59
+ end
63
60
  elsif uri
64
61
  initialize_new_from_file(uri, password)
65
62
  elsif path
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2008-2021 Ruby-GNOME Project Team
1
+ # Copyright (C) 2008-2022 Ruby-GNOME Project Team
2
2
  #
3
3
  # This library is free software; you can redistribute it and/or
4
4
  # modify it under the terms of the GNU Lesser General Public
@@ -32,15 +32,27 @@ class TestDocument < Test::Unit::TestCase
32
32
  end
33
33
  end
34
34
 
35
- def test_default_internal
35
+ def setup
36
36
  pdf = StringIO.new("".b)
37
- surface = Cairo::PDFSurface.new(pdf, 100, 100)
38
- context = Cairo::Context.new(surface)
39
- context.show_text("Hello")
40
- surface.finish
37
+ Cairo::PDFSurface.create(pdf, 100, 100) do |surface|
38
+ Cairo::Context.create(surface) do |context|
39
+ context.show_text("Hello")
40
+ end
41
+ end
42
+ @pdf_data = pdf.string.freeze
43
+ end
44
+
45
+ def test_default_internal
46
+ document = with_default_internal(Encoding::UTF_8) do
47
+ Poppler::Document.new(data: @pdf_data)
48
+ end
49
+ assert_equal("Hello", document[0].text)
50
+ end
41
51
 
52
+ def test_glib_bytes
53
+ only_poppler_version(0, 82, 0)
42
54
  document = with_default_internal(Encoding::UTF_8) do
43
- Poppler::Document.new(:data => pdf.string)
55
+ Poppler::Document.new(data: GLib::Bytes.new(@pdf_data))
44
56
  end
45
57
  assert_equal("Hello", document[0].text)
46
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poppler
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.1
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME Project Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-17 00:00:00.000000000 Z
11
+ date: 2022-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cairo-gobject
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.5.1
19
+ version: 4.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 3.5.1
26
+ version: 4.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gio2
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 3.5.1
33
+ version: 4.0.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 3.5.1
40
+ version: 4.0.0
41
41
  description: Ruby/Poppler is a Ruby binding of poppler-glib.
42
42
  email: ruby-gnome2-devel-en@lists.sourceforge.net
43
43
  executables: []
@@ -92,7 +92,7 @@ licenses:
92
92
  - LGPL-2.1+
93
93
  metadata:
94
94
  msys2_mingw_dependencies: poppler
95
- post_install_message:
95
+ post_install_message:
96
96
  rdoc_options: []
97
97
  require_paths:
98
98
  - lib
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  version: '0'
109
109
  requirements: []
110
110
  rubygems_version: 3.4.0.dev
111
- signing_key:
111
+ signing_key:
112
112
  specification_version: 4
113
113
  summary: Ruby/Poppler is a Ruby binding of poppler-glib.
114
114
  test_files: []