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