[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add emacs-log4e.
From: |
Alex Kost |
Subject: |
05/08: gnu: Add emacs-log4e. |
Date: |
Sat, 28 Jan 2017 09:42:10 +0000 (UTC) |
alezost pushed a commit to branch master
in repository guix.
commit 521f5d96f7f3bf56e43892950b5302a0b560a2d2
Author: Mathieu Othacehe <address@hidden>
Date: Fri Jan 27 14:43:45 2017 +0100
gnu: Add emacs-log4e.
* gnu/packages/emacs.scm (emacs-log4e): New variable.
Signed-off-by: Alex Kost <address@hidden>
---
gnu/packages/emacs.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4737a81..03de1c0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3671,3 +3671,33 @@ procedures for emacs-lisp-mode.")
provides functions to convert hash tables from and to alists and plists.")
(license license:gpl3+)))
+(define-public emacs-log4e
+ (package
+ (name "emacs-log4e")
+ (version "0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/aki2o/log4e/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'remove-tests
+ ;; Guile builder complains about null characters in some
+ ;; strings of test files. Remove "test" directory (it is not
+ ;; needed anyway).
+ (lambda _
+ (delete-file-recursively "test"))))))
+ (home-page "https://github.com/aki2o/log4e")
+ (synopsis "Logging framework for elisp")
+ (description
+ "This package provides a logging framework for elisp. It allows
+you to deal with multiple log levels.")
+ (license license:gpl3+)))
- branch master updated (aaf111a -> c695ed3), Alex Kost, 2017/01/28
- 04/08: gnu: Add emacs-ht., Alex Kost, 2017/01/28
- 01/08: doc: Fix typos., Alex Kost, 2017/01/28
- 06/08: gnu: Add emacs-gntp., Alex Kost, 2017/01/28
- 08/08: gnu: Add emacs-mu4e-alert., Alex Kost, 2017/01/28
- 03/08: gnu: tvtime: Update to 1.0.11., Alex Kost, 2017/01/28
- 07/08: gnu: Add emacs-alert., Alex Kost, 2017/01/28
- 02/08: gnu: manaplus: Update to 1.7.1.21., Alex Kost, 2017/01/28
- 05/08: gnu: Add emacs-log4e.,
Alex Kost <=