From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 10/10] gnu: Add git-annex-remote-hubic. Date: Thu, 3 Dec 2015 16:43:31 +0200 Message-ID: <1449153811-32039-11-git-send-email-efraim@flashner.co.il> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6q-0006Gu-Uy for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4V6p-0000kG-Om for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:48 -0500 Received: from flashner.co.il ([178.62.234.194]:60942) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6p-0000jY-Hr for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:47 -0500 Received: from debian-netbook.jct.ac.il (unknown [213.151.53.59]) by flashner.co.il (Postfix) with ESMTPSA id DE1A340559 for ; Thu, 3 Dec 2015 14:43:46 +0000 (UTC) In-Reply-To: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * 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