all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add log4cpp.
Date: Tue, 14 Jun 2016 14:20:03 +0200	[thread overview]
Message-ID: <20160614122003.9656-1-ricardo.wurmus@mdc-berlin.de> (raw)

* gnu/packages/logging.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
---
 gnu/local.mk             |  1 +
 gnu/packages/logging.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 gnu/packages/logging.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 73aef0a..f896839 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -212,6 +212,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/lisp.scm				\
   %D%/packages/llvm.scm				\
   %D%/packages/lout.scm				\
+  %D%/packages/logging.scm			\
   %D%/packages/lsh.scm				\
   %D%/packages/lsof.scm				\
   %D%/packages/lua.scm				\
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
new file mode 100644
index 0000000..68af09e
--- /dev/null
+++ b/gnu/packages/logging.scm
@@ -0,0 +1,47 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
+;;;
+;;; 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 build-system gnu)
+  #:use-module (gnu packages))
+
+(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+)))
-- 
2.8.4

             reply	other threads:[~2016-06-14 12:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-14 12:20 Ricardo Wurmus [this message]
2016-06-15 11:29 ` [PATCH] gnu: Add log4cpp Ludovic Courtès
2016-06-15 15:12   ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160614122003.9656-1-ricardo.wurmus@mdc-berlin.de \
    --to=ricardo.wurmus@mdc-berlin.de \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.