From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57258) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFjhh-0007mk-Ll for guix-patches@gnu.org; Tue, 30 May 2017 12:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFjhe-0000Ms-DP for guix-patches@gnu.org; Tue, 30 May 2017 12:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42841) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dFjhe-0000MK-9o for guix-patches@gnu.org; Tue, 30 May 2017 12:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dFjhe-0003Z5-55 for guix-patches@gnu.org; Tue, 30 May 2017 12:09:02 -0400 Subject: bug#27125: [PATCH] gnu: Add git-remote-gcrypt Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <17900ceb-66a4-6596-b7ed-9f3472cc2490@euandre.org> Date: Tue, 30 May 2017 18:08:03 +0200 In-Reply-To: <17900ceb-66a4-6596-b7ed-9f3472cc2490@euandre.org> ("=?UTF-8?Q?Andr=C3=A9?="'s message of "Sun, 28 May 2017 17:36:03 -0300") Message-ID: <87efv61g64.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: =?UTF-8?Q?Andr=C3=A9?= Cc: 27125-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Andr=C3=A9, Andr=C3=A9 skribis: > From 65d318af9c5bbf801d47417745d0651352caf557 Mon Sep 17 00:00:00 2001 > From: =3D?UTF-8?q?Andr=3DC3=3DA9=3D20Miranda?=3D > Date: Sun, 28 May 2017 13:34:10 -0300 > Subject: [PATCH] gnu: Add 'git-remote-gcrypt' package > > * gnu/packages/version-control.scm: Add 'git-remote-gcrypt' package. I made the minor modifications below, adjusted the commit log to match our conventions, and pushed. Well done for a first patch! :-) Thank you and welcome! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-contro= l.scm index eced2c953..12fc2c6cc 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -14,6 +14,7 @@ ;;; Copyright =C2=A9 2017 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2017 Vasile Dumitrascu ;;; Copyright =C2=A9 2017 Cl=C3=A9ment Lassieur +;;; Copyright =C2=A9 2017 Andr=C3=A9 ;;; ;;; This file is part of GNU Guix. ;;; @@ -449,20 +450,21 @@ to lock down your entire repository.") #t)))) (home-page "https://spwhitton.name/tech/code/git-remote-gcrypt/") (synopsis "Whole remote repository encryption") - (description "git-remote-gcrypt is a git remote helper to push and pull= from -repositories encrypted with GnuPG. It works with the standard git transpo= rts, + (description "git-remote-gcrypt is a Git remote helper to push and pull= from +repositories encrypted with GnuPG. It works with the standard Git transpo= rts, including repository hosting services like GitLab. =20 -Remote helper programs are invoked by git to handle network transport. Th= is -helper handles gcrypt:: URLs that will access a remote repository encrypte= d with -GPG, using our custom format. +Remote helper programs are invoked by Git to handle network transport. Th= is +helper handles @code{gcrypt:} URLs that access a remote repository encrypt= ed +with GPG, using our custom format. =20 -Supported locations are local, rsync:// and sftp://, where the repository = is -stored as a set of files, or instead any where gcrypt will store = the -same representation in a git repository, bridged over arbitrary git transp= ort. +Supported locations are local, @code{rsync://} and @code{sftp://}, where t= he +repository is stored as a set of files, or instead any Git URL where gcrypt +will store the same representation in a Git repository, bridged over arbit= rary +Git transport. =20 -The aim is to provide confidential, authenticated git storage and collabor= ation -using typical untrusted file hosts or services.") +The aim is to provide confidential, authenticated Git storage and +collaboration using typical untrusted file hosts or services.") (license license:gpl3+))) =20 (define-public cgit --=-=-=--