View | Details | Raw Unified | Return to bug 212496 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-3 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	cloud_sptheme
4
PORTNAME=	cloud_sptheme
5
PORTVERSION=	1.6
5
PORTVERSION=	1.7.1
6
PORTREVISION=	1
6
PORTREVISION=	1
7
CATEGORIES=	textproc python
7
CATEGORIES=	textproc python
8
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
Lines 14-23 Link Here
14
14
15
LICENSE=	BSD3CLAUSE
15
LICENSE=	BSD3CLAUSE
16
16
17
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx
17
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>1.3=:textproc/py-sphinx
18
RUN_DEPENDS:=	${BUILD_DEPENDS}
18
RUN_DEPENDS:=	${BUILD_DEPENDS}
19
19
20
BROKEN=		does not build
20
#BROKEN=		does not build
21
21
22
USES=		python
22
USES=		python
23
USE_PYTHON=	distutils autoplist
23
USE_PYTHON=	distutils autoplist
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (python/cloud_sptheme-1.6.tar.gz) = 658e8cf1479155faded4d88abd9dea8698b19baf2276bc8a25d51202a7bdce35
1
TIMESTAMP = 1473371879
2
SIZE (python/cloud_sptheme-1.6.tar.gz) = 412913
2
SHA256 (python/cloud_sptheme-1.7.1.tar.gz) = 7ea3b2da3dd4c12c8a1f859327d1bb5decae9aaa358a1a1cb2f4b772c955a97e
3
SIZE (python/cloud_sptheme-1.7.1.tar.gz) = 103871
(-)files/patch-index__styling.py (+14 lines)
Line 0 Link Here
1
--- cloud_sptheme/ext/index_styling.py.orig	2016-09-08 20:32:45 UTC
2
+++ cloud_sptheme/ext/index_styling.py
3
@@ -49,8 +49,9 @@ def mangle_index(app, pagename, template
4
     fmt = format_index_name
5
     for key, entries in ctx['genindexentries']:
6
         for idx, entry in enumerate(entries):
7
-            name, (links, subitems) = entry
8
-            entries[idx] = fmt(name), (links, subitems)
9
+            name, data = entry
10
+            entries[idx] = fmt(name), data
11
+            subitems = data[1]
12
             for idx, entry in enumerate(subitems):
13
                 name, links = entry
14
                 subitems[idx] = fmt(name), links

Return to bug 212496