further debianization work. (also, made src/common non-executable,
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Fri, 13 Jun 2008 14:32:09 +0000 (10:32 -0400)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Fri, 13 Jun 2008 14:32:09 +0000 (10:32 -0400)
since it is sourced, not executed).

debian/control
debian/copyright [new file with mode: 0644]
debian/monkeysphere.dirs [new file with mode: 0644]
debian/monkeysphere.docs [new file with mode: 0644]
debian/monkeysphere.install [new file with mode: 0644]
debian/monkeysphere.manpages [new file with mode: 0644]
debian/rules [new file with mode: 0755]
src/common [changed mode: 0755->0644]

index 00c6aebcc1f2d6ffb730d65765ca1c02c9ac03e9..e190ae0b15a063f1e5aa4e596b34a964ac1ce8ec 100644 (file)
@@ -1,7 +1,7 @@
 Source: monkeysphere
 Section: net
 Priority: extra
-Maintainer: Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>
+Maintainer: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
 Uploaders: Jameson Rollins <jrollins@fifthhorseman.net>
 Build-Depends: debhelper (>= 7.0), libgnutls-dev (>= 2.3.14)
 Standards-Version: 3.8.0.1
@@ -10,6 +10,13 @@ Enhances: openssh-client, openssh-server
 Dm-Upload-Allowed: yes
 
 Package: monkeysphere
-Architecture: all
+Architecture: any
 Depends: openssh-client, gnupg | gnupg2, coreutils (>= 6)
+Recommends: netcat
 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 (file)
index 0000000..413f60f
--- /dev/null
@@ -0,0 +1,16 @@
+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: Jameson Rollins <jrollins@fifthhorseman.net>, 
+ Daniel Kahn Gillmor <dkg@fifthhorseman.net>
+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/monkeysphere.dirs b/debian/monkeysphere.dirs
new file mode 100644 (file)
index 0000000..5089e73
--- /dev/null
@@ -0,0 +1 @@
+usr/share/monkeysphere
diff --git a/debian/monkeysphere.docs b/debian/monkeysphere.docs
new file mode 100644 (file)
index 0000000..4b8144e
--- /dev/null
@@ -0,0 +1,2 @@
+doc/README
+doc/MonkeySpec
diff --git a/debian/monkeysphere.install b/debian/monkeysphere.install
new file mode 100644 (file)
index 0000000..a614937
--- /dev/null
@@ -0,0 +1,5 @@
+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
diff --git a/debian/monkeysphere.manpages b/debian/monkeysphere.manpages
new file mode 100644 (file)
index 0000000..6e2cb92
--- /dev/null
@@ -0,0 +1,3 @@
+man/man1/monkeysphere.1
+man/man1/openpgp2ssh.1
+man/man8/monkeysphere-server.8
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..cbe925d
--- /dev/null
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+%:
+       dh $@
old mode 100755 (executable)
new mode 100644 (file)