From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4CC91581D3 for ; Tue, 28 May 2024 04:42:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85F7BE2A49; Tue, 28 May 2024 04:42:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60A40E2A49 for ; Tue, 28 May 2024 04:42:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67AD833BE32 for ; Tue, 28 May 2024 04:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9868A1BDC for ; Tue, 28 May 2024 04:42:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1716871272.b7e21dc161eec0c27135f6992233d3530218b01d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpauth/Manifest dev-python/httpauth/httpauth-0.4.ebuild X-VCS-Directories: dev-python/httpauth/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b7e21dc161eec0c27135f6992233d3530218b01d X-VCS-Branch: master Date: Tue, 28 May 2024 04:42:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7e30ea63-49ce-49bc-9ac6-cb7a196ea83f X-Archives-Hash: 607a0edc8c3684666ea8c5e5796824fa commit: b7e21dc161eec0c27135f6992233d3530218b01d Author: Michał Górny gentoo org> AuthorDate: Tue May 28 04:33:03 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 28 04:41:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e21dc1 dev-python/httpauth: Bump to 0.4 Signed-off-by: Michał Górny gentoo.org> dev-python/httpauth/Manifest | 1 + dev-python/httpauth/httpauth-0.4.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/httpauth/Manifest b/dev-python/httpauth/Manifest index 8dff66939152..1840fe76521a 100644 --- a/dev-python/httpauth/Manifest +++ b/dev-python/httpauth/Manifest @@ -1 +1,2 @@ DIST httpauth-0.3.tar.gz 4440 BLAKE2B 41c9ba9ee50b7fcc4ed409f4b34897b5243df4065fd081cd5c0951ebe2719a34a424e59c21adbcd9be133c8fe4fa4ad9dc7bec561285b873987f982f684b3682 SHA512 aa35148322a1c5ffc22a132d3062d300118aa23181a0008018d0aacfd473758d86d50ff1236d88126858a53e2f45aeea938988b2d1a8f62f80a97d8c2cc69822 +DIST httpauth-0.4.gh.tar.gz 5437 BLAKE2B 9db9085afab06a8189e6ecad38a7da8a5599a39f6ca257f3a29818eeea100ca8301c704873977177ca6f40f46953365d5af14a713f87ea85747d84d006787850 SHA512 3e42bd400447f0179ae70662d79c61378a20dd1fcec2684d6b374de3114e362d1ad177ac7dcd9624a167de213df67438933161c083515a1ec6d20aadc6003dc4 diff --git a/dev-python/httpauth/httpauth-0.4.ebuild b/dev-python/httpauth/httpauth-0.4.ebuild new file mode 100644 index 000000000000..32e48b05348c --- /dev/null +++ b/dev-python/httpauth/httpauth-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="A WSGI middleware that secures routes using HTTP Digest Authentication" +HOMEPAGE=" + https://github.com/jonashaag/httpauth/ + https://pypi.org/project/httpauth/ +" +# 0.4 has broken sdist +# https://github.com/jonashaag/httpauth/issues/6 +SRC_URI=" + https://github.com/jonashaag/httpauth/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest