summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-12-10 00:44:44 +0100
committerChristian Pointner <equinox@spreadspace.org>2015-12-10 00:44:44 +0100
commit0c5201d4fa7ff42743f0422c80c6febccd247f65 (patch)
tree2ae135fe99b357f6c83fc20ccbe4af5fea395e95
parentadded builds for many architectures (diff)
added inital debian package
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control29
-rw-r--r--debian/copyright44
-rwxr-xr-xdebian/rules13
-rw-r--r--debian/source/format1
6 files changed, 93 insertions, 0 deletions
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 <equinox@spreadspace.org> 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 <equinox@spreadspace.org>
+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 <hlandau@devever.net>
+Source: https://github.com/hlandau/acme
+
+Files: *
+Copyright: 2015, Hugo Landau <hlandau@devever.net>
+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 <equinox@spreadspace.org>
+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