* gnu/packages/logging.scm (tailon)[arguments]: Patch commands.py to reference grep, awk, sed and tail by absolute paths. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
		
			
				
	
	
		
			133 lines
		
	
	
	
		
			5.4 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
	
		
			5.4 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
;;; GNU Guix --- Functional package management for GNU
 | 
						|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
 | 
						|
;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
 | 
						|
;;;
 | 
						|
;;; 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)
 | 
						|
  #:use-module (guix git-download)
 | 
						|
  #:use-module (guix build-system gnu)
 | 
						|
  #:use-module (guix build-system python)
 | 
						|
  #:use-module (gnu packages)
 | 
						|
  #:use-module (gnu packages perl)
 | 
						|
  #:use-module (gnu packages python)
 | 
						|
  #:use-module (gnu packages autotools))
 | 
						|
 | 
						|
(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+)))
 | 
						|
 | 
						|
(define-public glog
 | 
						|
  (package
 | 
						|
    (name "glog")
 | 
						|
    (version "0.3.4")
 | 
						|
    (home-page "https://github.com/google/glog")
 | 
						|
    (source (origin
 | 
						|
              (method git-fetch)
 | 
						|
              (uri (git-reference
 | 
						|
                    (url home-page)
 | 
						|
                    (commit (string-append "v" version))))
 | 
						|
              (sha256
 | 
						|
               (base32
 | 
						|
                "0ym5g15m7c8kjfr2c3zq6bz08ghin2d1r1nb6v2vnkfh1vn945x1"))
 | 
						|
              (file-name (string-append name "-" version "-checkout"))
 | 
						|
              (patches (search-patches "glog-gcc-5-demangling.patch"))))
 | 
						|
    (build-system gnu-build-system)
 | 
						|
    (native-inputs
 | 
						|
     `(("perl" ,perl)                             ;for tests
 | 
						|
       ("autoconf" ,(autoconf-wrapper))
 | 
						|
       ("automake" ,automake)
 | 
						|
       ("libtool" ,libtool)))
 | 
						|
    (arguments
 | 
						|
     '(#:phases (modify-phases %standard-phases
 | 
						|
                  (add-before 'configure 'add-automake-files
 | 
						|
                    (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)))
 | 
						|
 | 
						|
(define-public tailon
 | 
						|
  (package
 | 
						|
    (name "tailon")
 | 
						|
    (version "1.1.1")
 | 
						|
    (source
 | 
						|
     (origin
 | 
						|
       (method url-fetch)
 | 
						|
       (uri (pypi-uri name version))
 | 
						|
       (sha256
 | 
						|
        (base32
 | 
						|
         "08clrwpfdxcv2z2b5ardpmim4alahbw4l7631dhw62xhbcf6wjzz"))))
 | 
						|
    (build-system python-build-system)
 | 
						|
    (inputs
 | 
						|
     `(("python-pyyaml" ,python-pyyaml)
 | 
						|
       ("python-sockjs-tornado" ,python-sockjs-tornado)
 | 
						|
       ("python-tornado" ,python-tornado)))
 | 
						|
    (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)))))
 | 
						|
    (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)))
 |