GNU bug report logs -
#69268
[PATCH 0/2] Add python-heatwave.
Previous Next
Reported by: Wilko Meyer <w <at> wmeyer.eu>
Date: Mon, 19 Feb 2024 09:52:01 UTC
Severity: normal
Tags: patch
Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>
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 69268 in the body.
You can then email your comments to 69268 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, jgart <at> dismail.de, guix-patches <at> gnu.org
:
bug#69268
; Package
guix-patches
.
(Mon, 19 Feb 2024 09:52:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Wilko Meyer <w <at> wmeyer.eu>
:
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, jgart <at> dismail.de, guix-patches <at> gnu.org
.
(Mon, 19 Feb 2024 09:52:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi Guix,
this small patchset adds python-heatwave as well as its dependency
python-monthdelta to python-xyz.py.
Kind regards,
Wilko
Wilko Meyer (2):
gnu: Add python-monthdelta.
gnu: Add python-heatwave.
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
base-commit: 07ecdb99b6c4b6b3e993d08034138bf69414020b
--
2.41.0
Information forwarded
to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org
:
bug#69268
; Package
guix-patches
.
(Mon, 19 Feb 2024 09:55:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 69268 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-monthdelta): New variable.
Change-Id: I0e651f41252ec50cd2d7063e37d428265b17d8c2
---
gnu/packages/python-xyz.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c3dfb9603c..c8fc5e1f7c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17727,6 +17727,23 @@ (define-public python-colorama-for-awscli
(sha256
(base32 "189n8hpijy14jfan4ha9f5n06mnl33cxz7ay92wjqgkr639s0vg9"))))))
+(define-public python-monthdelta
+ (package
+ (name "python-monthdelta")
+ (version "0.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "MonthDelta" version))
+ (sha256
+ (base32 "0iwcsk7ryjw5h1wp10ykwd01f3am8gdlga6461q1v1njsk0rxh41"))))
+ (build-system pyproject-build-system)
+ (home-page "http://packages.python.org/MonthDelta")
+ (synopsis "Date computations with months")
+ (description "MonthDelta provides functionality to do date computations
+with months.")
+ (license license:expat)))
+
(define-public python-moto
(package
(name "python-moto")
--
2.41.0
Information forwarded
to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org
:
bug#69268
; Package
guix-patches
.
(Mon, 19 Feb 2024 09:55:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 69268 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-heatwave): New variable.
* gnu/packages/python-xyz.scm: Add my copyright header.
Change-Id: I640aecb3a0d9c454333a3913c039c637d24d9f79
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c8fc5e1f7c..e318438c94 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -147,6 +147,7 @@
;;; Copyright © 2023 Attila Lendvai <attila <at> lendvai.name>
;;; Copyright © 2023, 2024 Troy Figiel <troy <at> troyfigiel.com>
;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu <at> inria.fr>
+;;; Copyright © 2024 Wilko Meyer <w <at> wmeyer.eu>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -31533,6 +31534,24 @@ (define-public python-roundrobin
distribution in Python.")
(license license:expat)))
+(define-public python-heatwave
+ (package
+ (name "python-heatwave")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "heatwave" version))
+ (sha256
+ (base32 "1zzwmb9hvbyswzjgap02rrq8p44hb6xlzk1wd8w01mh2vva0xlx7"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-click python-gitpython python-monthdelta))
+ (home-page "https://github.com/james-stoup/heatwave")
+ (synopsis "A way of visualizing a heat map of a git repo")
+ (description
+ "This package provides a way of visualizing a heat map of a git repo.")
+ (license license:gpl3)))
+
(define-public python-helpdev
(package
(name "python-helpdev")
--
2.41.0
Reply sent
to
Sharlatan Hellseher <sharlatanus <at> gmail.com>
:
You have taken responsibility.
(Sun, 03 Nov 2024 23:45:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Wilko Meyer <w <at> wmeyer.eu>
:
bug acknowledged by developer.
(Sun, 03 Nov 2024 23:45:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 69268-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
Pushed as e8d9a163be..12455b3634 to master.
- [X] [PATCH 1/2] gnu: Add python-monthdelta.
- [X] [PATCH 2/2] gnu: Add python-heatwave.
- Rephrase synosis
- Indent as a list for propagated inputs
- Move to version-control
- Rename to just heatwave as it looks like just an executible not a Python library
--
Oleg
[signature.asc (application/pgp-signature, inline)]
Message sent on
to
Wilko Meyer <w <at> wmeyer.eu>
:
bug#69268.
(Mon, 04 Nov 2024 13:15:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 69268-submitter <at> debbugs.gnu.org (full text, mbox):
close 69268
# Hi Wilko - committed in 12455b36346f7ff0acf0811d9bddb657aa721075
thanks
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 03 Dec 2024 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 97 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.