aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2019-09-04 16:59:11 +0000
committerKai Knoblich <kai@FreeBSD.org>2019-09-04 16:59:11 +0000
commit986617ff3e01097cec60ea4d93a7ff922acd1e87 (patch)
tree83c32d86c56c4e167877848326dc12e7474ace23
parent1e95a1699ae0a911d4cf4b73b584a75198f4ca31 (diff)
downloadports-986617ff3e01097cec60ea4d93a7ff922acd1e87.tar.gz
ports-986617ff3e01097cec60ea4d93a7ff922acd1e87.zip
MFH: r511043
graphics/impressive: Update to 0.12.1 * Remove patch for impressive.py that no longer applies. [1] Changelog: * Fixed crash in crash reporter with recent Pillow versions [1] * Fixed crash with recent PyGame versions when non-latin characters appeared in slide titles * Fixed page rotation * Fixed -x/--fade mode * Fixed directory playback mode * More robust PDF hyperlink parser (page boxes can now be PDF references) * Added option to temporarily inhibit automatic slideshows * Default keybinding: [A] key, actions: auto-start, auto-stop, auto-toggle Approved by: ports-secteam (miwi)
Notes
Notes: svn path=/branches/2019Q3/; revision=511100
-rw-r--r--graphics/impressive/Makefile3
-rw-r--r--graphics/impressive/distinfo6
-rw-r--r--graphics/impressive/files/patch-impressive.py18
3 files changed, 4 insertions, 23 deletions
diff --git a/graphics/impressive/Makefile b/graphics/impressive/Makefile
index 103b07c6c388..4b9aae702612 100644
--- a/graphics/impressive/Makefile
+++ b/graphics/impressive/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= impressive
-PORTVERSION= 0.12.0
-PORTREVISION= 1
+PORTVERSION= 0.12.1
CATEGORIES= graphics python
MASTER_SITES= SF/${PORTNAME}/Impressive/${PORTVERSION}/
DISTNAME= Impressive-${PORTVERSION}
diff --git a/graphics/impressive/distinfo b/graphics/impressive/distinfo
index 0b8f8db237b3..4d82ffff6ddb 100644
--- a/graphics/impressive/distinfo
+++ b/graphics/impressive/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1558123299
-SHA256 (Impressive-0.12.0.tar.gz) = 7dc78de333e4a942036ba4bda53358799f493114f2f655b2ab2689b6fdc0587d
-SIZE (Impressive-0.12.0.tar.gz) = 209514
+TIMESTAMP = 1567453628
+SHA256 (Impressive-0.12.1.tar.gz) = 74a331f41e39a363b362dcadf861e3a300351d5ad5cfe033b5d47215c886f1e4
+SIZE (Impressive-0.12.1.tar.gz) = 210928
diff --git a/graphics/impressive/files/patch-impressive.py b/graphics/impressive/files/patch-impressive.py
deleted file mode 100644
index 094df9ec5c13..000000000000
--- a/graphics/impressive/files/patch-impressive.py
+++ /dev/null
@@ -1,18 +0,0 @@
---- impressive.py.orig 2018-02-04 20:31:39 UTC
-+++ impressive.py
-@@ -6332,7 +6332,14 @@ def run_main():
- print >>sys.stderr, "Impressive version:", __version__
- print >>sys.stderr, "Python version:", sys.version
- print >>sys.stderr, "PyGame version:", pygame.__version__
-- print >>sys.stderr, "PIL version:", Image.VERSION
-+ if hasattr(Image, "__version__"): # Pillow >= 5.2
-+ print >>sys.stderr, "PIL version: Pillow", Image.__version__
-+ elif hasattr(Image, "PILLOW_VERSION"): # Pillow < 7.0
-+ print >>sys.stderr, "PIL version: Pillow", Image.PILLOW_VERSION
-+ elif hasattr(Image, "VERSION"): # classic PIL or Pillow 1.x
-+ print >>sys.stderr, "PIL version: classic", Image.VERSION
-+ else:
-+ print >>sys.stderr, "PIL version: unknown"
- if PDFRenderer:
- print >>sys.stderr, "PDF renderer:", PDFRenderer.name
- else: