password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit ff96b34e47c81c7cf1afd39a0f2b19fcd96a25e5
parent a34d5ceaab1d8fd008173ea071555bd6346e02cf
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Tue,  4 Sep 2012 03:06:54 +0200

Prepare for debianification.

Diffstat:
MMakefile | 12++++++++----
Adebian/changelog | 5+++++
Adebian/compat | 1+
Adebian/control | 11+++++++++++
Adebian/copyright | 27+++++++++++++++++++++++++++
Adebian/files | 1+
Adebian/password-store/.keep | 0
Adebian/rules | 6++++++
Adebian/source/format | 1+
9 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,10 +1,14 @@ +PREFIX ?= /usr +DESTDIR ?= + all: @echo "Password store is a shell script, so there is nothing to do. Try \"make install\" instead." install: - @install -v src/password-store.sh /usr/bin/pass - @install -v man/pass.1 /usr/share/man/man1/pass.1 - @install -v bash-completion/pass-bash-completion.sh /usr/share/bash-completion/pass + @mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1 $(DESTDIR)/etc/bash_completion.d + @install -v src/password-store.sh $(DESTDIR)$(PREFIX)/bin/pass + @install -v man/pass.1 $(DESTDIR)$(PREFIX)/share/man/man1/pass.1 + @install -v bash-completion/pass-bash-completion.sh $(DESTDIR)/etc/bash_completion.d/password-store uninstall: - @rm -vf /usr/bin/pass /usr/share/man/man1/pass.1 /usr/share/bash-completion/pass + @rm -vf $(DESTDIR)$(PREFIX)/bin/pass $(DESTDIR)$(PREFIX)/share/man/man1/pass.1 $(DESTDIR)/etc/bash_completion.d/password-store diff --git a/debian/changelog 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 @@ -0,0 +1 @@ +7 diff --git a/debian/control 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 @@ -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 @@ -0,0 +1 @@ +password-store_1.0-1_all.deb admin optional diff --git a/debian/password-store/.keep b/debian/password-store/.keep diff --git a/debian/rules 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 @@ -0,0 +1 @@ +3.0 (quilt)