summaryrefslogtreecommitdiffstatshomepage
path: root/debian
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-09-04 03:06:54 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-04 05:17:35 +0200
commitff96b34e47c81c7cf1afd39a0f2b19fcd96a25e5 (patch)
tree6cfa7251c60786fba85ca3efef7b6e116c3fc653 /debian
parentFix readme typo. (diff)
downloadpassword-store-ff96b34e47c81c7cf1afd39a0f2b19fcd96a25e5.tar.xz
password-store-ff96b34e47c81c7cf1afd39a0f2b19fcd96a25e5.zip
Prepare for debianification.1.0
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control11
-rw-r--r--debian/copyright27
-rw-r--r--debian/files1
-rw-r--r--debian/password-store/.keep0
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
8 files changed, 52 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..27546a1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+password-store (1.0-1) stable; urgency=low
+
+ * Initial release.
+
+ -- Jason A. Donenfeld <Jason@zx2c4.com> Mon, 03 Sep 2012 20:38:44 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..0cb0a38
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,11 @@
+Source: password-store
+Maintainer: Jason A. Donenfeld <Jason@zx2c4.com>
+Section: admin
+Priority: optional
+Standards-Version: 3.9.2
+Build-Depends:
+
+Package: password-store
+Architecture: all
+Depends: xclip, pwgen, git-core, gnupg, tree
+Description: Stores, retrieves, generates, and synchronizes passwords securely using gpg, pwgen, and git.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..24a61ec
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Password Store
+Source: http://git.zx2c4.com/password-store
+
+Files: *
+Copyright: Copyright 2012 Jason A. Donenfeld <Jason@zx2c4.com>
+License: GPL-2+
+ This program 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 2 of the License, or (at your option) any later
+ version.
+ .
+ This program 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 this package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/files b/debian/files
new file mode 100644
index 0000000..666f4c8
--- /dev/null
+++ b/debian/files
@@ -0,0 +1 @@
+password-store_1.0-1_all.deb admin optional
diff --git a/debian/password-store/.keep b/debian/password-store/.keep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/debian/password-store/.keep
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..209f6de
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_install:
+ $(MAKE) DESTDIR=$$(pwd)/debian/password-store PREFIX=/usr install
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)