-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
aviau
committed
Mar 31, 2015
1 parent
01702e6
commit 6a00d8f
Showing
9 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
gopass (0.1.0-1) unstable; urgency=low | ||
|
||
* Initial release. (Closes: #781494) | ||
|
||
-- Alexandre Viau <[email protected]> Sun, 29 Mar 2015 22:05:33 -0400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Source: gopass | ||
Section: admin | ||
Priority: extra | ||
Homepage: https://github.com/ReAzem/gopass | ||
Maintainer: Alexandre Viau <[email protected]> | ||
Build-Depends: debhelper (>= 9), | ||
dh-golang, | ||
golang-go, | ||
golang-ansi-dev, | ||
golang-go.crypto-dev | ||
Standards-Version: 3.9.6 | ||
Vcs-Git: https://github.com/ReAzem/gopass.git | ||
Vcs-Browser: https://github.com/ReAzem/gopass | ||
|
||
Package: gopass | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Built-Using: ${misc:Built-Using} | ||
Description: pass implementation in Go | ||
gopass makes managing these individual password files extremely easy. All | ||
passwords live in ~/.password-store, and gopass provides some nice commands | ||
for adding, editing, generating, and retrieving passwords. | ||
|
||
Package: golang-gopass-dev | ||
Architecture: all | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Built-Using: ${misc:Built-Using} | ||
Description: pass implementation in Go | ||
gopass makes managing these individual password files extremely easy. All | ||
passwords live in ~/.password-store, and gopass provides some nice commands | ||
for adding, editing, generating, and retrieving passwords. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: gopass | ||
Source: https://github.com/ReAzem/gopass | ||
|
||
Files: * | ||
Copyright: 2015 Alexandre Viau <[email protected]> | ||
License: GPL-3+ | ||
|
||
Files: debian/* | ||
Copyright: 2015 Alexandre Viau <[email protected]> | ||
License: GPL-3+ | ||
|
||
License: GPL-3+ | ||
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 3 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 3 can be found in the file | ||
`/usr/share/common-licenses/GPL-3'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[git-buildpackage] | ||
upstream-tag = v%(version)s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/share/gocode/src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/bin/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
man/gopass.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
|
||
export DH_GOPKG := github.com/ReAzem/gopass | ||
|
||
%: | ||
dh $@ --buildsystem=golang --with=golang |