2016-06-14 14:18:54 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
2017-04-04 13:44:23 +02:00
|
|
|
;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
2017-05-25 23:34:02 +02:00
|
|
|
;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
|
2016-06-14 14:18:54 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages logging)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix download)
|
2016-06-29 11:13:03 +02:00
|
|
|
#:use-module (guix git-download)
|
2016-06-14 14:18:54 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2017-05-01 21:22:15 +02:00
|
|
|
#:use-module (guix build-system python)
|
2017-04-04 13:44:23 +02:00
|
|
|
#:use-module (gnu packages)
|
2017-05-25 23:34:02 +02:00
|
|
|
#:use-module (gnu packages ncurses)
|
2016-06-29 11:13:03 +02:00
|
|
|
#:use-module (gnu packages perl)
|
2017-05-01 21:22:15 +02:00
|
|
|
#:use-module (gnu packages python)
|
2016-06-29 11:13:03 +02:00
|
|
|
#:use-module (gnu packages autotools))
|
2016-06-14 14:18:54 +02:00
|
|
|
|
|
|
|
(define-public log4cpp
|
|
|
|
(package
|
|
|
|
(name "log4cpp")
|
|
|
|
(version "1.1.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/log4cpp/log4cpp-"
|
|
|
|
(version-major+minor version) ".x%20%28new%29"
|
|
|
|
"/log4cpp-" (version-major+minor version)
|
|
|
|
"/log4cpp-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1l5yz5rfzzv6g3ynrj14mxfsk08cp5h1ssr7d74hjs0accrg7arm"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(synopsis "Log library for C++")
|
|
|
|
(description
|
|
|
|
"Log4cpp is library of C++ classes for flexible logging to files, syslog,
|
|
|
|
IDSA and other destinations. It is modeled after the Log4j Java library,
|
|
|
|
staying as close to their API as is reasonable.")
|
|
|
|
(home-page "http://log4cpp.sourceforge.net/")
|
|
|
|
(license license:lgpl2.1+)))
|
2016-06-29 11:13:03 +02:00
|
|
|
|
|
|
|
(define-public glog
|
|
|
|
(package
|
|
|
|
(name "glog")
|
2017-05-24 17:45:05 +02:00
|
|
|
(version "0.3.5")
|
2016-06-29 11:13:03 +02:00
|
|
|
(home-page "https://github.com/google/glog")
|
|
|
|
(source (origin
|
2017-05-24 17:45:05 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append home-page "/archive/v" version ".tar.gz"))
|
2016-06-29 11:13:03 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-05-24 17:45:05 +02:00
|
|
|
"1q6ihk2asbx95a56kmyqwysq1x3grrw9jwqllafaidf0l84f903m"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2017-04-04 13:44:23 +02:00
|
|
|
(patches (search-patches "glog-gcc-5-demangling.patch"))))
|
2016-06-29 11:13:03 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("perl" ,perl) ;for tests
|
|
|
|
("autoconf" ,(autoconf-wrapper))
|
|
|
|
("automake" ,automake)
|
|
|
|
("libtool" ,libtool)))
|
|
|
|
(arguments
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
gnu: Put autoconf-related phases immediately after the 'unpack phase.
* gnu/packages/audio.scm (audacity, rtmidi)[arguments]: Correct phases
accordingly.
* gnu/packages/bioinformatics.scm (mash, seek, vsearch, emboss,
htslib-for-sambamba)[arguments]: Likewise.
* gnu/packages/ci.scm (cuirass)[arguments]: Likewise.
* gnu/packages/compression.scm (minizip, xdelta)[arguments]: Likewise.
* gnu/packages/cpp.scm (libzen)[arguments]: Likewise.
* gnu/packages/crypto.scm (opendht)[arguments]: Likewise.
* gnu/packages/databases.scm (4store, mdbtools)[arguments]: Likewise.
* gnu/packages/debug.scm (stress-make)[arguments]: Likewise.
* gnu/packages/dns.scm (dnscrypt-proxy, dnscrypt-wrapper)[arguments]:
Likewise.
* gnu/packages/emacs.scm (emacs-pdf-tools)[arguments]: Likewise.
* gnu/packages/embedded.scm (libjaylink, openocd)[arguments]: Likewise.
* gnu/packages/engineering.scm (gerbv)[arguments]: Likewise.
* gnu/packages/erlang.scm (erlang)[arguments]: Likewise.
* gnu/packages/ftp.scm (weex)[arguments]: Likewise.
* gnu/packages/gnome.scm (dia)[arguments]: Likewise.
* gnu/packages/gnunet.scm (gnurl, guile-gnunet)[arguments]: Likewise.
* gnu/packages/gtk.scm (guile-rsvg, graphene)[arguments]: Likewise.
* gnu/packages/guile.scm (guildhall, guile-ics, guile-sqlite3)[arguments]:
Likewise.
* gnu/packages/ibus.scm (ibus-libpinyin)[arguments]: Likewise.
* gnu/packages/irc.scm (weechat)[arguments]: Likewise.
* gnu/packages/java.scm (classpath-devel)[arguments]: Likewise.
* gnu/packages/libreoffice.scm (libetonyek)[arguments]: Likewise.
* gnu/packages/libusb.scm (hidapi)[arguments]: Likewise.
* gnu/packages/linux.scm (gpm)[arguments]: Likewise.
* gnu/packages/logging.scm (glog)[arguments]: Likewise.
* gnu/packages/machine-learning.scm (ghmm)[arguments]: Likewise.
* gnu/packages/mail.scm (dovecot-trees, dovecot-libsodium-plugin, esmtp)
[arguments]: Likewise.
* gnu/packages/messaging.scm (freetalk, libmesode, libstrophe)[arguments]:
Likewise.
* gnu/packages/microcom.scm (microcom)[arguments]: Likewise.
* gnu/packages/ocaml.scm (ocaml-ssl)[arguments]: Likewise.
* gnu/packages/parallel.scm (slurm)[arguments]: Likewise.
* gnu/packages/pdf.scm (libharu)[arguments]: Likewise.
* gnu/packages/samba.scm (cifs-utils)[arguments]: Likewise.
* gnu/packages/serialization.scm (msgpack)[arguments]: Likewise.
* gnu/packages/shells.scm (scsh)[arguments]: Likewise.
* gnu/packages/telephony.scm (libiax2)[arguments]: Likewise.
* gnu/packages/textutils.scm (dotconf)[arguments]: Likewise.
* gnu/packages/version-control.scm (findnewest)[arguments]: Likewise.
* gnu/packages/video.scm (libmediainfo, mediainfo)[arguments]: Likewise.
2017-07-31 03:02:35 +02:00
|
|
|
(add-after 'unpack 'add-automake-files
|
2016-06-29 11:13:03 +02:00
|
|
|
(lambda _
|
|
|
|
;; The 'test-driver' file is a dangling symlink to
|
|
|
|
;; /usr/share/automake; replace it. We can't just run
|
|
|
|
;; 'automake -ac' because it complains about version
|
|
|
|
;; mismatch, so run the whole thing.
|
|
|
|
(delete-file "test-driver")
|
|
|
|
(delete-file "configure") ;it's read-only
|
|
|
|
(zero? (system* "autoreconf" "-vfi")))))))
|
|
|
|
(synopsis "C++ logging library")
|
|
|
|
(description
|
|
|
|
"Google glog is a library that implements application-level logging.
|
|
|
|
This library provides logging APIs based on C++-style streams and various
|
|
|
|
helper macros. You can log a message by simply streaming things to log at a
|
|
|
|
particular severity level. It allows logging to be controlled from the
|
|
|
|
command line.")
|
|
|
|
(license license:bsd-3)))
|
2017-05-01 21:22:15 +02:00
|
|
|
|
|
|
|
(define-public tailon
|
|
|
|
(package
|
|
|
|
(name "tailon")
|
2017-07-26 12:37:42 +02:00
|
|
|
(version "1.3.0")
|
2017-05-01 21:22:15 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-07-26 12:37:42 +02:00
|
|
|
"0wl2wm6p3pc0vkk33s7rzgcfvs9cwxfmlz997pdfhlw72r00l7s5"))))
|
2017-05-01 21:22:15 +02:00
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("python-pyyaml" ,python-pyyaml)
|
|
|
|
("python-sockjs-tornado" ,python-sockjs-tornado)
|
2017-07-26 12:37:42 +02:00
|
|
|
("python-tornado-http-auth" ,python-tornado-http-auth)
|
2017-05-01 21:22:15 +02:00
|
|
|
("python-tornado" ,python-tornado)))
|
2017-05-16 21:40:01 +02:00
|
|
|
(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") "'")))
|
|
|
|
#t)))))
|
2017-05-01 21:22:15 +02:00
|
|
|
(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)))
|
2017-05-25 23:34:02 +02:00
|
|
|
|
|
|
|
(define-public multitail
|
|
|
|
(package
|
|
|
|
(name "multitail")
|
|
|
|
(version "6.4.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://vanheusden.com/multitail/multitail-"
|
|
|
|
version ".tgz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1zd1r89xkxngl1pdrvsc877838nwkfqkbcgfqm3vglwalxc587dg"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
(list "CC=gcc"
|
|
|
|
"PREFIX="
|
|
|
|
(string-append "DESTDIR="
|
|
|
|
(assoc-ref %outputs "out")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-curses-lib
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(substitute* "mt.h"
|
|
|
|
(("ncursesw\\/panel.h") "panel.h")
|
|
|
|
(("ncursesw\\/ncurses.h") "ncurses.h")))
|
|
|
|
#t))
|
|
|
|
(delete 'configure))
|
|
|
|
#:tests? #f)) ; no test suite (make check just runs cppcheck)
|
|
|
|
(inputs `(("ncurses" ,ncurses)))
|
|
|
|
(home-page "https://vanheusden.com/multitail/")
|
|
|
|
(synopsis "Monitor multiple logfiles")
|
|
|
|
(description
|
|
|
|
"MultiTail allows you to monitor logfiles and command output in multiple
|
|
|
|
windows in a terminal, colorize, filter and merge.")
|
|
|
|
(license license:gpl2+)))
|