From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:32919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPwiS-0004kz-6G for guix-patches@gnu.org; Sun, 12 May 2019 18:13:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPwiP-0006la-4O for guix-patches@gnu.org; Sun, 12 May 2019 18:13:08 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58338) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hPwiP-0006ku-0x for guix-patches@gnu.org; Sun, 12 May 2019 18:13:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hPwiN-0007yL-Rm for guix-patches@gnu.org; Sun, 12 May 2019 18:13:03 -0400 Subject: [bug#35705] [PATCH 5/9] gnu: Add python-sphinxcontrib-devhelp. Resent-Message-ID: From: Marius Bakke Date: Mon, 13 May 2019 00:12:17 +0200 Message-Id: <20190512221221.17781-5-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-devhelp): 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 4e5b791a6f..b184dc4e8c 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -115,6 +115,26 @@ sources.") Apple help books.") (license license:bsd-2))) +(define-public python-sphinxcontrib-devhelp + (package + (name "python-sphinxcontrib-devhelp") + (version "1.0.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-devhelp" version)) + (sha256 + (base32 + "0d2a57kqxl72i55rns0ly1i044y2x234b9sdi89ajc3kjdvv0r3c")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ;XXX: circular dependency on Sphinx + (home-page "https://github.com/sphinx-doc/sphinxcontrib-devhelp") + (synopsis "Sphinx extension for creating Devhelp documents") + (description + "@code{sphinxcontrib-devhelp} is a Sphinx extension which outputs +@url{Devhelp,https://wiki.gnome.org/Apps/Devhelp} documents.") + (license license:bsd-2))) + (define-public python-sphinxcontrib-newsfeed (package (name "python-sphinxcontrib-newsfeed") -- 2.21.0