aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--debian/changelog33
-rw-r--r--debian/compat1
-rw-r--r--debian/control22
-rw-r--r--debian/copyright8
-rw-r--r--debian/docs1
-rwxr-xr-xdebian/rules11
-rwxr-xr-xgit-remote-gcrypt2
7 files changed, 77 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6ce2e5e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+git-remote-gcrypt (0.20130908-5) UNRELEASED; urgency=low
+
+ * Stop passing --fast-list to gpg as this sometimes causes it to not
+ display key fingerprints, which git-remote-gcrpyt needs.
+ Closes https://github.com/blake2-ppc/git-remote-gcrypt/issues/8
+
+ -- Joey Hess <joeyh@debian.org> Thu, 26 Sep 2013 15:37:57 -0400
+
+git-remote-gcrypt (0.20130908-4) unstable; urgency=low
+
+ * Added --check option.
+
+ -- Joey Hess <joeyh@debian.org> Thu, 19 Sep 2013 12:10:24 -0400
+
+git-remote-gcrypt (0.20130908-3) unstable; urgency=low
+
+ * Add remote.<name>.gcrypt-signingkey config.
+
+ -- Joey Hess <joeyh@debian.org> Tue, 17 Sep 2013 15:33:35 -0400
+
+git-remote-gcrypt (0.20130908-2) unstable; urgency=low
+
+ * Set --trust-model=always when encrypting.
+ Needed to interoperate with git-annex.
+ Closes https://github.com/blake2-ppc/git-remote-gcrypt/issues/3
+
+ -- Joey Hess <joeyh@debian.org> Mon, 16 Sep 2013 15:49:16 -0400
+
+git-remote-gcrypt (0.20130908-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Joey Hess <joeyh@debian.org> Sun, 08 Sep 2013 20:08:23 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e3ec704
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: git-remote-gcrypt
+Section: vcs
+Priority: optional
+Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.9.0)
+Maintainer: Joey Hess <joeyh@debian.org>
+Standards-Version: 3.9.4
+Homepage: https://github.com/blake2-ppc/git-remote-gcrypt
+
+Package: git-remote-gcrypt
+Architecture: all
+Section: vcs
+Depends: git, gnupg | gnupg2, ${misc:Depends}
+Recommends: rsync, curl
+Description: encrypted git repositories
+ This lets git store git repositories in encrypted form.
+ It supports storing repositories on rsync or sftp servers.
+ It can also store the encrypted git repository inside a remote git
+ repository. All the regular git commands like git push and git pull
+ can be used to operate on such an encrypted repository.
+ .
+ The aim is to provide confidential, authenticated git storage and
+ collaboration using typical untrusted file hosts or services.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..03bf18a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,8 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://github.com/blake2-ppc/git-remote-gcrypt
+
+Files: *
+Copyright: 2013 by engla
+License: GPL-2+
+ On Debian systems, the complete text of the GPL can be found in
+ /usr/share/common-licenses/GPL.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..26ba625
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_build:
+ true
+override_dh_auto_clean:
+ true
+
+override_dh_auto_install:
+ prefix=/usr DESTDIR=debian/git-remote-gcrypt ./install.sh
diff --git a/git-remote-gcrypt b/git-remote-gcrypt
index 87db2a1..22f19dd 100755
--- a/git-remote-gcrypt
+++ b/git-remote-gcrypt
@@ -407,7 +407,7 @@ read_config()
for recp_ in $conf_part
do
- gpg_list=$(gpg --with-colons --fast-list --fingerprint -k "$recp_")
+ gpg_list=$(gpg --with-colons --fingerprint -k "$recp_")
filter_to @r_keyinfo "pub*" "$gpg_list"
filter_to @r_keyfpr "fpr*" "$gpg_list"
isnull "$r_keyinfo" || isnonnull "${r_keyinfo##*"$Newline"*}" ||