From owner-svn-ports-all@freebsd.org Thu Sep 8 23:37:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FFDFBD25CC; Thu, 8 Sep 2016 23:37:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46FD794; Thu, 8 Sep 2016 23:37:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88NbN1n081663; Thu, 8 Sep 2016 23:37:23 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88NbNlP081661; Thu, 8 Sep 2016 23:37:23 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609082337.u88NbNlP081661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 8 Sep 2016 23:37:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421590 - in head/textproc/py-cloud_sptheme: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 23:37:24 -0000 Author: jbeich Date: Thu Sep 8 23:37:23 2016 New Revision: 421590 URL: https://svnweb.freebsd.org/changeset/ports/421590 Log: textproc/py-cloud_sptheme: unbreak after r415071 PR: 212496 Submitted by: w.schwarzenfeld@utanet.at Added: head/textproc/py-cloud_sptheme/files/ head/textproc/py-cloud_sptheme/files/patch-index__styling.py (contents, props changed) Modified: head/textproc/py-cloud_sptheme/Makefile (contents, props changed) Modified: head/textproc/py-cloud_sptheme/Makefile ============================================================================== --- head/textproc/py-cloud_sptheme/Makefile Thu Sep 8 22:11:05 2016 (r421589) +++ head/textproc/py-cloud_sptheme/Makefile Thu Sep 8 23:37:23 2016 (r421590) @@ -14,11 +14,9 @@ COMMENT= Sphinx theme LICENSE= BSD3CLAUSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1:textproc/py-sphinx RUN_DEPENDS:= ${BUILD_DEPENDS} -BROKEN= does not build - USES= python USE_PYTHON= distutils autoplist PYDISTUTILS_BUILDARGS= build_sphinx -E Added: head/textproc/py-cloud_sptheme/files/patch-index__styling.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-cloud_sptheme/files/patch-index__styling.py Thu Sep 8 23:37:23 2016 (r421590) @@ -0,0 +1,14 @@ +--- 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