From 3deeb50d574634679a1ec843e8500d1a91e2df89 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sun, 20 Apr 2014 17:03:11 +0100 Subject: [PATCH] add Debian package metadata --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/copyright | 31 +++++++++++++++++++++++++++++++ debian/rules | 8 ++++++++ 5 files changed, 57 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8de6ff6 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +autoca (0.3) unstable; urgency=low + + * Initial Release. + + -- Autistici/Inventati <debian@autistici.org> Sun, 20 Apr 2014 16:54:55 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..dc5b280 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: autoca +Section: net +Priority: extra +Maintainer: Autistici/Inventati <debian@autistici.org> +Build-Depends: debhelper (>= 8.0.0), python (>= 2.6.6-3~), python-setuptools +Standards-Version: 3.9.4 + +Package: autoca +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Description: Simple CA management. + Simple CA management (client and WSGI service). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..2705e8e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: autoca +Source: <https://git.autistici.org/ai/autoca> + +Files: * +Copyright: 2010-2014 Autistici/Inventati +License: MIT + +Files: debian/* +Copyright: 2013 Autistici/Inventati <info@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. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..54c014c --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +export DH_OPTIONS + +%: + dh $@ --with python2 + -- GitLab