From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:32834) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPwiO-0004jZ-Ay for guix-patches@gnu.org; Sun, 12 May 2019 18:13:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPwiN-0006eA-7C for guix-patches@gnu.org; Sun, 12 May 2019 18:13:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58334) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hPwiN-0006dW-3N for guix-patches@gnu.org; Sun, 12 May 2019 18:13:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hPwiM-0007y6-Rl for guix-patches@gnu.org; Sun, 12 May 2019 18:13:02 -0400 Subject: [bug#35705] [PATCH 3/9] gnu: Add python-sphinxcontrib-serializinghtml Resent-Message-ID: From: Marius Bakke Date: Mon, 13 May 2019 00:12:15 +0200 Message-Id: <20190512221221.17781-3-mbakke@fastmail.com> In-Reply-To: <20190512221221.17781-1-mbakke@fastmail.com> References: <20190512221221.17781-1-mbakke@fastmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35705@debbugs.gnu.org * gnu/packages/sphinx.scm (python-sphinxcontrib-serializinghtml): New public variable. --- gnu/packages/sphinx.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 82a0df2499..1810716e6b 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -137,6 +137,26 @@ commands into documents, helping you to keep your command examples up to date.") (home-page "https://github.com/lunaryorn/sphinxcontrib-programoutput") (license license:bsd-2))) +(define-public python-sphinxcontrib-serializinghtml + (package + (name "python-sphinxcontrib-serializinghtml") + (version "1.1.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-serializinghtml" version)) + (sha256 + (base32 + "09sj3nwahwr4iymg86gczbh151cfczqhf2kclbblzh2jh0zv7vy0")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ;XXX: circular dependency on Sphinx + (home-page "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml") + (synopsis "Sphinx extension to serialize HTML files") + (description + "@code{sphinxcontrib-serializinghtml} is a Sphinx extension which outputs +\"serialized\" HTML files.") + (license license:bsd-2))) + (define-public python-sphinxcontrib-svg2pdfconverter (package (name "python-sphinxcontrib-svg2pdfconverter") -- 2.21.0