[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v5 18/55] gnu: graphite-web: Update to 1.1.10-0-dca59
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v5 18/55] gnu: graphite-web: Update to 1.1.10-0-dca59dc. |
Date: |
Sun, 25 Jun 2023 18:57:19 +0200 |
* gnu/packages/monitoring.scm (graphite-web): Update to 1.1.10-0-dca59dc.
[build-system]: Use pyproject-build-system.
[arguments](tests?): Enable tests.
(phases): Remove trailing #t.
[propagated-inputs]: Move from python-django-2.2 to python-django-3.2.
---
gnu/packages/monitoring.scm | 79 +++++++++++++++++++------------------
1 file changed, 40 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index ce41791672..1ca6134e3f 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -452,47 +452,48 @@ (define-public python-carbon
(license license:asl2.0)))
(define-public graphite-web
- (package
- (name "graphite-web")
- (version "1.1.7")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "graphite-web" version))
- (sha256
- (base32
- "1l5a5rry9cakqxamvlx4xq63jifmncb6815bg9vy7fg1zyd3pjxk"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f ;XXX: not in PyPI release & requires database
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'relax-requirements
- (lambda _
- (substitute* "setup.py"
- ;; Allow newer versions of django-tagging.
- (("django-tagging==")
- "django-tagging>="))
- #t))
- ;; Don't install to /opt
- (add-after 'unpack 'do-not-install-to-/opt
- (lambda _ (setenv "GRAPHITE_NO_PREFIX" "1") #t)))))
- (propagated-inputs
- (list python-cairocffi
- python-pytz
- python-whisper
- python-django-2.2
- python-django-tagging
- python-scandir
- python-urllib3
- python-pyparsing
- python-txamqp))
- (home-page "https://graphiteapp.org/")
- (synopsis "Scalable realtime graphing system")
- (description "Graphite is a scalable real-time graphing system that does
+ (let ((commit "dca59dc72ae28ffdae659232c10c60aa598536eb")
+ (revision "0"))
+ (package
+ (name "graphite-web")
+ (version "1.1.10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/graphite-project/graphite-web")
+ (commit commit)))
+ (sha256
+ (base32 "06yzvg2r9lx92swp51k27qhxf178nq6y9px5kcmpv31ikc3nri7q"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "setup.py"
+ ;; Allow newer versions of django-tagging.
+ (("django-tagging==")
+ "django-tagging>="))))
+ ;; Don't install to /opt
+ (add-after 'unpack 'do-not-install-to-/opt
+ (lambda _ (setenv "GRAPHITE_NO_PREFIX" "1"))))))
+ (propagated-inputs
+ (list python-cairocffi
+ python-pytz
+ python-whisper
+ python-django-3.2
+ python-django-tagging
+ python-scandir
+ python-urllib3
+ python-pyparsing
+ python-txamqp))
+ (home-page "https://graphiteapp.org/")
+ (synopsis "Scalable realtime graphing system")
+ (description "Graphite is a scalable real-time graphing system that does
two things: store numeric time-series data, and render graphs of this data on
demand.")
- (license license:asl2.0)))
+ (license license:asl2.0))))
(define-public python-prometheus-client
(package
--
2.40.1
- [bug#55474] [PATCH v5 05/55] gnu: Add python-django-4.2., (continued)
- [bug#55474] [PATCH v5 05/55] gnu: Add python-django-4.2., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 06/55] gnu: python-pint: Disable failing tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 08/55] gnu: Add python-django-extensions-3.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 07/55] gnu: python-django-extensions: Update to 3.2.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 10/55] gnu: python-django-simple-math-captcha: Update to 1.0.9-0-61adb4f., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 15/55] gnu: python-django-picklefield: Update to 3.1.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 14/55] gnu: python-django-debug-toolbar: Add native-input tzdata-for-tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 12/55] gnu: python-django-filter: Add native-input tzdata-for-tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 13/55] gnu: python-django-allauth: Update to 0.47.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 17/55] gnu: datasette: Disabling failing tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 18/55] gnu: graphite-web: Update to 1.1.10-0-dca59dc.,
Nicolas Graves <=
- [bug#55474] [PATCH v5 09/55] gnu: python-django-3.1.14: Skip failing tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 11/55] gnu: python-easy-thumbnails: Update to 2.8.5., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 19/55] gnu: python-django-contact-form: Add native-input tzdata-for-tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 16/55] gnu: Remove python-django-2.2., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 22/55] gnu: python-django-sortedm2m: Replace input python-django by python-django-3.2., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 20/55] gnu: python-django-contrib-comments: Update to 2.2.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 21/55] gnu: python-dango-rq: Add native-input tzdata-for-tests., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 24/55] gnu: python-django-sortedm2m: Update to 3.1.1-0-ddf321f., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 25/55] gnu: python-defusedxml: Update to 0.7.0., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 28/55] gnu: python-rjsmin: Update to 1.2.1., Nicolas Graves, 2023/06/25