From 0c5201d4fa7ff42743f0422c80c6febccd247f65 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 10 Dec 2015 00:44:44 +0100 Subject: added inital debian package --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 29 +++++++++++++++++++++++++++++ debian/copyright | 44 ++++++++++++++++++++++++++++++++++++++++++++ debian/rules | 13 +++++++++++++ debian/source/format | 1 + 6 files changed, 93 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 create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..808d709 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +acmetool (0.0.19-1) unstable; urgency=medium + + * Initial release. + + -- Christian Pointner Wed, 09 Dec 2015 22:56:37 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c0acfb7 --- /dev/null +++ b/debian/control @@ -0,0 +1,29 @@ +Source: acmetool +Maintainer: Christian Pointner +Section: utils +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9) + +Package: acmetool +Architecture: amd64 i386 armel armhf arm64 +Depends: ${misc:Depends} +Description: command line tool for automatically acquiring certificates + acmetool is an easy-to-use command line tool for automatically acquiring + certificates from ACME servers (such as Let's Encrypt). Designed to flexibly + integrate into your webserver setup to enable automatic verification. Unlike + the official Let's Encrypt client, this doesn't modify your web server + configuration. + . + You can perform verifications using port 80 or 443 (if you don't yet have a + server running on one of them); via webroot; by configuring your webserver to + proxy requests for /.well-known/acme-challenge/ to a special port (402) which + acmetool can listen on. + . + acmetool is intended to be "magic-free". All of acmetool's state is stored in + a simple, comprehensible directory of flat files. + . + acmetool is intended to work like "make". The state directory expresses target + domain names, and whenever acmetool is invoked, it ensures that valid + certificates are available to meet those names. Certificates which will expire + soon are renewed. acmetool is thus idempotent and minimises the use of state. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fe61aeb --- /dev/null +++ b/debian/copyright @@ -0,0 +1,44 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: acmetool +Upstream-Contact: Hugo Landau +Source: https://github.com/hlandau/acme + +Files: * +Copyright: 2015, Hugo Landau +License: Expat + Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + . + 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. + +Files: debian/* +Copyright: 2015, Christian Pointner +License: GPL-3+ + This program 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. + . + 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, see '/usr/share/common-licenses/GPL-3'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7cb61e8 --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_clean: + +override_dh_auto_configure: + +override_dh_auto_build: + +override_dh_auto_install: + install -d $$(pwd)/debian/tmp/usr/bin/ + install -m 755 $$(pwd)/acmetool.$(DEB_BUILD_ARCH) $$(pwd)/debian/tmp/usr/bin/acmetool diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +1.0 -- cgit v1.2.3