GNU bug report logs -
#72355
[PATCH 1/2] gnu: Add python-httpauth.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Mon, 29 Jul 2024 18:00:01 UTC
Severity: normal
Tags: patch
Done: jgart <jgart <at> dismail.de>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 72355 in the body.
You can then email your comments to 72355 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org
:
bug#72355
; Package
guix-patches
.
(Mon, 29 Jul 2024 18:00:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jgart <jgart <at> dismail.de>
:
New bug report received and forwarded. Copy sent to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org
.
(Mon, 29 Jul 2024 18:00:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-web.scm (python-httpauth): New variable.
Change-Id: I02ece90600961a634d30f34c301bd387e5aa23b7
---
gnu/packages/python-web.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 94a0406ea7..5bc57fe0e5 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -45,7 +45,7 @@
;;; Copyright © 2021 Maxime Devos <maximedevos <at> telenet.be>
;;; Copyright © 2021 Pradana Aumars <paumars <at> courrier.dev>
;;; Copyright © 2021, 2022, 2024 Arun Isaac <arunisaac <at> systemreboot.net>
-;;; Copyright © 2021, 2022 jgart <jgart <at> dismail.de>
+;;; Copyright © 2021, 2022, 2024 jgart <jgart <at> dismail.de>
;;; Copyright © 2021 Alice Brenon <alice.brenon <at> ens-lyon.fr>
;;; Copyright © 2022 John Kehayias <john.kehayias <at> protonmail.com>
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
@@ -831,6 +831,24 @@ (define-public python-a2wsgi
way around. It depends only on the Python standard library.")
(license license:asl2.0)))
+(define-public python-httpauth
+ (package
+ (name "python-httpauth")
+ (version "0.4.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "httpauth" version))
+ (sha256
+ (base32
+ "1m6rwvivg61l3h34hf6p6gkqmr69sb1c4k5ha379nxq0p8bfgahb"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest))
+ (home-page "https://github.com/jonashaag/httpauth")
+ (synopsis "WSGI HTTP Digest Authentication middleware")
+ (description "@code{python-httpauth} is WSGI middleware that secures some/all
+routes using HTTP Digest Authentication.")
+ (license license:bsd-2)))
+
(define-public python-css-html-js-minify
(package
(name "python-css-html-js-minify")
base-commit: fdc6274de5b1d617fcabb3f3af9d2c0dd2a6520d
--
2.45.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#72355
; Package
guix-patches
.
(Mon, 29 Jul 2024 18:30:01 GMT)
Full text and
rfc822 format available.
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/version-control.scm (python-klaus): New variable.
Change-Id: I1b7c31deb799e0ea5195eda109740fdb90e5fabd
---
gnu/packages/version-control.scm | 47 +++++++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index cf7f7b0ad8..d8692ef803 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -41,7 +41,7 @@
;;; Copyright © 2021 François J. <francois-oss <at> avalenn.eu>
;;; Copyright © 2021 Julien Lepiller <julien <at> lepiller.eu>
;;; Copyright © 2021 Guillaume Le Vaillant <glv <at> posteo.net>
-;;; Copyright © 2021 jgart <jgart <at> dismail.de>
+;;; Copyright © 2021, 2024 jgart <jgart <at> dismail.de>
;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan <at> gmail.com>
;;; Copyright © 2022 Maxime Devos <maximedevos <at> telenet.be>
@@ -716,6 +716,51 @@ (define-public git-minimal/pinned
(base32
"0bqz401dyp8wnjj3k5ahrniwk4dalndysqazzwdvv25hqbkacm70"))))))
+(define-public python-klaus
+ (package
+ (name "python-klaus")
+ (version "3.0.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "klaus" version))
+ (sha256
+ (base32
+ "1w6sl15llnkcg7kmnpn64awdiis061q2gijnhdx0ng7z4p1glapl"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f ; TODO: https://github.com/jonashaag/klaus/issues/322
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'configure-git
+ (lambda* (#:key inputs #:allow-other-keys)
+ (for-each (lambda (file)
+ (substitute* file
+ (("\"git\"")
+ (string-append "\"" (search-input-file inputs "/bin/git") "\""))))
+ (list "klaus/ctagsutils.py"
+ "klaus/repo.py"
+ "klaus/utils.py"
+ "tests/test_contrib.py"
+ "tests/test_make_app.py")))))))
+ (inputs (list git-minimal))
+ (native-inputs
+ (list python-pytest))
+ (propagated-inputs
+ (list python-dulwich python-flask python-httpauth
+ python-humanize python-pygments python-werkzeug))
+ (home-page "https://github.com/jonashaag/klaus")
+ (synopsis "Simple git web viewer")
+ (description "klaus is a simple, easy-to-set-up git web viewer. It features
+@itemize
+@item Super easy to set up -- no configuration required
+@item Syntax highlighting
+@item Markdown + RestructuredText rendering support
+@item Pull + push support (Git Smart HTTP)
+@item Code navigation using Exuberant ctags
+@end itemize")
+ (license license:isc)))
+
(define-public git2cl
(let ((commit "1d74d4c0d933fc69ed5cec838c73502584dead05"))
(package
--
2.45.2
Reply sent
to
jgart <jgart <at> dismail.de>
:
You have taken responsibility.
(Wed, 21 Aug 2024 00:41:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
jgart <jgart <at> dismail.de>
:
bug acknowledged by developer.
(Wed, 21 Aug 2024 00:41:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 72355-done <at> debbugs.gnu.org (full text, mbox):
merge ahoy!
--
all the best,
jgart
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 18 Sep 2024 11:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 274 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.