Re: [PATCH] gnu: Add python-git-review.

2016-09-08 Thread Efraim Flashner
Patch pushed!


-- 
Efraim Flashner  אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted


signature.asc
Description: PGP signature


[PATCH] gnu: Add python-git-review.

2016-09-08 Thread Clément Lassieur
* gnu/packages/openstack.scm (python-git-review, python2-git-review): New 
variables.
---
 gnu/packages/openstack.scm | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 8474904..4cb38a9 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Cyril Roelandt 
 ;;; Copyright © 2015, 2016 Efraim Flashner 
+;;; Copyright © 2016 Clément Lassieur 
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -20,6 +21,7 @@
 (define-module (gnu packages openstack)
   #:use-module (gnu packages python)
   #:use-module (gnu packages tls)
+  #:use-module (gnu packages version-control)
   #:use-module (guix build-system python)
   #:use-module (guix download)
   #:use-module ((guix licenses)
@@ -781,3 +783,35 @@ permanence.")
  ("python2-oslosphinx" ,python2-oslosphinx)
  ,@(fold alist-delete (package-native-inputs swiftclient)
 '("python-keystoneclient" "python-oslosphinx")))
+
+(define-public python-git-review
+  (package
+(name "python-git-review")
+(version "1.25.0")
+(source
+ (origin
+   (method url-fetch)
+   (uri (pypi-uri "git-review" version))
+   (sha256
+(base32
+ "07d1jn9ryff5j5ic6qj5pbk10m1ccmpllj0wyalrcms1q9yhlzh8"
+(build-system python-build-system)
+(arguments `(#:tests? #f)) ; tests require a running Gerrit server
+(native-inputs
+ `(("python-pbr" ,python-pbr)))
+(inputs
+ `(("python-requests" ,python-requests)
+   ("git" ,git)))
+(home-page "http://docs.openstack.org/infra/git-review/";)
+(synopsis "Command-line tool for Gerrit")
+(description
+ "Git-review is a command-line tool that helps submitting Git branches to
+Gerrit for review, or fetching existing ones.")
+(license asl2.0)))
+
+(define-public python2-git-review
+  (let ((base (package-with-python2 (strip-python2-variant 
python-git-review
+(package (inherit base)
+ (native-inputs
+  `(("python2-setuptools" ,python2-setuptools)
+,@(package-native-inputs base))
-- 
2.10.0