From 4893a1ce3527da5697ae26605022908460aee501 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 8 Sep 2013 20:04:27 -0400 Subject: debianization --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 22 ++++++++++++++++++++++ debian/copyright | 8 ++++++++ debian/docs | 1 + debian/rules | 11 +++++++++++ 6 files changed, 48 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b5a3671 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +git-remote-gcrypt (0.20130908-1) unstable; urgency=low + + * Initial release. + + -- Joey Hess 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 +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 -- cgit v1.2.3