diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ea1e130 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +git-crypt (0.3-1) unstable; urgency=low + + * Initial release. + + -- Andrew Ayer Sat, 29 Mar 2014 12:38:14 -0700 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..af323a5 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: git-crypt +Maintainer: Andrew Ayer +Section: vcs +Priority: optional +Standards-Version: 3.9.4 +Build-Depends: debhelper (>= 9), make (>= 3.81-5), libc6-dev (>= 2.7-18), gcc (>= 4:4.3.2-2), coreutils (>= 6.10-6), libssl-dev (>= 0.9.8o-4) +Vcs-Git: https://www.agwa.name/git/git-crypt.git -b debian +Homepage: https://www.agwa.name/projects/git-crypt + +Package: git-crypt +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, git (>= 1.7.2) +Enhances: git +Description: Transparent file encryption in git + git-crypt enables transparent encryption and decryption of files in a + git repository. Files which you choose to protect are encrypted when + committed, and decrypted when checked out. git-crypt lets you freely + share a repository containing a mix of public and private content. + git-crypt gracefully degrades, so developers without the secret key + can still clone and commit to a repository with encrypted files. + This lets you store your secret material (such as keys or passwords) + in the same repository as your code, without requiring you to lock down + your entire repository. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0e08e90 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: git-crypt +Source: https://github.com/AGWA/git-crypt + +Files: * +Copyright: Copyright 2014 Andrew Ayer +License: GPL-3+ with OpenSSL exception + git-crypt is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + git-crypt is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with git-crypt. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. + . + Additional permission under GNU GPL version 3 section 7: + . + If you modify the Program, or any covered work, by linking or + combining it with the OpenSSL project's OpenSSL library (or a + modified version of that library), containing parts covered by the + terms of the OpenSSL or SSLeay licenses, the licensors of the Program + grant you additional permission to convey the resulting work. + Corresponding Source for a non-source form of such a combination + shall include the source code for the parts of OpenSSL used as well + as that of the covered work. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..5f78644 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch = debian +upstream-tag = %(version)s + diff --git a/debian/git-crypt.docs b/debian/git-crypt.docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/git-crypt.docs @@ -0,0 +1 @@ +README diff --git a/debian/git-crypt.install b/debian/git-crypt.install new file mode 100644 index 0000000..4ba3722 --- /dev/null +++ b/debian/git-crypt.install @@ -0,0 +1 @@ +git-crypt usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1f61dae --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_install: