From 4cfb4241ae6f1b94fff84c92d7a7a0ae05714716 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sun, 20 Apr 2014 10:34:36 +0100 Subject: [PATCH] packaging fixes: use the right binary name, depend on python-pylibmc --- debian/control | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index f38a7a2..15aae4f 100644 --- a/debian/control +++ b/debian/control @@ -10,11 +10,12 @@ Standards-Version: 3.9.4 Package: libpam-authclient Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: PAM module for authserv. - PAM module for authserv. +Description: PAM module for the A/I authentication protocol. + PAM module for the A/I authentication protocol. Package: ai-auth-server Architecture: all -Depends: ${python:Depends}, ${misc:Depends} +Depends: ${python:Depends}, ${misc:Depends}, python-gevent, python-pylibmc, + memcached Description: Auth server package. Centralized authentication server with OTP support. diff --git a/setup.py b/setup.py index 3f6807f..20f425f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( package_data={}, entry_points={ 'console_scripts': [ - 'authserv = authserv.server:main', + 'ai-auth-server = authserv.server:main', ], } ) -- GitLab