aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libdaemon.scm
blob: 81cf6e58ba8ca79c03450d6cd8592f2ac0e9c504 (about) (plain)
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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014 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 libdaemon)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public libdaemon
  (package
    (name "libdaemon")
    (version "0.14")
    (source (origin
             (method url-fetch)
             (uri (list
                   (string-append
                    "mirror://debian/pool/main/libd/libdaemon/libdaemon_"
                    version ".orig.tar.gz")
                   "http://pkgs.fedoraproject.org/repo/pkgs/libdaemon/libdaemon-0.14.tar.gz/509dc27107c21bcd9fbf2f95f5669563/libdaemon-0.14.tar.gz"

                   ;; This used to be the canonical URL but it vanished.
                   ;; See <http://bugs.gnu.org/18639>.
                   ;; (string-append
                   ;;  "http://0pointer.de/lennart/projects/libdaemon/libdaemon-"
                   ;;  version ".tar.gz")
                   ))
             (sha256
              (base32
               "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx"))
             (file-name (string-append name "-" version ".tar.gz"))))
    (build-system gnu-build-system)

    ;; XXX: Stale URL, missing replacement.  See <http://bugs.gnu.org/18639>.
    (home-page "http://0pointer.de/lennart/projects/libdaemon/")

    (synopsis "Lightweight C library that eases the writing of UNIX daemons")
    (description
     "Libdaemon is a lightweight C library that eases the writing of UNIX
daemons.  It consists of the following parts:

  • A wrapper around fork() which does the correct daemonization procedure of
    a process

  • A wrapper around syslog() for simpler and compatible log output to Syslog
    or STDERR

  • An API for writing PID files

  • An API for serializing UNIX signals into a pipe for usage with select() or
    poll()

  • An API for running subprocesses with STDOUT and STDERR redirected to
    syslog.

APIs like these are used in most daemon software available.  It is not that
simple to get it done right and code duplication is not a goal.")
    (license lgpl2.1+)))
kages/libevent.scm?id=0a404bdb5ec415357b14b7780d4eae4b42a4014b'>gnu: libuv: Update to 1.28.0....* gnu/packages/libevent.scm (libuv): Update to 1.28.0. Marius Bakke 2019-03-23Merge branch 'staging' into core-updatesMarius Bakke 2019-03-17gnu: libuv: Update to 1.27.0....* gnu/packages/libevent.scm (libuv): Update to 1.27.0. Marius Bakke 2019-03-16gnu: perl-ev: Update to 4.25....* gnu/packages/libevent.scm (perl-ev): Update to 4.25. Tobias Geerinckx-Rice 2019-03-14Merge branch 'staging' into core-updatesMarius Bakke 2019-03-12gnu: perl-anyevent: Update to 7.15....* gnu/packages/libevent.scm (perl-anyevent): Update to 7.15. Tobias Geerinckx-Rice 2019-02-10gnu: libuv: Update to 1.26.0....* gnu/packages/libevent.scm (libuv): Update to 1.26.0. Marius Bakke 2019-01-20Merge branch 'master' into stagingLudovic Courtès 2019-01-17gnu: Add perl-rpc-epc-service....* gnu/packages/libevent.scm (perl-rpc-epc-service): New variable. Pierre Neidhardt 2018-12-12gnu: libuv: Update to 1.24.0....* gnu/packages/libevent.scm (libuv): Update to 1.24.0. Marius Bakke 2018-09-26gnu: node: Build against libuv@1.19....* gnu/packages/libevent.scm (libuv-1.19): New public variable. * gnu/packages/node.scm (node)[inputs]: Change LIBUV to LIBUV-1.19. Marius Bakke 2018-08-25Merge branch 'staging' into core-updatesMarius Bakke 2018-08-21gnu: libuv: Update to 1.23.0....* gnu/packages/libevent.scm (libuv): Update to 1.23.0. Marius Bakke 2018-08-11Migrate search.cpan.org home pages to metacpan.org....The venerable search.cpan.org has retired[0]. [0]: https://log.perl.org/2018/05/goodbye-search-dot-cpan-dot-org.html * guix/import/cpan.scm (cpan-home): Generate metacpan.org home page URIs. Update all previously generated ones in (gnu packages) to their canonical new homes. Tobias Geerinckx-Rice 2018-08-11gnu: perl-ev: Use INVOKE....* gnu/packages/libevent.scm (perl-ev)[arguments]: Substitute INVOKE for SYSTEM*. Tobias Geerinckx-Rice 2018-07-21gnu: libuv: Drop redundant 'autogen' phase....* gnu/packages/libevent.scm (libuv)[arguments]: Remove #:phases. Marius Bakke 2018-07-21gnu: libuv: Update to 1.22.0....* gnu/packages/libevent.scm (libuv): Update to 1.22.0. Marius Bakke 2018-05-31gnu: libuv: Update to 1.20.3....* gnu/packages/libevent.scm (libuv): Update to 1.20.3. Jelle Licht 2018-04-30gnu: libuv: Update to 1.20.2....* gnu/packages/libevent.scm (libuv): Update to 1.20.2. Marius Bakke 2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus 2018-03-09gnu: 'autoconf-wrapper' is no longer a procedure....Fixes <https://bugs.gnu.org/30710>. Suggested by Björn Höfling <bjoern.hoefling@bjoernhoefling.de>. * gnu/packages/autotools.scm (autoconf-wrapper): Rename to... (make-autoconf-wrapper): ... this. Add 'properties' field. (autoconf-wrapper): New variable. * gnu/packages/gnunet.scm (guile-gnunet): Adjust accordingly. * gnu/packages/gnupg.scm (signing-party): Likewise. * gnu/packages/guile.scm (guile-ics, guile-bash): Likewise. * gnu/packages/libevent.scm (libuv): Likewise. * gnu/packages/logging.scm (glog): Likewise. * gnu/packages/mail.scm (libetpan): Likewise. * gnu/packages/mate.scm (mate-icon-theme-faenza) (mate-screensaver): Likewise. * gnu/packages/package-management.scm (guix): Likewise. * gnu/packages/sawfish.scm (librep): Likewise. * gnu/packages/video.scm (motion): Likewise. * gnu/packages/zile.scm (zile-on-guile): Likewise. Ludovic Courtès 2018-03-08gnu: libuv: Update to 1.19.2....* gnu/packages/libevent.scm (libuv): Update to 1.19.2. Marius Bakke