summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-09-14 18:13:49 +0200
committerAndreas Enge <andreas@enge.fr>2025-09-14 18:22:08 +0200
commit63023deaf96bd0d90aba262b194bf1445ec5a0b6 (patch)
treef8d542ef2e7738e3da77ee5021f1c913ffb47891 /gnu
parent917bb3ab08a7d20bae4be215eb35e3e0e439274d (diff)
gnu: Remove tailon.
* gnu/packages/logging.scm (tailon): Delete variable. Change-Id: I220b1226d6d6c2bc6002b0c79304e9a148b7f1bc
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/logging.scm45
1 files changed, 0 insertions, 45 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index e6d456c8f6a..40680fdb0d1 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -200,51 +200,6 @@ flexible. It is created as an alternative to existing large libraries and
provides some unique features such as CSV log format and wide string support.")
(license license:expat)))
-;; This is the legacy version of the tailon package. The new version, written
-;; in Go in available here: https://github.com/gvalkov/tailon.
-(define-public tailon
- (package
- (name "tailon")
- (version "1.4.3")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri name version))
- (sha256
- (base32
- "0xkmrivzilsc9wqr8ms67v7399gxnh7pv5687k4rdpdgz4309fwc"))))
- (build-system python-build-system)
- (native-inputs
- (list python-tox python-wheel))
- (inputs
- (list python-pyyaml-5 python-sockjs-tornado python-tornado-http-auth
- python-tornado python-deepmerge))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-commands.py
- (lambda args
- (substitute* "tailon/commands.py"
- (("self\\.first_in_path\\('grep'\\)")
- (string-append"'" (which "grep") "'"))
- (("self\\.first_in_path\\('gawk', 'awk'\\)")
- (string-append"'" (which "gawk") "'"))
- (("self\\.first_in_path\\('gsed', 'sed'\\)")
- (string-append"'" (which "sed") "'"))
- (("self\\.first_in_path\\('gtail', 'tail'\\)")
- (string-append"'" (which "tail") "'")))))
- (add-after 'unpack 'relax-requirements
- (lambda _
- (substitute* "setup.py"
- ((",<5.0.0") "")))))))
- (home-page "https://tailon.readthedocs.io/")
- (synopsis
- "Webapp for looking at and searching through log files")
- (description
- "Tailon provides a web interface around the tail, grep, awk and sed
-commands, displaying the results via a web interface.")
- (license license:bsd-3)))
-
(define-public multitail
(package
(name "multitail")