aboutsummaryrefslogtreecommitdiffstats
path: root/textproc
diff options
context:
space:
mode:
authorwen <wen@FreeBSD.org>2016-12-23 15:55:08 +0800
committerwen <wen@FreeBSD.org>2016-12-23 15:55:08 +0800
commitd5cd0e7ad65d1398dffad6dba73863a61a3c9b19 (patch)
tree69f2b3988a802336ee56b968b8cba86fa88aad70 /textproc
parenteae4cb08841058223d8a508a1d62c9f5876df8f9 (diff)
downloadfreebsd-ports-gnome-d5cd0e7ad65d1398dffad6dba73863a61a3c9b19.tar.gz
freebsd-ports-gnome-d5cd0e7ad65d1398dffad6dba73863a61a3c9b19.tar.zst
freebsd-ports-gnome-d5cd0e7ad65d1398dffad6dba73863a61a3c9b19.zip
- Update to 1.8.0
PR: 215453 Submitted by: joneum@bsdproject.de
Diffstat (limited to 'textproc')
-rw-r--r--textproc/py-cloud_sptheme/Makefile3
-rw-r--r--textproc/py-cloud_sptheme/distinfo6
-rw-r--r--textproc/py-cloud_sptheme/files/patch-index__styling.py14
3 files changed, 4 insertions, 19 deletions
diff --git a/textproc/py-cloud_sptheme/Makefile b/textproc/py-cloud_sptheme/Makefile
index b44966ac0c5c..cf10fbfa4584 100644
--- a/textproc/py-cloud_sptheme/Makefile
+++ b/textproc/py-cloud_sptheme/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= cloud_sptheme
-PORTVERSION= 1.7.1
-PORTREVISION= 1
+PORTVERSION= 1.8.0
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/textproc/py-cloud_sptheme/distinfo b/textproc/py-cloud_sptheme/distinfo
index aa10fbee050f..af6fd8429fa8 100644
--- a/textproc/py-cloud_sptheme/distinfo
+++ b/textproc/py-cloud_sptheme/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1473371879
-SHA256 (python/cloud_sptheme-1.7.1.tar.gz) = 7ea3b2da3dd4c12c8a1f859327d1bb5decae9aaa358a1a1cb2f4b772c955a97e
-SIZE (python/cloud_sptheme-1.7.1.tar.gz) = 103871
+TIMESTAMP = 1482479245
+SHA256 (python/cloud_sptheme-1.8.0.tar.gz) = 0deae6f4599031f84d30c4fe2d43f49667638c958419e40c3ad0a7a1ccc2d1b6
+SIZE (python/cloud_sptheme-1.8.0.tar.gz) = 116992
diff --git a/textproc/py-cloud_sptheme/files/patch-index__styling.py b/textproc/py-cloud_sptheme/files/patch-index__styling.py
deleted file mode 100644
index 43ead1289a61..000000000000
--- a/textproc/py-cloud_sptheme/files/patch-index__styling.py
+++ /dev/null
@@ -1,14 +0,0 @@
---- cloud_sptheme/ext/index_styling.py.orig 2016-09-08 20:32:45 UTC
-+++ cloud_sptheme/ext/index_styling.py
-@@ -49,8 +49,9 @@ def mangle_index(app, pagename, template
- fmt = format_index_name
- for key, entries in ctx['genindexentries']:
- for idx, entry in enumerate(entries):
-- name, (links, subitems) = entry
-- entries[idx] = fmt(name), (links, subitems)
-+ name, data = entry
-+ entries[idx] = fmt(name), data
-+ subitems = data[1]
- for idx, entry in enumerate(subitems):
- name, links = entry
- subitems[idx] = fmt(name), links