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 +4 -4
- data/README.md +3 -3
- data/dependency-check/Rakefile +1 -1
- data/poppler.gemspec +2 -2
- data/test/run-test.rb +4 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e13006a8149108308b62fa4bd660284c26b02b15d8742b053e4f1aed703ee0d
|
|
4
|
+
data.tar.gz: 96b426311f7c14ac3ec2399b730b8062a0abdf92e6b7d1f03ab0166375d8a477
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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-
|
|
8
|
-
* [Ruby/Gio2](https://github.com/ruby-
|
|
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-
|
|
25
|
+
* https://github.com/ruby-gnome/ruby-gnome
|
data/dependency-check/Rakefile
CHANGED
|
@@ -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-
|
|
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-
|
|
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.
|
|
4
|
+
version: 3.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- The Ruby-
|
|
7
|
+
- The Ruby-GNOME Project Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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: []
|