Skip to content

Commit

Permalink
Initial packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
aviau committed Mar 31, 2015
1 parent 01702e6 commit 6a00d8f
Show file tree
Hide file tree
Showing 9 changed files with 83 additions and 0 deletions.
5 changes: 5 additions & 0 deletions debian/changelog
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
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
32 changes: 32 additions & 0 deletions debian/control
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.

33 changes: 33 additions & 0 deletions debian/copyright
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'.
2 changes: 2 additions & 0 deletions debian/gbp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[git-buildpackage]
upstream-tag = v%(version)s
1 change: 1 addition & 0 deletions debian/golang-gopass-dev.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
usr/share/gocode/src
1 change: 1 addition & 0 deletions debian/gopass.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
usr/bin/*
1 change: 1 addition & 0 deletions debian/gopass.manpages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
man/gopass.1
7 changes: 7 additions & 0 deletions debian/rules
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

0 comments on commit 6a00d8f

Please sign in to comment.