[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/10: gnu: Add git-annex-remote-hubic.
From: |
Efraim Flashner |
Subject: |
10/10: gnu: Add git-annex-remote-hubic. |
Date: |
Sun, 17 Jan 2016 20:38:46 +0000 |
efraim pushed a commit to branch master
in repository guix.
commit e8d2168c2711d008f6f86e223f1f3339c17c9030
Author: Efraim Flashner <address@hidden>
Date: Mon Nov 30 20:55:01 2015 +0200
gnu: Add git-annex-remote-hubic.
* gnu/packages/version-control.scm (git-annex-remote-hubic): New variable.
---
gnu/packages/version-control.scm | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index c24c468..1edf9f8 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -56,6 +56,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)
@@ -1028,3 +1029,33 @@ fetching updates) over a collection of version control
repositories. It
supports a large number of version control systems: Git, Subversion,
Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity.")
(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 ".tar.gz"))
+ (sha256
+ (base32
+ "196g3jkaybjx11nbr51n0cjps3wjzb145ab76y717diqvvxp5v4r"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-setuptools" ,python-setuptools)
+ ;; for the tests
+ ("python-six" ,python-six)))
+ (propagated-inputs
+ `(("python-dateutil" ,python-dateutil-2)
+ ("python-futures" ,python-futures)
+ ("python-rauth" ,python-rauth)
+ ("python-swiftclient" ,python-swiftclient)))
+ (home-page "https://github.com/Schnouki/git-annex-remote-hubic/")
+ (synopsis "Use hubic as a git-annex remote")
+ (description
+ "This package allows you to use your hubic account as a \"special
+repository\" with git-annex.")
+ (license gpl3+)))
- branch master updated (fb492b9 -> e8d2168), Efraim Flashner, 2016/01/17
- 02/10: gnu: Add python-futures., Efraim Flashner, 2016/01/17
- 01/10: gnu: Add python-keystoneclient., Efraim Flashner, 2016/01/17
- 04/10: gnu: Add python-rauth., Efraim Flashner, 2016/01/17
- 03/10: gnu: Add python-swiftclient., Efraim Flashner, 2016/01/17
- 05/10: gnu: Add python-pyasn1-modules., Efraim Flashner, 2016/01/17
- 06/10: gnu: Add python2-functools32., Efraim Flashner, 2016/01/17
- 10/10: gnu: Add git-annex-remote-hubic.,
Efraim Flashner <=
- 09/10: gnu: Add python-urllib3., Efraim Flashner, 2016/01/17
- 07/10: gnu: python-pytest-cov: Clarify description., Efraim Flashner, 2016/01/17
- 08/10: gnu: python-wheel: Clarify description., Efraim Flashner, 2016/01/17