summaryrefslogtreecommitdiff
path: root/dev-python/httpauth
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-05 06:57:41 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-05 06:57:41 +0000
commite1127353fca10d915b2118bcc72831007352cb2f (patch)
tree03807da2864eefbd7c73f7e99c0ad53f43f6bdfb /dev-python/httpauth
parenta510605f4c599302839ff7b08ea776d16a139785 (diff)
downloadbaldeagleos-repo-e1127353fca10d915b2118bcc72831007352cb2f.tar.gz
baldeagleos-repo-e1127353fca10d915b2118bcc72831007352cb2f.tar.xz
baldeagleos-repo-e1127353fca10d915b2118bcc72831007352cb2f.zip
Adding metadata
Diffstat (limited to 'dev-python/httpauth')
-rw-r--r--dev-python/httpauth/Manifest2
-rw-r--r--dev-python/httpauth/files/httpauth-0.3-remove-nose-dependency.patch40
-rw-r--r--dev-python/httpauth/httpauth-0.3-r1.ebuild29
-rw-r--r--dev-python/httpauth/httpauth-0.4.ebuild27
4 files changed, 0 insertions, 98 deletions
diff --git a/dev-python/httpauth/Manifest b/dev-python/httpauth/Manifest
index b7d147793fdd..def5075940aa 100644
--- a/dev-python/httpauth/Manifest
+++ b/dev-python/httpauth/Manifest
@@ -1,3 +1 @@
-DIST httpauth-0.3.tar.gz 4440 BLAKE2B 41c9ba9ee50b7fcc4ed409f4b34897b5243df4065fd081cd5c0951ebe2719a34a424e59c21adbcd9be133c8fe4fa4ad9dc7bec561285b873987f982f684b3682 SHA512 aa35148322a1c5ffc22a132d3062d300118aa23181a0008018d0aacfd473758d86d50ff1236d88126858a53e2f45aeea938988b2d1a8f62f80a97d8c2cc69822
DIST httpauth-0.4.1.tar.gz 5526 BLAKE2B afa99c4cd1d2a8a0d776b8e68e4b5864db786713eba6213c18f5773d6347e70e785e03ba57ce23e89c8eb80c2f04829ed0c617c8ccdee802e394e5f39df6a858 SHA512 f9472aa8aa3e640bfd00b458fe356fa7d1d762d64ca5fececf7d679ce81c03b6efe22d7c224b09eed188b9289aa59efb43f9e626e71552285d886a1fab1318ef
-DIST httpauth-0.4.gh.tar.gz 5437 BLAKE2B 9db9085afab06a8189e6ecad38a7da8a5599a39f6ca257f3a29818eeea100ca8301c704873977177ca6f40f46953365d5af14a713f87ea85747d84d006787850 SHA512 3e42bd400447f0179ae70662d79c61378a20dd1fcec2684d6b374de3114e362d1ad177ac7dcd9624a167de213df67438933161c083515a1ec6d20aadc6003dc4
diff --git a/dev-python/httpauth/files/httpauth-0.3-remove-nose-dependency.patch b/dev-python/httpauth/files/httpauth-0.3-remove-nose-dependency.patch
deleted file mode 100644
index 5cb607c2bb4c..000000000000
--- a/dev-python/httpauth/files/httpauth-0.3-remove-nose-dependency.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-commit d57060ebaeca8cd38e03cc64f9ee0996e83b50a9
-Author: Jonas Haag <jonas@lophus.org>
-Date: Thu Apr 21 08:58:36 2022 +0200
-
- Move CI to GHA (#3)
-
---- a/tests.py
-+++ b/tests.py
-@@ -10,7 +10,7 @@ except ImportError: # Python 2
-
- from httpauth import DictHttpAuthMiddleware, DigestFileHttpAuthMiddleware, md5_str
-
--from nose.tools import raises
-+import pytest
-
-
- def parse_dict_header(value):
-@@ -121,16 +121,16 @@ def test_without_realm():
- assert 'Digest realm=""' in response.headers['WWW-Authenticate']
-
-
--@raises(ValueError)
- def test_invalid_digestfile_1():
-- DigestFileHttpAuthMiddleware(StringIO('u::realm:hash'),
-- wsgi_app=wsgi_app)
-+ with pytest.raises(ValueError):
-+ DigestFileHttpAuthMiddleware(StringIO('u::realm:hash'),
-+ wsgi_app=wsgi_app)
-
-
--@raises(ValueError)
- def test_invalid_digestfile_2():
-- DigestFileHttpAuthMiddleware(StringIO('u:realm:hash\nu2:realm2:hash2'),
-- wsgi_app=wsgi_app)
-+ with pytest.raises(ValueError):
-+ DigestFileHttpAuthMiddleware(StringIO('u:realm:hash\nu2:realm2:hash2'),
-+ wsgi_app=wsgi_app)
-
-
- def test_ticket_1():
diff --git a/dev-python/httpauth/httpauth-0.3-r1.ebuild b/dev-python/httpauth/httpauth-0.3-r1.ebuild
deleted file mode 100644
index 125c13ede52c..000000000000
--- a/dev-python/httpauth/httpauth-0.3-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A WSGI middleware that secures routes using HTTP Digest Authentication"
-HOMEPAGE="
- https://github.com/jonashaag/httpauth/
- https://pypi.org/project/httpauth/
-"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=(
- "${FILESDIR}/${P}-remove-nose-dependency.patch"
-)
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest tests.py
-}
diff --git a/dev-python/httpauth/httpauth-0.4.ebuild b/dev-python/httpauth/httpauth-0.4.ebuild
deleted file mode 100644
index 2b2049809ebb..000000000000
--- a/dev-python/httpauth/httpauth-0.4.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
-
-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