all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob daaf6b1f4c8441dc7d3c140be7586f9728548a8b 4183 bytes (raw)
name: gnu/packages/syslog.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.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 syslog)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages gnupg)
  #:use-module (gnu packages pkg-config)
)

(define-public libestr
  (package
    (name "libestr")
    (version "0.1.10")
    (source (origin
            (method url-fetch)
            (uri (string-append "http://libestr.adiscon.com/files/download/libestr-" version ".tar.gz"))
            (sha256
             (base32
              "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx"))))
    (build-system gnu-build-system)
    (home-page "http://libestr.adiscon.com/")
    (synopsis "rsyslog essential string handling")
    (description "rsyslog essential string handling")
    (license license:gpl2+))) ; FIXME actually gpl2.1+

(define-public libfastjson
  (package
    (name "libfastjson")
    (version "0.99.2")
    (source (origin
            (method url-fetch)
            (uri (string-append "http://download.rsyslog.com/libfastjson/libfastjson-" version ".tar.gz"))
            (sha256
             (base32
              "1zcd8nzwh8br79n34mka4m08v6vdfhfdid1p9w0q2fi4apa57w3g"))))
    (build-system gnu-build-system)
    (home-page "http://www.rsyslog.com/")
    (synopsis "rsyslog json-c fork")
    (description "rsyslog json-c fork")
    (license license:gpl2+))) ; FIXME actually MIT. Which one?

(define-public liblogging
  (package
    (name "liblogging")
    (version "1.0.5")
    (source (origin
            (method url-fetch)
            (uri (string-append "http://download.rsyslog.com/liblogging/liblogging-" version ".tar.gz"))
            (sha256
             (base32
              "02w94j344q0ywlj4mdf9fnzwggdsn3j1yn43sdlsddvr29lw239i"))))
    (build-system gnu-build-system)
    (home-page "http://www.rsyslog.com/")
    (synopsis "rsyslog logging library")
    (description "rsyslog logging library")
    (native-inputs `(("pkg-config" ,pkg-config)))
    (arguments `(#:configure-flags '("--disable-journal" ; to avoid libsystemd-journal
)))
    (license license:bsd-2))) ; FIXME https://github.com/rsyslog/liblogging/commit/78305e36938803e8a6c0a1be461ad7817d43563d

(define-public rsyslog
  (package
    (name "rsyslog")
    (version "8.17.0")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "http://www.rsyslog.com/files/download/rsyslog/rsyslog-" version ".tar.gz"))
      (sha256
       (base32
        "1fazpbllr3wk8aw41zk7b6iirds4h8j3im080nf8my2cjssij7pc"))))
    (build-system gnu-build-system)
    (native-inputs `(("pkg-config" ,pkg-config)))
    (inputs `(("libestr"      ,libestr)
              ("libfastjson"  ,libfastjson)
              ("zlib"         ,zlib)
              ("util-linux"   ,util-linux)
              ("libgcrypt" ,libgcrypt)
              ("liblogging" ,liblogging)))
; TODO enable rfc3195 support
; TODO liblogging-stdlog
    (home-page "http://www.rsyslog.com/")
    (synopsis "System Logger")
    (description "rsyslog is the rocket-fast system for log processing.")
; note: can disable uuid-dev (maybe not Linux-specific then)
; note: can enable lots of things
    (license license:gpl3))) ; or ASL 2.0


debug log:

solving daaf6b1 ...
found daaf6b1 in https://yhetil.org/guix/20160319182524.64f7f9b2@scratchpost.org/

applying [1/1] https://yhetil.org/guix/20160319182524.64f7f9b2@scratchpost.org/
diff --git a/gnu/packages/syslog.scm b/gnu/packages/syslog.scm
new file mode 100644
index 0000000..daaf6b1

Checking patch gnu/packages/syslog.scm...
1:116: new blank line at EOF.
+
Applied patch gnu/packages/syslog.scm cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 daaf6b1f4c8441dc7d3c140be7586f9728548a8b	gnu/packages/syslog.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.