diff options
author | Micah Anderson <micah@riseup.net> | 2008-06-18 23:35:20 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-06-18 23:35:20 -0400 |
commit | 308aa104f66a40f2426c13b96f48631937502f6b (patch) | |
tree | 55e1b1427ba23750b0c239e5d43fc3ffa49b0293 /debian | |
parent | a9a56853a27e1dbce3c48af327b0adff0e4c38e0 (diff) | |
parent | 9c94e937fbe8beb56956365cac07d6eff45215cd (diff) |
Merge commit 'dkg/master'
Conflicts:
doc/MonkeySpec
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 22 | ||||
-rw-r--r-- | debian/copyright | 23 | ||||
-rw-r--r-- | debian/dirs | 11 | ||||
-rw-r--r-- | debian/monkeysphere.dirs | 5 | ||||
-rw-r--r-- | debian/monkeysphere.docs | 2 | ||||
-rw-r--r-- | debian/monkeysphere.install | 7 | ||||
-rw-r--r-- | debian/monkeysphere.manpages | 4 | ||||
-rwxr-xr-x | debian/rules | 3 |
10 files changed, 85 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ec744e1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,7 @@ +monkeysphere (0.1-1) unstable; urgency=low + + * First release of debian package for monkeysphere. + * This is experimental -- please report bugs! + + -- Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> Fri, 13 Jun 2008 10:53:43 -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..d4d25c6 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: monkeysphere +Section: net +Priority: extra +Maintainer: Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> +Uploaders: Jameson Rollins <jrollins@fifthhorseman.net> +Build-Depends: debhelper (>= 7.0), libgnutls-dev (>= 2.3.14) +Standards-Version: 3.8.0.1 +Homepage: http://cmrg.fifthhorseman.net/wiki/OpenPGPandSSH +Dm-Upload-Allowed: yes + +Package: monkeysphere +Architecture: any +Depends: openssh-client, gnupg | gnupg2, coreutils (>= 6), moreutils, ${shlibs:Depends} +Recommends: netcat +Enhances: openssh-client, openssh-server +Description: use the OpenPGP web of trust to verify ssh connections + SSH key-based authentication is tried-and-true, but it lacks a true + Public Key Infrastructure for key certification, revocation and + expiration. MonkeySphere is a framework that uses the OpenPGP web of + trust for these PKI functions. It can be used in both directions: + for users to get validated host keys, and for hosts to manage user + permissions. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..040e6c8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,23 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Debianized-By: Daniel Kahn Gillmor <dkg@fifthhorseman.net> +Debianized-Date: Fri Jun 13 10:19:16 EDT 2008 +Original-Source: http://lair.fifthhorseman.net/~dkg/git/monkeysphere.git/ + +Files: * +Copyright: 2008 Jameson Rollins <jrollins@fifthhorseman.net>, + Daniel Kahn Gillmor <dkg@fifthhorseman.net>, + Jamie McClelland <jamie@mayfirst.org>, + Micah Anderson <micah@riseup.net>, + Matthew Goins <mjgoins@openflows.com>, + Mike Castleman <mlcastle@mlcastle.net>, + Elliot Winard <enw@caveteen.com>, + Greg Lyle <greg@stealthisemail.com> + +License: GPL-3+ + This package 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. + . + On Debian systems, the complete text of the GNU General Public License + can be found in file "/usr/share/common-licenses/GPL". diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..b458649 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,11 @@ +var/cache/monkeysphere +var/cache/monkeysphere/authorized_keys +usr/bin +usr/sbin +usr/share +usr/share/monkeysphere +usr/share/man +usr/share/man1 +usr/share/man8 +etc/monkeysphere +etc/monkeysphere/authorized_user_ids diff --git a/debian/monkeysphere.dirs b/debian/monkeysphere.dirs new file mode 100644 index 0000000..bc8abcf --- /dev/null +++ b/debian/monkeysphere.dirs @@ -0,0 +1,5 @@ +usr/share/monkeysphere +var/cache/monkeysphere +var/cache/monkeysphere/authorized_keys +etc/monkeysphere +etc/monkeysphere/authorized_user_ids diff --git a/debian/monkeysphere.docs b/debian/monkeysphere.docs new file mode 100644 index 0000000..4b8144e --- /dev/null +++ b/debian/monkeysphere.docs @@ -0,0 +1,2 @@ +doc/README +doc/MonkeySpec diff --git a/debian/monkeysphere.install b/debian/monkeysphere.install new file mode 100644 index 0000000..6dd3dda --- /dev/null +++ b/debian/monkeysphere.install @@ -0,0 +1,7 @@ +src/keytrans/openpgp2ssh usr/bin +src/monkeysphere usr/bin +src/monkeysphere-server usr/sbin +src/monkeysphere-ssh-proxycommand usr/bin +src/common usr/share/monkeysphere +etc/monkeysphere.conf etc/monkeysphere +etc/monkeysphere-server.conf etc/monkeysphere diff --git a/debian/monkeysphere.manpages b/debian/monkeysphere.manpages new file mode 100644 index 0000000..a8f6c16 --- /dev/null +++ b/debian/monkeysphere.manpages @@ -0,0 +1,4 @@ +man/man1/monkeysphere.1 +man/man1/openpgp2ssh.1 +man/man1/monkeysphere-ssh-proxycommand.1 +man/man8/monkeysphere-server.8 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cbe925d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ |