From cdf71cd83d196e97eb377c3ddd0ace3de48f156a Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Mon, 19 Oct 2009 16:46:17 +0200 Subject: [PATCH] Initial packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 20 ++++++++++++++++++++ debian/copyright | 28 ++++++++++++++++++++++++++++ debian/docs | 2 ++ debian/rules | 13 +++++++++++++ 6 files changed, 69 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..bc0cd83 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +yubikey-server-c (0.1-1) unstable; urgency=low + + * Initial release + + -- Tollef Fog Heen Mon, 19 Oct 2009 16:35:58 +0200 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..c316d70 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: yubikey-server-c +Section: unknown +Priority: extra +Maintainer: Tollef Fog Heen +Build-Depends: debhelper (>= 7), autotools-dev, libpq-dev, libmicrohttpd-dev, libyubikey-dev +Standards-Version: 3.8.3 + +Package: yubikey-server-c +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Yubikey validation server + Yubikeys are USB tokens that act like keyboards and generate one-time + passwords. The tokens are produced and sold by Yubico + . + This is a server that checks the validity of those OTP tokens. There + are servers written in Java and PHP, while this one is written in C + . + It implements the server side of the API as described on + http://www.yubico.com/developers/api/ and can be used with any client + that implements the same API. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..163e797 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +This work was packaged for Debian by Tollef Fog Heen , on Mon, 19 Oct 2009 16:35:58 +0200 + +Upstream Author: + + Tollef Fog Heen + +Copyright: + + Copyright (C) 2009 Tollef Fog Heen + +License: + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + version 2 as published by the Free Software Foundation. + + 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 program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301 USA. + +The full text of the GPL version 2 can be found in +/usr/share/common-licenses/GPL-2 on most Debian systems. \ No newline at end of file diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..ba8894c --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..917d9bf --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/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. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ -- 2.39.5