aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2019-08-11 09:16:00 -0400
committerRob Austein <sra@hactrn.net>2019-08-11 09:16:00 -0400
commit20889185ee8b909eaebea8f9a19611b235d564e4 (patch)
tree4395b0dfa75997486532025ac2660272e892d49a
parentad131ab1eaf568e345f4c97fb2bcfef85be1924a (diff)
Packaging (setuptools and Debian)
-rw-r--r--LICENSE13
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control22
-rw-r--r--debian/copyright20
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
-rw-r--r--setup.py21
8 files changed, 89 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..4a28af5
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+Copyright 2017-2019 Grunchweather Associates
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5ccd561
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+zc (1.0) unstable; urgency=low
+
+ * Add Debian packaging.
+
+ -- Rob Austein <sra@hactrn.net> Sun, 11 Aug 2019 08:32:15 -0400
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..c8111db
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: zc
+Maintainer: Rob Austein <sra@hactrn.net>
+Section: python
+Priority: optional
+Build-Depends: dh-python, python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9)
+Standards-Version: 3.9.6
+Homepage: https://git.hactrn.net/sra/zc
+
+Package: python-zc
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-dnspython, python-git
+Description: A DNS zone compiler
+ This is a small tool for generating DNS zones from relatively
+ simple text files, with some automation to handle complex or
+ repetitive tasks and to automate generation of reverse zone data.
+ .
+ `zc` can be used either as a straightforward command line tool or as a
+ pair of `pre-receive` and `post-receive` hooks in a bare git
+ repository. In the latter mode, `zc` pulls its input data and
+ configuration directly from commits pushed to the master branch in the
+ git repository.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0cfb754
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: zc
+Source: https://git.hactrn.net/sra/zc
+
+Files: *
+Copyright: 2017-2019 Grunchweather Associates
+License: ISC
+
+License: ISC
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ PERFORMANCE OF THIS SOFTWARE.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..72c4fa7
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=zc
+%:
+ dh $@ --with python2 --buildsystem=pybuild
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..89ae9db
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..6ee211e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+from setuptools import setup, find_packages
+
+setup(
+ name = "zc",
+ version = "1.0",
+ packages = find_packages(),
+ scripts = ["zc", "git-remote-only"],
+ install_requires = ["dnspython", "GitPython"],
+
+ author = "Rob Austein",
+ author_email = "sra@hactrn.net",
+
+ url = "https://git.hactrn.net/sra/zc",
+ description = "A DNS zone compiler",
+ #long_description = open("README.md").read(),
+ #long_description_content_type = "text/markdown",
+
+ classifiers = [
+ "License :: OSI Approved :: ISC License"
+ ],
+)