poppler 3.3.3 → 3.3.8

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: b2480ac17782c4bf82a0147711e6ec95953218ec58936c36c09a12ad5c5b2bbf
4
- data.tar.gz: 6179294b81290156d47075d34a9e6f011fcffd377a669e1becdde1c7f4a46088
3
+ metadata.gz: 3e13006a8149108308b62fa4bd660284c26b02b15d8742b053e4f1aed703ee0d
4
+ data.tar.gz: 96b426311f7c14ac3ec2399b730b8062a0abdf92e6b7d1f03ab0166375d8a477
5
5
  SHA512:
6
- metadata.gz: dec213783ea375fd5859c6966b412753a557367ab3e7492fb3f9602927fa58ade6638cc642420de32557bc90e6fd62c3301ec1173a1064e431d3f362b4fc9f92
7
- data.tar.gz: eb68eea6875b4303bef009a1b1be302a08b21acf6daf0916f04f2f795b56693ca85f1cb633604fe7969f0a6a176f4ef394a2011383d993862ba0a2aed5ae8992
6
+ metadata.gz: 7fbec55933d497835ecd627b2f358b8f39f42d7fe0acec48c665f04c920a79792ce90534aa7c9cc5ef9031d41aa7046ee78b949881f9d768fab031244be1330d
7
+ data.tar.gz: 42237db2e4a7ad3975076a18a28ba839f71b707c592efee7173446c98cfb29c5167d58f9fa4c1b5bc16c912a2573bcbe87992514910d778e0d600fe97b1d322a
data/README.md CHANGED
@@ -4,8 +4,8 @@ Ruby/Poppler is a Ruby binding of [poppler-glib](https://developer.gnome.org/pop
4
4
 
5
5
  ## Requirements
6
6
 
7
- * [Ruby/GObject-Introspection](https://github.com/ruby-gnome2/ruby-gnome2)
8
- * [Ruby/Gio2](https://github.com/ruby-gnome2/ruby-gnome2)
7
+ * [Ruby/GObject-Introspection](https://github.com/ruby-gnome/ruby-gnome)
8
+ * [Ruby/Gio2](https://github.com/ruby-gnome/ruby-gnome)
9
9
  * [rcairo](https://github.com/rcairo/rcairo)
10
10
 
11
11
  ## Install
@@ -22,4 +22,4 @@ under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
22
22
  ## Project Websites
23
23
 
24
24
  * https://ruby-gnome2.osdn.jp/
25
- * https://github.com/ruby-gnome2/ruby-gnome2
25
+ * https://github.com/ruby-gnome/ruby-gnome
@@ -33,7 +33,7 @@ namespace :dependency do
33
33
  unless NativePackageInstaller.install(:alt_linux => "libpoppler-glib-devel",
34
34
  :debian => "libpoppler-glib-dev",
35
35
  :redhat => "pkgconfig(poppler-glib)",
36
- :arch_linux => "poppler",
36
+ :arch_linux => "poppler-glib",
37
37
  :homebrew => "poppler",
38
38
  :macports => "poppler",
39
39
  :msys2 => "poppler")
data/poppler.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- ruby -*-
2
2
  #
3
- # Copyright (C) 2018 Ruby-GNOME2 Project Team
3
+ # Copyright (C) 2018 Ruby-GNOME Project Team
4
4
  #
5
5
  # This library is free software; you can redistribute it and/or
6
6
  # modify it under the terms of the GNU Lesser General Public
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.name = "poppler"
23
23
  s.summary = "Ruby/Poppler is a Ruby binding of poppler-glib."
24
24
  s.description = "Ruby/Poppler is a Ruby binding of poppler-glib."
25
- s.author = "The Ruby-GNOME2 Project Team"
25
+ s.author = "The Ruby-GNOME Project Team"
26
26
  s.email = "ruby-gnome2-devel-en@lists.sourceforge.net"
27
27
  s.homepage = "https://ruby-gnome2.osdn.jp/"
28
28
  s.licenses = ["LGPL-2.1+"]
data/test/run-test.rb CHANGED
@@ -22,6 +22,8 @@ base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
22
22
  have_make = system("which make > /dev/null")
23
23
 
24
24
  glib_dir = File.expand_path(File.join(base_dir, "..", "glib2"))
25
+ gio_dir = File.expand_path(File.join(base_dir, "..", "gio2"))
26
+ cairo_gobject_dir = File.expand_path(File.join(base_dir, "..", "cairo-gobject"))
25
27
  gdk_pixbuf_dir = File.expand_path(File.join(base_dir, "..", "gdk_pixbuf2"))
26
28
  pango_dir = File.join(File.join(base_dir, ".." , "pango"))
27
29
  gobject_introspection_dir =
@@ -32,6 +34,8 @@ require 'glib-test-init'
32
34
 
33
35
  [
34
36
  [glib_dir, "glib2"],
37
+ [gio_dir, "gio2"],
38
+ [cairo_gobject_dir, "cairo-gobject"],
35
39
  [gdk_pixbuf_dir, "gdk_pixbuf2"],
36
40
  [pango_dir, "pango"],
37
41
  [gobject_introspection_dir, "gobject-introspection"],
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.3.3
4
+ version: 3.3.8
5
5
  platform: ruby
6
6
  authors:
7
- - The Ruby-GNOME2 Project Team
7
+ - The Ruby-GNOME Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-09 00:00:00.000000000 Z
11
+ date: 2019-09-09 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.3.3
19
+ version: 3.3.8
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.3.3
26
+ version: 3.3.8
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.3.3
33
+ version: 3.3.8
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.3.3
40
+ version: 3.3.8
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: []