From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 09 10:21:00 2023 Received: (at submit) by debbugs.gnu.org; 9 Jul 2023 14:21:01 +0000 Received: from localhost ([127.0.0.1]:46955 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVHY-0000wQ-Mg for submit@debbugs.gnu.org; Sun, 09 Jul 2023 10:21:00 -0400 Received: from lists.gnu.org ([209.51.188.17]:37962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVHV-0000wH-OZ for submit@debbugs.gnu.org; Sun, 09 Jul 2023 10:20:59 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qIVHV-0003sO-Gk for guix-patches@gnu.org; Sun, 09 Jul 2023 10:20:57 -0400 Received: from freeshell.de ([2a01:4f8:231:482b::2]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qIVHT-0002r7-DD for guix-patches@gnu.org; Sun, 09 Jul 2023 10:20:57 -0400 Received: from localhost.localdomain (cst-prg-7-26.cust.vodafone.cz [46.135.7.26]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id E6FC8B3F35A3 for ; Sun, 9 Jul 2023 16:20:42 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: guix-patches@gnu.org Subject: [PATCH 0/2] Add python-sphinx-autoapi Date: Sun, 9 Jul 2023 16:20:39 +0200 Message-ID: <20230709142039.19011-1-wz@freeshell.de> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f8:231:482b::2; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) python-anyascii is not an input of python-sphinx-autoapi at the packaged version. However, it is an input for the current version of python-sphinx-autoapi, and it will come handy when the latter can be updated. Wiktor Żelazny (2): gnu: Add python-anyascii. gnu: Add python-sphinx-autoapi. gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ gnu/packages/sphinx.scm | 24 ++++++++++++++++++++++++ 2 files changed, 42 insertions(+) base-commit: 8306d3e52902c0d9cffd9a79b379c917c8cf49be -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 09 10:22:12 2023 Received: (at 64541) by debbugs.gnu.org; 9 Jul 2023 14:22:12 +0000 Received: from localhost ([127.0.0.1]:46960 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVIi-0000zE-0l for submit@debbugs.gnu.org; Sun, 09 Jul 2023 10:22:12 -0400 Received: from freeshell.de ([116.202.128.144]:47540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVIg-0000z0-75 for 64541@debbugs.gnu.org; Sun, 09 Jul 2023 10:22:10 -0400 Received: from localhost.localdomain (cst-prg-7-26.cust.vodafone.cz [46.135.7.26]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id C4BE5B3F35C3 for <64541@debbugs.gnu.org>; Sun, 9 Jul 2023 16:22:03 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: 64541@debbugs.gnu.org Subject: [PATCH 1/2] gnu: Add python-anyascii. Date: Sun, 9 Jul 2023 16:21:38 +0200 Message-ID: <20230709142139.19113-1-wz@freeshell.de> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 64541 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/python-xyz.scm (python-anyascii): New variable. --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f196d7a816..6e1d25cd6c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33003,6 +33003,24 @@ (define-public python-langcodes install @code{python-language-data}.") (license license:expat))) +(define-public python-anyascii + (package + (name "python-anyascii") + (version "0.3.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "anyascii" version)) + (sha256 + (base32 + "0c27rr3fmc1cx9mkmgx94zdf9yil0napzfkwpjw2bqjghkpk4pcx")))) + (build-system pyproject-build-system) + (native-inputs (list python-flit-core)) + (home-page "https://anyascii.com") + (synopsis "Unicode to ASCII transliteration") + (description "@code{anyascii} converts Unicode characters to their best +ASCII representation.") + (license license:isc))) + (define-public python-geomet (package (name "python-geomet") -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 09 10:22:18 2023 Received: (at 64541) by debbugs.gnu.org; 9 Jul 2023 14:22:18 +0000 Received: from localhost ([127.0.0.1]:46963 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVIo-0000zZ-Az for submit@debbugs.gnu.org; Sun, 09 Jul 2023 10:22:18 -0400 Received: from freeshell.de ([116.202.128.144]:50318) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIVIn-0000zF-BM for 64541@debbugs.gnu.org; Sun, 09 Jul 2023 10:22:17 -0400 Received: from localhost.localdomain (cst-prg-7-26.cust.vodafone.cz [46.135.7.26]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 102D4B3F35C6 for <64541@debbugs.gnu.org>; Sun, 9 Jul 2023 16:22:04 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: 64541@debbugs.gnu.org Subject: [PATCH 2/2] gnu: Add python-sphinx-autoapi. Date: Sun, 9 Jul 2023 16:21:39 +0200 Message-ID: <20230709142139.19113-2-wz@freeshell.de> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230709142139.19113-1-wz@freeshell.de> References: <20230709142139.19113-1-wz@freeshell.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 64541 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/sphinx.scm (python-sphinx-autoapi): New variable. --- gnu/packages/sphinx.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 65b3dc4ec5..e5d16996aa 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1197,3 +1197,27 @@ (define-public python-pydata-sphinx-theme "This package provides a Bootstrap-based Sphinx theme from the PyData community.") (license license:bsd-3))) + +(define-public python-sphinx-autoapi + (package + (name "python-sphinx-autoapi") + (version "2.0.1") ;higher versions require Sphinx >= 5.2.0 + (source (origin + (method url-fetch) + (uri (pypi-uri "sphinx-autoapi" version)) + (sha256 + (base32 + "1fmss6ihjjx22nmjzy7qiapj1f2b86gd1vycn3zg8lh8q9l7kx6d")))) + (build-system pyproject-build-system) + (native-inputs (list python-sphinx)) + (propagated-inputs (list python-astroid python-jinja2 python-pyyaml + python-sphinx python-unidecode)) + (home-page "https://github.com/readthedocs/sphinx-autoapi") + (synopsis "Sphinx API documentation generator") + (description + "Sphinx AutoAPI is a Sphinx extension for generating complete +API documentation without needing to load, run, or import the project being +documented. In contrast to the traditional Sphinx @code{autodoc}, which +requires manual authoring and uses code imports, AutoAPI finds and generates +documentation by parsing source code.") + (license license:expat))) -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 22 09:53:36 2025 Received: (at 64541-done) by debbugs.gnu.org; 22 Feb 2025 14:53:37 +0000 Received: from localhost ([127.0.0.1]:52606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tlqsl-0001DP-Ce for submit@debbugs.gnu.org; Sat, 22 Feb 2025 09:53:34 -0500 Received: from msg-2.mailo.com ([213.182.54.12]:34098 helo=mailo.com) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tlqsX-0001Ad-NM for 64541-done@debbugs.gnu.org; Sat, 22 Feb 2025 09:53:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=nicolasgoaziou.fr; s=mailo; t=1740235990; bh=jFX1hF3U58GtZOPgDxBWpauiXOgP3Mhvtjm7sEOBWm8=; h=X-EA-Auth:From:To:Cc:Subject:In-Reply-To:Date:Message-ID: MIME-Version:Content-Type; b=lErU/OrZpgGb4zIUFCQWbKt0dbGGGHDiBpRMlCPvr3GcIIHiVrlRtUkcrkTWZjiIZ HF33mWJDQASs7ArNS7rPziB3wPOSYTSu+HmmxI8uP2Dty+0kn4pwVPPwuBBdzcQhYj 3UOEPiv8gLLY3o7cCHmbZ5MbxydpxUEutk0UhUcg= Received: by b221-3.in.mailobj.net [192.168.90.23] with ESMTP via ip-20.mailobj.net [213.182.54.20] Sat, 22 Feb 2025 15:53:10 +0100 (CET) X-EA-Auth: MlTTa5Y2zrlRHxMH5a7IKE28M6KsENG6sygQ8/GzYFBNuJiH0H+d0vxe+DOH+Z1mO0PqGSeYIek1e6Ww0RHGNTFdatAXBp37Cw1CSFc13Zc= From: Nicolas Goaziou To: 64541-done@debbugs.gnu.org Subject: Re: [PATCH 0/2] Add python-sphinx-autoapi In-Reply-To: <20230709142139.19113-2-wz@freeshell.de> Date: Sat, 22 Feb 2025 15:52:54 +0100 Message-ID: <87pljauj3t.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 64541-done Cc: Wiktor =?utf-8?B?w4XCu2VsYXpueQ==?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, > * gnu/packages/sphinx.scm (python-sphinx-autoapi): New variable. Applied the whole set. Thank you. Regards, -- Nicolas Goaziou From unknown Tue Jun 17 21:54:59 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 23 Mar 2025 11:24:32 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator