From patchwork Fri Oct 1 19:25:14 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: phodina X-Patchwork-Id: 33531 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id A9B0E27BBE3; Fri, 1 Oct 2021 20:26:28 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_MSPIKE_H2,SPF_HELO_PASS, T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 7604627BBE1 for ; Fri, 1 Oct 2021 20:26:28 +0100 (BST) Received: from localhost ([::1]:54180 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mWOAt-0004oB-Bs for patchwork@mira.cbaines.net; Fri, 01 Oct 2021 15:26:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56512) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mWOAU-0004n0-Nq for guix-patches@gnu.org; Fri, 01 Oct 2021 15:26:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45822) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mWOAU-0006Pq-GM for guix-patches@gnu.org; Fri, 01 Oct 2021 15:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mWOAU-0007Vu-DH for guix-patches@gnu.org; Fri, 01 Oct 2021 15:26:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#50949] [PATCH 2/5] gnu: Add python-sphinxcontrib-apidoc. References: In-Reply-To: Resent-From: phodina Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 01 Oct 2021 19:26:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50949 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 50949@debbugs.gnu.org Received: via spool by 50949-submit@debbugs.gnu.org id=B50949.163311633028828 (code B ref 50949); Fri, 01 Oct 2021 19:26:02 +0000 Received: (at 50949) by debbugs.gnu.org; 1 Oct 2021 19:25:30 +0000 Received: from localhost ([127.0.0.1]:57365 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWO9y-0007Uu-4w for submit@debbugs.gnu.org; Fri, 01 Oct 2021 15:25:30 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:16996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWO9w-0007Ug-A3 for 50949@debbugs.gnu.org; Fri, 01 Oct 2021 15:25:28 -0400 Date: Fri, 01 Oct 2021 19:25:14 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1633116318; bh=2ygOvqdV7T0O2KXgS+7nP0gZJHp1UrEPgF3sZUjsIKY=; h=Date:To:From:Reply-To:Subject:From; b=jWJDNFhm46GVYUALNUqYi4Xbc+xMwGpy2AyLzeFfiQJ2Xsd7/j2MF+L2xJkX5TLrH 81qc3lS/vq5vDxQO8D1CuFXsnjNJoKXc3SZCc36RVoJ3GgL4jfOoFWPxsUx47it+5u nurvM9MPsdq/IG1nqdZ2hSwb9EWjr1oTnkK/4NTo= Message-ID: MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" Reply-to: phodina X-ACL-Warn: , phodina via Guix-patches X-Patchwork-Original-From: phodina via Guix-patches via From: phodina X-getmail-retrieved-from-mailbox: Patches * gnu/packages/sphinx.scm (python-sphinxcontrib-doc): New variable. --- 2.32.0 diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index a7a3443707..48c2f6d32a 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -154,6 +154,31 @@ sources.") ("python2-six" ,python2-six) ("python2-sphinxcontrib-websupport" ,python2-sphinxcontrib-websupport)))))) +(define-public python-sphinxcontrib-apidoc + (package + (name "python-sphinxcontrib-apidoc") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-apidoc" version)) + (sha256 + (base32 + "1f9zfzggs8a596jw51fpfmr149n05mrlyy859iydazbvry9gb6vj")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; Requires python-pytest<4.0 + (native-inputs `(("python-pytest" ,python-pytest) + ("python-sphinx" ,python-sphinx) + ("python-pbr" ,python-pbr-5) + ("python-pre-commit" ,python-pre-commit) + ("python-testrepository" ,python-testrepository))) + (home-page "https://github.com/sphinx-contrib/apidoc") + (synopsis "Sphinx extension for running @code{sphinx-apidoc}") + (description "This package provides Sphinx extension for running +@code{sphinx-apidoc} on each build.") + (license license:bsd-2))) + (define-public python-sphinxcontrib-applehelp (package (name "python-sphinxcontrib-applehelp")