From debbugs-submit-bounces@debbugs.gnu.org Thu May 06 15:18:16 2021 Received: (at submit) by debbugs.gnu.org; 6 May 2021 19:18:16 +0000 Received: from localhost ([127.0.0.1]:39201 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lejVh-0006x9-VW for submit@debbugs.gnu.org; Thu, 06 May 2021 15:18:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:41260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lejVe-0006x3-Uj for submit@debbugs.gnu.org; Thu, 06 May 2021 15:18:08 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38480) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lejVe-0006DL-DX for guix-patches@gnu.org; Thu, 06 May 2021 15:18:06 -0400 Received: from mout02.posteo.de ([185.67.36.66]:42263) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lejVU-0007e8-Be for guix-patches@gnu.org; Thu, 06 May 2021 15:18:06 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id F25922400FE for ; Thu, 6 May 2021 21:17:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1620328671; bh=+7ZzTwbd4KoMYGHBXN/rHFDRJDzVXLsVQ9Ff5ty3OoQ=; h=From:To:Cc:Subject:Date:From; b=ViUB8NUvTO/6VlWKolblL1x1KJBa7iJa5x28HIupYf25KDpjfF7NcXGwVZR8q18ug hrao62Hv7x0Go56CLF+hAVUoCEiHbi/igsU/c8/WxP40iscnW9CPMJlr1emGPlpsIZ s36A9jCHu9DRWZv6sOeVzOO0IKjNaapEX7PeHQhoukz2X52ZivO0U6ONcAFmRzQ3zA YpedeiIwoYoWHutJCL0ns8/eHm3W9nzkkt6k53w+CX9vL+O2/FdkLDKs3kMN+K2krs uj8+Gu0pkN3Eboeaiy01ISV6+i0YZiWXuTjrxYJQPdA1sQHuWIE0+Cdc+RcnWioHEL FF+nICDK8k2aw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Fbjyj32LCz6tmN; Thu, 6 May 2021 21:17:49 +0200 (CEST) From: Vinicius Monego To: guix-patches@gnu.org Subject: [PATCH 1/2] gnu: python-hypercorn: Rename to hypercorn. Date: Thu, 6 May 2021 19:17:26 +0000 Message-Id: <20210506191726.103393-1-monego@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=monego@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Vinicius Monego 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: -0.0 (/) * gnu/packages/python-web.scm (python-hypercorn): Rename to hypercorn. --- This package provides the same use case for "gunicorn" that we have and both are used as binaries. I keep the inputs propagated because hypercorn also exposes some functionality over a module. See https://pgjones.gitlab.io/hypercorn/how_to_guides/api_usage.html for reference. gnu/packages/python-web.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4f34502e86..223aca85a6 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -37,7 +37,7 @@ ;;; Copyright © 2020 Holger Peters ;;; Copyright © 2020 Noisytoot ;;; Copyright © 2020 Edouard Klein -;;; Copyright © 2020 Vinicius Monego +;;; Copyright © 2020, 2021 Vinicius Monego ;;; Copyright © 2020 Konrad Hinsen ;;; Copyright © 2020 Giacomo Leidi ;;; Copyright © 2021 Ekaitz Zarraga @@ -1575,9 +1575,9 @@ choose to use, ensuring that you can communicate via WebSockets, as defined in RFC6455, regardless of your programming paradigm.") (license license:expat))) -(define-public python-hypercorn +(define-public hypercorn (package - (name "python-hypercorn") + (name "hypercorn") (version "0.10.2") (source (origin -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Thu May 06 15:21:21 2021 Received: (at 48263) by debbugs.gnu.org; 6 May 2021 19:21:21 +0000 Received: from localhost ([127.0.0.1]:39218 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lejYn-0006zb-4d for submit@debbugs.gnu.org; Thu, 06 May 2021 15:21:21 -0400 Received: from mout01.posteo.de ([185.67.36.65]:50171) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lejYk-0006zV-IY for 48263@debbugs.gnu.org; Thu, 06 May 2021 15:21:19 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 551AD24002A for <48263@debbugs.gnu.org>; Thu, 6 May 2021 21:21:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1620328872; bh=5ixrKdAxmsPEiCqt//h4XGhRGQ5xH08X3sXfzKrc82g=; h=From:To:Cc:Subject:Date:From; b=cnW2S5hMcS6ccJx5CD2AJwTGoeRlao095493Z0A9CrMJgJmvTaaDRXvdb6k/IsEDW HGPFv218lktvApMj9xLb3/ongKymGl+3GBuXiXex1XvMDXxFGWoTnR2mj8HtYrIodZ ly1wW7TIHlEnjL5d7DGOrrRExbItwtFmsHN/UKs+BnsssfHKh1c3TqJxGiZCtAZjjl PuPKqUV0XPa/0XEt6DFMVTIbrn/AY/OftOBynHp20LEBWKBu+AdgV+Md74RsD2k1rL YNTti5ARY6xNclPZfKtxMfQt1r6okfV1xVoQar1dKtZwLsh56GgDH66bSDOIkhFZWw 8sqWKWg9jr25w== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Fbk2Z4fRWz9rxF; Thu, 6 May 2021 21:21:10 +0200 (CEST) From: Vinicius Monego To: 48263@debbugs.gnu.org Subject: [PATCH 2/2] gnu: hypercorn: Update to 0.11.2. Date: Thu, 6 May 2021 19:20:39 +0000 Message-Id: <20210506192039.103711-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48263 Cc: Vinicius Monego 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: -3.3 (---) * gnu/packages/python-web.scm (hypercorn): Update to 0.11.2. (python-h11): Update to 0.12.0. [arguments]: Add 'test-target' keyword. Do not replace check phase. [native-inputs]: Add python-pytest-runner. --- Both packages have to updated at the same time or the hypercorn tests will fail (if either is updated first). I rebuilt the h11 dependents succesfully. gnu/packages/python-web.scm | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 223aca85a6..59702ac62e 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -892,22 +892,19 @@ for use in Python programs that implement HTTP/2.") (define-public python-h11 (package (name "python-h11") - (version "0.9.0") + (version "0.12.0") (source (origin (method url-fetch) (uri (pypi-uri "h11" version)) (sha256 - (base32 "1qfad70h59hya21vrzz8dqyyaiqhac0anl2dx3s3k80gpskvrm1k")))) + (base32 "0hk0nll6qazsambp3kl8cxxsbl4gv5y9252qadyk0jky0sv2q8j7")))) (build-system python-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "pytest" "-vv")))))) + `(#:test-target "pytest")) (native-inputs - `(("python-pytest" ,python-pytest))) + `(("python-pytest" ,python-pytest) + ("python-pytest-runner" ,python-pytest-runner))) (home-page "https://github.com/python-hyper/h11") (synopsis "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1") (description @@ -1578,13 +1575,13 @@ RFC6455, regardless of your programming paradigm.") (define-public hypercorn (package (name "hypercorn") - (version "0.10.2") + (version "0.11.2") (source (origin (method url-fetch) (uri (pypi-uri "Hypercorn" version)) (sha256 - (base32 "15dgy47a18w2ls3hwykra1cyf7yzxmfjqnsqml482p12cxr2xwqr")))) + (base32 "16kai5d12f05jr89mj611zslxqri4cd7ixcgd6yhl211qlcyg8av")))) (build-system python-build-system) (arguments `(#:phases -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 24 14:42:55 2021 Received: (at 48263) by debbugs.gnu.org; 24 Jul 2021 18:42:55 +0000 Received: from localhost ([127.0.0.1]:46999 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7Mbv-0003Br-3e for submit@debbugs.gnu.org; Sat, 24 Jul 2021 14:42:55 -0400 Received: from albert.telenet-ops.be ([195.130.137.90]:42734) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m7Mbr-0003Be-Vg for 48263@debbugs.gnu.org; Sat, 24 Jul 2021 14:42:54 -0400 Received: from ptr-bvsjgyjmffd7q9timvx.18120a2.ip6.access.telenet.be ([IPv6:2a02:1811:8c09:9d00:aaf1:9810:a0b8:a55d]) by albert.telenet-ops.be with bizsmtp id Z6ip2500T0mfAB4066iqXi; Sat, 24 Jul 2021 20:42:50 +0200 Message-ID: <7f7754df6714b6c925b452e6dbde4c5a80afa017.camel@telenet.be> Subject: Re: [bug#49123] [PATCH 09/24] gnu: python-hyperframe: Update to 6.0.1. From: Maxime Devos To: Vinicius Monego , slg <0x2d@disroot.org>, 49123@debbugs.gnu.org, 48263@debbugs.gnu.org Date: Sat, 24 Jul 2021 20:42:44 +0200 In-Reply-To: References: <20210620010742.4259-1-0x2d@disroot.org> <20210620010742.4259-9-0x2d@disroot.org> <82f83ab33c4ae2b3892be9adc7f86730a121bcca.camel@telenet.be> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-rYJFWQGp60kLLoCDSsFL" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1627152170; bh=AsZd7BDGtiuc/72yNuE4+5WVzPlljzznwbw19YBayQE=; h=Subject:From:To:Date:In-Reply-To:References; b=tnJS03wa3hGDz1fRrrPl4aMRQstv/KBB1gEtvlBhAs7U/pr91ARCuQJNsjBEZ3OPI ZWuCxcp7KwqsCjxVeWOpHfH8DStyVFEU62AaM6QZ8rscm1DBe1kCvUHzusoZK4DL8b GjsPrJKRxDME7kfv+BXP+FcI+mHMLw1VuUvfTS5+za28pYX0QK2g2inaYHTi6AoMf9 AG99kB3amsicuzzpqU2oP5hHbbuysjlTWIkLBU7ar6tBSEE2LXFEeZml5NHl7O1+sa hLsb8bDDRUiunwMXSbgiv/Tv24Dl8O6uNHojRreQkutBlGCd5YlVOc38pqcEXaRS51 Qs9vZFI0PDOBg== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48263 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.7 (-) --=-rYJFWQGp60kLLoCDSsFL Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Vinicius Monego schreef op za 24-07-2021 om 18:30 [+0000]: > Em s=C3=A1b, 2021-07-24 =C3=A0s 17:22 +0200, Maxime Devos escreveu: >=20 > > The > > dependency 'python-hypercorn' now fails to compile (*). Aside from > > that, this > > patch LGTM. This build failure seems to be caused by the update of > > python-h11 > > (and not python-hyperframe), however. >=20 > That is true (see [1]). python-hypercorn will build again if updated to > the latest version. Ok, we'll have to apply the '48263' patch before the '49123' patch series then. FWIW, the '48263' patch looks good to me, but I only looked at the patch itself and didn't do any other checks. A comment about the commit message though: > * gnu/packages/python-web.scm (hypercorn): Update to 0.11.2. > (python-h11): Update to 0.12.0. > [arguments]: Add 'test-target' keyword. Do not replace check phase. > [native-inputs]: Add python-pytest-runner. > --- > Both packages have to updated at the same time > or the hypercorn tests will fail (if either is updated first). I > rebuilt the h11 dependents succesfully. Why not include this rationale in the commit message itself? > [1] http://issues.guix.gnu.org/48263 Greetings, Maxime. --=-rYJFWQGp60kLLoCDSsFL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYPxfJBccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7iSeAP0R3v9E2Zk396mR987Dv69RuiBI 5Y5HU7grW6bMPuPl2AEA4Epztpe5RaglmJEOdyZaoR2m1UImkVDS2u4xFJAMdAQ= =mk5s -----END PGP SIGNATURE----- --=-rYJFWQGp60kLLoCDSsFL-- From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 11 20:04:25 2021 Received: (at 48263) by debbugs.gnu.org; 12 Aug 2021 00:04:25 +0000 Received: from localhost ([127.0.0.1]:36985 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mDyCv-0001kb-8b for submit@debbugs.gnu.org; Wed, 11 Aug 2021 20:04:25 -0400 Received: from mout01.posteo.de ([185.67.36.65]:54713) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mDyCt-0001kM-2j for 48263@debbugs.gnu.org; Wed, 11 Aug 2021 20:04:24 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 453BC240026 for <48263@debbugs.gnu.org>; Thu, 12 Aug 2021 02:04:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1628726657; bh=0d1rVC5cBNrGAzw+KvMNvLVyVQNN0dIRA3Rf3mjGbPM=; h=From:To:Cc:Subject:Date:From; b=aAp77dIflh4xaTGEV4ozySMxEPT7GcRxd1LBhc/tGWubghx4hiRLpKPpOmLESntGM egxd1YzBBBssIFyX2hPelPxAl6Y7Cse7mhBfOYvzVHiIT7eRkPPk/Lcw6/gAMnAi4C RafVt/eDzj9OCYrhWxf5cjdM5rEdl1AwJ2a91hk4NlP9I3ljsTPBauMlZ+5c+7J/hm G9IHCE4oOqf8DpvllZV1WdbfbiomVgFVTD2flRZ7T1v08g3+bNCDW5+D+nu46UqeE0 pty+h6joOJ1ncrtm+V27ir/LYlu6T1PzCm35i1s0Zb/BOaIFbtkGbTsMy5ssIDe+50 w8V+ZKmzPxU4w== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4GlRkR65Xwz6tm6; Thu, 12 Aug 2021 02:04:15 +0200 (CEST) References: <20210620010742.4259-1-0x2d@disroot.org> <20210620010742.4259-9-0x2d@disroot.org> <82f83ab33c4ae2b3892be9adc7f86730a121bcca.camel@telenet.be> <7f7754df6714b6c925b452e6dbde4c5a80afa017.camel@telenet.be> From: Vinicius Monego To: Maxime Devos Subject: Re: [bug#49123] [PATCH 09/24] gnu: python-hyperframe: Update to 6.0.1. In-reply-to: <7f7754df6714b6c925b452e6dbde4c5a80afa017.camel@telenet.be> Date: Thu, 12 Aug 2021 00:04:13 +0000 Message-ID: <878s17cyv6.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48263 Cc: 48263@debbugs.gnu.org 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.7 (-) Maxime Devos writes: > A comment about the commit message though: >> * gnu/packages/python-web.scm (hypercorn): Update to 0.11.2. >> (python-h11): Update to 0.12.0. >> [arguments]: Add 'test-target' keyword. Do not replace check >> phase. >> [native-inputs]: Add python-pytest-runner. >> --- >> Both packages have to updated at the same time >> or the hypercorn tests will fail (if either is updated >> first). I >> rebuilt the h11 dependents succesfully. > > Why not include this rationale in the commit message itself? It would be an implicit fact for me, and it's uncommon to explain changes in the commit message. But if it improves clarity, I'm OK with including it. From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 30 13:36:00 2021 Received: (at 48263) by debbugs.gnu.org; 30 Oct 2021 17:36:00 +0000 Received: from localhost ([127.0.0.1]:58420 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsGu-0005GM-17 for submit@debbugs.gnu.org; Sat, 30 Oct 2021 13:36:00 -0400 Received: from mout01.posteo.de ([185.67.36.65]:48767) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsGr-0005Fz-V6 for 48263@debbugs.gnu.org; Sat, 30 Oct 2021 13:35:59 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id D2DD4240026 for <48263@debbugs.gnu.org>; Sat, 30 Oct 2021 19:35:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1635615350; bh=1YtNkOt4MC5WqUBwaN9PY2GGUDKeoUCGgbl1Hhfxceg=; h=From:To:Cc:Subject:Date:From; b=aZlRt8vw9hKZWCuwF2Vji0uCmfpiT+PU2yQirslpv8l0whq+fcAKeNMXXEiRCupc5 pENklrpR51pzZdpLWtYoBHYaIRaA2uRvSacxdO4r7rSZFU8NeuVytFQPa1/NMbToWL TeA0WC5dSAtDrD3R9TIrco8eQ3oLvMJuDcU9TdzMS8Qd/zKhnQHsQEj58sJ/w4P4qi 2q9rjJt3K4xJvdzPRmTgnU07GDsrfGwgyZLyZpH2AE8Us1Q7tskhouW/JmU9LDZ90S AE/2aicofO4QYqUH/sylI1/+6Sxx6hhi85c8nUTh5UjurxGGPAyjbzBrJYGcTaXkeg S1BAYtC2Gz/tQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HhRKK4tCDz6tm5; Sat, 30 Oct 2021 19:35:49 +0200 (CEST) From: Vinicius Monego To: 48263@debbugs.gnu.org Subject: [PATCH v2 1/3] gnu: python-hypercorn: Remove "python-" prefix from name. Date: Sat, 30 Oct 2021 17:30:46 +0000 Message-Id: <20211030173048.53815-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48263 Cc: Vinicius Monego 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: -3.3 (---) Hypercorn is mainly a CLI application but also supports a module interface. * gnu/packages/python-web.scm (python-hypercorn): New deprecated variable. (hypercorn): Renamed from the respective above. --- gnu/packages/python-web.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 2b5379950d..7a4e62ddf6 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1615,9 +1615,9 @@ choose to use, ensuring that you can communicate via WebSockets, as defined in RFC6455, regardless of your programming paradigm.") (license license:expat))) -(define-public python-hypercorn +(define-public hypercorn (package - (name "python-hypercorn") + (name "hypercorn") (version "0.10.2") (source (origin @@ -1633,6 +1633,7 @@ RFC6455, regardless of your programming paradigm.") (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "-vv")))))) + ;; Propagate because Hypercorn also exposes functionality over a module. (propagated-inputs `(("python-h11" ,python-h11) ("python-h2" ,python-h2) @@ -1657,6 +1658,9 @@ WebSockets (over HTTP/1 and HTTP/2), ASGI/2, and ASGI/3 specifications. It can utilise asyncio, uvloop, or trio worker types.") (license license:expat))) +(define-public python-hypercorn + (deprecated-package "python-hypercorn" hypercorn)) + (define-public python-querystring-parser (package (name "python-querystring-parser") base-commit: e1261ddd38cf02a0f046f3a5360502d659b4e7d4 -- 2.30.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 30 13:36:05 2021 Received: (at 48263) by debbugs.gnu.org; 30 Oct 2021 17:36:05 +0000 Received: from localhost ([127.0.0.1]:58425 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsGz-0005H1-9r for submit@debbugs.gnu.org; Sat, 30 Oct 2021 13:36:05 -0400 Received: from mout01.posteo.de ([185.67.36.65]:50153) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsGu-0005G6-5U for 48263@debbugs.gnu.org; Sat, 30 Oct 2021 13:36:00 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 7A69A240026 for <48263@debbugs.gnu.org>; Sat, 30 Oct 2021 19:35:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1635615354; bh=RImoSnQIVnUOoKci3GV8mHj/EcI1WEAmj4ZGej5wkXk=; h=From:To:Cc:Subject:Date:From; b=CbBiTktyTV7LTrNFwKahhoxOuxCM3IKuIJtJFmUu6TAI75WR8ZRfToHqaDrXinx9m hr9W3ttXtKu8tvvflZHLRHTqhuYO+/Hbg3stSntn7dTx07uvaALQeGeBd7PP3G6ZTl cZtcrSGSQmnwunoPKbo/XEeb3E5HwTC2N5VMGuqdB9ZtQ5rokV6CAMzTkhH7AgfZOa WrVW7iesOzlhJG5a84XhUKtqmuBBLvxMixHPncSBtUr+LGDRBWQmXpaHxpLr3APz0l pP1GgqhLcwuhvQ20nrVmW9w9Nw0a1WnY2UMR9bXItNoDYUJIrSmv+MX7ROHbAE+wg2 1fpHVJiJdIPsw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HhRKP4txgz6tmD; Sat, 30 Oct 2021 19:35:53 +0200 (CEST) From: Vinicius Monego To: 48263@debbugs.gnu.org Subject: [PATCH v2 2/3] gnu: hypercorn: Update to 0.11.2. Date: Sat, 30 Oct 2021 17:30:47 +0000 Message-Id: <20211030173048.53815-2-monego@posteo.net> In-Reply-To: <20211030173048.53815-1-monego@posteo.net> References: <20211030173048.53815-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48263 Cc: Vinicius Monego 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: -3.3 (---) * gnu/packages/python-web.scm (hypercorn): Update to 0.11.2. --- gnu/packages/python-web.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 7a4e62ddf6..287574301d 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1618,13 +1618,13 @@ RFC6455, regardless of your programming paradigm.") (define-public hypercorn (package (name "hypercorn") - (version "0.10.2") + (version "0.11.2") (source (origin (method url-fetch) (uri (pypi-uri "Hypercorn" version)) (sha256 - (base32 "15dgy47a18w2ls3hwykra1cyf7yzxmfjqnsqml482p12cxr2xwqr")))) + (base32 "16kai5d12f05jr89mj611zslxqri4cd7ixcgd6yhl211qlcyg8av")))) (build-system python-build-system) (arguments `(#:phases -- 2.30.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 30 13:36:07 2021 Received: (at 48263) by debbugs.gnu.org; 30 Oct 2021 17:36:08 +0000 Received: from localhost ([127.0.0.1]:58427 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsH1-0005HI-PN for submit@debbugs.gnu.org; Sat, 30 Oct 2021 13:36:07 -0400 Received: from mout01.posteo.de ([185.67.36.65]:55015) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mgsGz-0005GL-2V for 48263@debbugs.gnu.org; Sat, 30 Oct 2021 13:36:05 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 779BD240027 for <48263@debbugs.gnu.org>; Sat, 30 Oct 2021 19:35:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1635615359; bh=RzqXHKjuse497wTdM4WKIFS7OY6QXzPnXO6tPmOOCyU=; h=From:To:Cc:Subject:Date:From; b=ZOVxtHRWHuyJM0wisg4/R/h+1wUx5cJTl7YsHn7TUl+HJ+G8YwUWqO67zJl894YpK 7s59x5WUAmSOtDu9Cm7ppDhr1ziOcMeP/Xi9/Rvm9grtaIulE6y3HtMc5cFmSY4GHC fsqiwerTI+MCJdhao8/qKdxBkNbGvK+rpKqpWTn6Yc0ysje6/nTO5mzXKxZc6yIAFg 181sG8rW5jtJ1w1lfH7L1JlPioZorCArTTJIE6B8aeFqYmzOoaa0fDOsqLQ7Xo/Ptd Sj3a611V+GR33UwehBqv+vJcLByV18ATa0JZZDD7qtolvx/Q+vvKRlOLoQ8wzpzquS YWPy6YOz8WPkw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HhRKV4bMQz6tmG; Sat, 30 Oct 2021 19:35:58 +0200 (CEST) From: Vinicius Monego To: 48263@debbugs.gnu.org Subject: [PATCH v2 3/3] gnu: hypercorn: Honor #:tests? in 'check' phase. Date: Sat, 30 Oct 2021 17:30:48 +0000 Message-Id: <20211030173048.53815-3-monego@posteo.net> In-Reply-To: <20211030173048.53815-1-monego@posteo.net> References: <20211030173048.53815-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48263 Cc: Vinicius Monego 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: -3.3 (---) * gnu/packages/python-web.scm (hypercorn)[arguments]: Honor #:tests? in 'check' phase. --- gnu/packages/python-web.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 287574301d..204059a08a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1630,9 +1630,10 @@ RFC6455, regardless of your programming paradigm.") `(#:phases (modify-phases %standard-phases (replace 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "-vv")))))) + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) ;; Propagate because Hypercorn also exposes functionality over a module. (propagated-inputs `(("python-h11" ,python-h11) -- 2.30.2 From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 08 15:38:50 2021 Received: (at 48263-done) by debbugs.gnu.org; 8 Nov 2021 20:38:51 +0000 Received: from localhost ([127.0.0.1]:59696 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mkBPm-0007aK-Oi for submit@debbugs.gnu.org; Mon, 08 Nov 2021 15:38:50 -0500 Received: from flashner.co.il ([178.62.234.194]:37254) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mkBPi-0007a2-Hr for 48263-done@debbugs.gnu.org; Mon, 08 Nov 2021 15:38:49 -0500 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id 7DDAD402FA for <48263-done@debbugs.gnu.org>; Mon, 8 Nov 2021 20:38:40 +0000 (UTC) Date: Mon, 8 Nov 2021 22:38:03 +0200 From: Efraim Flashner To: 48263-done@debbugs.gnu.org Subject: Re: [bug#48263] [PATCH v2 1/3] gnu: python-hypercorn: Remove "python-" prefix from name. Message-ID: Mail-Followup-To: Efraim Flashner , 48263-done@debbugs.gnu.org References: <20210506191726.103393-1-monego@posteo.net> <20211030173048.53815-1-monego@posteo.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ZE6Mq/WTGnhATcUZ" Content-Disposition: inline In-Reply-To: <20211030173048.53815-1-monego@posteo.net> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Debbugs-CC: Vinicius Monego X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 48263-done 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 (-) --ZE6Mq/WTGnhATcUZ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks! Patch pushed. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --ZE6Mq/WTGnhATcUZ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmGJiqsACgkQQarn3Mo9 g1H0/RAAtNyVfxzMFRl1BBzvtLLhgZ2I3H8Sk9OYWWUUPk4O+61xJmETY7RVNIK8 LldfymmVVAeJEdcfUsX191csscEgGHmwlDXl/04uEeJhnPvmAWeBmGCLCDEwXEY3 XIctkMFN/6aqINbnPjE3VkeChzIwEn/b9k4+JuMW8iTWXMQWLeBqFbicVTmSSZX2 NBS20H7Jb1AveVy09BlkRakZ7KB0yrZAvJ6LItMXf4tCMtHhQbi9imNTHphQFdID YvNFPE7oUpwOey03CjoCWygLcchZo5/L8Hxkh3hQaOan0WgkjkOp+/eTV7jPNYId JjTbjFKrsXDw1DC+65gctXY+sUrICaa+YJqBZBAezy6sJhEHx0/XmG0Mncd6Nhon rJ2mEwsQgm+MJ598WUzsPpQMrxZC02jPaMmWtyjAPiW5a+QjHvvbd9VlfrdB35Ct iocuIiJjr/pORanesKVjEudLN+pRESBeT6mFV4BN5B73HFGNT1miKOER8Yzn9YUQ 1Bz1rvsARRjdapyJ1cpKNz1YgLWakxYrUz2FZFrZj1XR6r+RmRns6AyehnN0kMzw Zmi9Z5bVejV2kLjm3lWhPeoEcxnycJRLVaGd71HA8tWuOQHn6eeZxsjc9maJwu0/ 5QjBxwZ7mhZ7IaKkoacNFiHFMfBHLaoe8i8a/62i/HR7lGXUX6k= =L5uZ -----END PGP SIGNATURE----- --ZE6Mq/WTGnhATcUZ-- From unknown Fri Jun 20 07:28:57 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 07 Dec 2021 12:24:07 +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