[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 10/10] gnu: Add git-annex-remote-hubic.
From: |
Efraim Flashner |
Subject: |
[PATCH 10/10] gnu: Add git-annex-remote-hubic. |
Date: |
Thu, 3 Dec 2015 16:43:31 +0200 |
* gnu/packages/version-control.scm (git-annex-remote-hubic): New variable.
---
gnu/packages/version-control.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index b132663..e134d81 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -52,6 +52,7 @@
#:use-module (gnu packages ncurses)
#:use-module (gnu packages ssh)
#:use-module (gnu packages web)
+ #:use-module (gnu packages openstack)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -925,3 +926,35 @@ any project with more than one developer, is one of
Aegis's major functions.")
a history browser. It can also stage hunks for commit, or colorize the
output of the 'git' command.")
(license gpl2+)))
+
+(define-public git-annex-remote-hubic
+ (package
+ (name "git-annex-remote-hubic")
+ (version "0.3.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/Schnouki/" name "/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version))
+ (sha256
+ (base32
+ "196g3jkaybjx11nbr51n0cjps3wjzb145ab76y717diqvvxp5v4r"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:python ,python-2))
+ (native-inputs
+ `(("python2-setuptools" ,python2-setuptools)
+ ;; some extras for the tests
+ ("python2-futures" ,python2-futures)
+ ("python2-six" ,python2-six)))
+ (inputs
+ `(("python2-dateutil" ,python2-dateutil)
+ ("python2-rauth" ,python2-rauth)
+ ("python2-swiftclient" ,python2-swiftclient)))
+ (home-page "https://github.com/Schnouki/git-annex-remote-hubic/")
+ (synopsis "Use hubic as a git-annex remote")
+ (description
+ "Git annex remote hubic allows you to use your hubiC account as a
\"special
+repository\".")
+ (license gpl3+)))
--
2.6.2
[PATCH 10/10] gnu: Add git-annex-remote-hubic.,
Efraim Flashner <=