Skip to content
Snippets Groups Projects
Commit 1c00214a authored by ale's avatar ale
Browse files

add Debian package metadata

parent 84dc50d6
No related branches found
No related tags found
No related merge requests found
The Debian Package authserv
----------------------------
Comments regarding the Package
-- ale <debian@autistici.org> Wed, 27 Nov 2013 09:06:49 +0000
#DOCS#
authserv (0.1) unstable; urgency=low
* Initial Release.
-- Autistici/Inventati <debian@autistici.org> Wed, 27 Nov 2013 09:06:49 +0000
8
Source: authserv
Section: net
Priority: extra
Maintainer: Autistici/Inventati <debian@autistici.org>
Build-Depends: debhelper (>= 8.0.0), build-essential,
python (>= 2.6.6-3~), python-setuptools
Standards-Version: 3.9.4
Package: libpam-authclient
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: PAM module for authserv.
PAM module for authserv.
Package: python-authserv
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: Auth server package.
Centralized authentication server with OTP support.
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: authserv
Source: <url://example.com>
Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: MIT
Files: debian/*
Copyright: 2013 ale <debian@autistici.org>
License: MIT
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.
# Please avoid to pick license terms that are more restrictive than the
# packaged work, as it may make Debian's contributions unacceptable upstream.
debian/tmp/lib/security/pam_authclient.so*
debian/tmp/usr/include/authclient
debian/tmp/usr/lib/libauthclient.so*
debian/tmp/usr/bin
debian/tmp/usr/lib
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
#
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
#
# Modified to make a template file for a multi-binary package with separated
# build-arch and build-indep targets by Bill Allombert 2001
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
export PYBUILD_NAME=authserv
%:
dh $@ --with python2 --buildsystem=pybuild
override_dh_auto_build:
(cd pam && ./autogen.sh && ./configure --prefix=/usr && make)
dh_auto_build
override_dh_install:
(cd pam && make install DESTDIR=$(CURDIR)/debian/tmp)
rm -f $(CURDIR)/debian/tmp/lib/security/pam_authclient.so{,.0}
mv $(CURDIR)/debian/tmp/lib/security/pam_authclient.so.0.0.0 \
$(CURDIR)/debian/tmp/lib/security/pam_authclient.so
dh_auto_install
dh_install
3.0 (native)
#! /bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi
if glibtoolize --version > /dev/null 2>&1; then
LIBTOOLIZE='glibtoolize'
else
LIBTOOLIZE='libtoolize'
fi
$LIBTOOLIZE && \
aclocal -I m4 && \
autoheader && \
automake --add-missing --foreign && \
autoconf
......@@ -9,14 +9,14 @@ setup(
author="Autistici/Inventati",
author_email="info@autistici.org",
url="https://git.autistici.org/ai/authserv",
install_requires=["Flask", "python-memcached", "oath", "nose"],
install_requires=["Flask", "python-memcached", "nose"],
setup_requires=[],
zip_safe=False,
packages=find_packages(),
package_data={},
entry_points={
'console_scripts': [
'tapd = tap.server:main',
'authserv = authserv.server:main',
],
}
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment