[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/12: gnu: Add python-oslo.log.
From: |
Cyril Roelandt |
Subject: |
10/12: gnu: Add python-oslo.log. |
Date: |
Tue, 03 Nov 2015 20:39:28 +0000 |
steap pushed a commit to branch master
in repository guix.
commit aee6412ad8525f25b7dabe02ef5af23485f1e196
Author: Cyril Roelandt <address@hidden>
Date: Mon Oct 12 23:27:16 2015 +0200
gnu: Add python-oslo.log.
* gnu/packages/openstack.scm (python-oslo.log,
python2-oslo.log): New variables.
---
gnu/packages/openstack.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index d8f3bd3..7581e6a 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -460,6 +460,47 @@ in an application or library.")
(define-public python2-oslo.i18n
(package-with-python2 python-oslo.i18n))
+(define-public python-oslo.log
+ (package
+ (name "python-oslo.log")
+ (version "1.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/o/oslo.log/oslo.log-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1fhy6yvbd565nv4x4i3ppyrlbmz3yy9d0xsvw5nkqsa7g43nmf8z"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-debtcollector" ,python-debtcollector)
+ ("python-oslo.config" ,python-oslo.config)
+ ("python-oslo.context" ,python-oslo.context)
+ ("python-oslo.i18n" ,python-oslo.i18n)
+ ("python-oslo.utils" ,python-oslo.utils)
+ ("python-oslo.serialization" ,python-oslo.serialization)
+ ("python-six" ,python-six)))
+ (inputs
+ `(("python-babel" ,python-babel)
+ ("python-iso8601" ,python-iso8601)
+ ("python-mock" ,python-mock)
+ ("python-oslotest" ,python-oslotest)
+ ("python-pbr" ,python-pbr)
+ ("python-setuptools" ,python-setuptools)))
+ (home-page "http://launchpad.net/oslo")
+ (synopsis "Python logging library of the Oslo project")
+ (description
+ "The oslo.log (logging) configuration library provides standardized
+configuration for all OpenStack projects. It also provides custom formatters,
+handlers and support for context specific logging (like resource id’s etc).")
+ (license asl2.0)))
+
+(define-public python2-oslo.log
+ (package-with-python2 python-oslo.log))
+
(define-public python-oslo.serialization
(package
(name "python-oslo.serialization")
- branch master updated (f8ae32a -> 465b61f), Cyril Roelandt, 2015/11/03
- 04/12: gnu: Add python-mccabe 0.2.1, Cyril Roelandt, 2015/11/03
- 05/12: gnu: Add python-flake8-2.2.4, Cyril Roelandt, 2015/11/03
- 01/12: guix: Add a "pypi-uri" helper method., Cyril Roelandt, 2015/11/03
- 02/12: import: pypi: Use "pypi-uri" instead of building the URL manually., Cyril Roelandt, 2015/11/03
- 03/12: gnu: Update python-requests., Cyril Roelandt, 2015/11/03
- 06/12: gnu: Add python-hacking., Cyril Roelandt, 2015/11/03
- 07/12: gnu: Add python-oslosphinx., Cyril Roelandt, 2015/11/03
- 08/12: gnu: Add python-os-testr., Cyril Roelandt, 2015/11/03
- 09/12: gnu: paramiko: Move python-pycrypto to the propagated inputs., Cyril Roelandt, 2015/11/03
- 10/12: gnu: Add python-oslo.log.,
Cyril Roelandt <=
- 12/12: gnu: Add python-tempest-lib., Cyril Roelandt, 2015/11/03
- 11/12: gnu: python-oslotest: move mox3 to the propagated-inputs, Cyril Roelandt, 2015/11/03