From patchwork Sun Jul 9 14:21:38 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Wiktor_=C5=BBelazny?= X-Patchwork-Id: 51651 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 5A8DE27BBEA; Sun, 9 Jul 2023 15:23:34 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id C70BD27BBE2 for ; Sun, 9 Jul 2023 15:23:33 +0100 (BST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qIVJY-0004Bs-Sl; Sun, 09 Jul 2023 10:23:04 -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 1qIVJW-0004Ao-SR for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qIVJW-00039V-Kb for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qIVJW-00010q-G0 for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#64541] [PATCH 1/2] gnu: Add python-anyascii. References: <20230709142039.19011-1-wz@freeshell.de> In-Reply-To: <20230709142039.19011-1-wz@freeshell.de> Resent-From: Wiktor =?utf-8?q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 09 Jul 2023 14:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 64541 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 64541@debbugs.gnu.org Received: via spool by 64541-submit@debbugs.gnu.org id=B64541.16889125323801 (code B ref 64541); Sun, 09 Jul 2023 14:23:02 +0000 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: Wiktor =?utf-8?q?=C5=BBelazny?= 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 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-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches * 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") From patchwork Sun Jul 9 14:21:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Wiktor_=C5=BBelazny?= X-Patchwork-Id: 51650 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 1FAD827BBE9; Sun, 9 Jul 2023 15:23:25 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 0925127BBE2 for ; Sun, 9 Jul 2023 15:23:23 +0100 (BST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qIVJY-0004Bj-Pa; Sun, 09 Jul 2023 10:23:04 -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 1qIVJX-0004Aw-9C for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qIVJX-00039b-0V for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qIVJW-00010y-Sh for guix-patches@gnu.org; Sun, 09 Jul 2023 10:23:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#64541] [PATCH 2/2] gnu: Add python-sphinx-autoapi. Resent-From: Wiktor =?utf-8?q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 09 Jul 2023 14:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 64541 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 64541@debbugs.gnu.org Received: via spool by 64541-submit@debbugs.gnu.org id=B64541.16889125383821 (code B ref 64541); Sun, 09 Jul 2023 14:23:02 +0000 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: Wiktor =?utf-8?q?=C5=BBelazny?= 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 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-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches * 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)))