diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 26 | ||||
-rw-r--r-- | debian/copyright | 6 | ||||
-rw-r--r-- | debian/gbp.conf | 3 | ||||
-rw-r--r-- | debian/manpages | 1 | ||||
-rw-r--r-- | debian/py3dist-overrides | 1 | ||||
-rwxr-xr-x | debian/rules | 16 | ||||
-rw-r--r-- | debian/source/format | 1 |
9 files changed, 60 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..63d70b6 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-hydrilla.builder (1.0-1) koszko; urgency=medium + + * Initial release. + + -- W. Kosior <koszko@koszko.org> Thu, 21 Apr 2022 11:13:13 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..9a03714 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10
\ No newline at end of file diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3e2e8d4 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +# SPDX-License-Identifier: CC0-1.0 + +# Hydrilla builder's debian/control file +# +# Copyright (C) 2021,2022 Wojtek Kosior +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +Source: python-hydrilla.builder +Maintainer: W. Kosior <koszko@koszko.org> +Section: devel +Priority: optional +Standards-Version: 4.3.0 +Build-Depends: debhelper (>= 11), dh-python, python3-all (>= 3.7), + python3-setuptools (>= 45), python3-babel, python3-pytest, +# also add test dependencies + python3-jsonschema (>= 3.0), python3-click, reuse + +Package: python3-hydrilla.builder +Architecture: all +Depends: ${python3:Depends}, ${misc:Depends} +Recommends: reuse +X-Python3-Version: >= 3.7 +Description: generate Haketilo packages + Hydrilla builder prepares independent website resources to be served by + Hydrilla server. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b60979e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,6 @@ +Hydrilla is copyright 2021, 2022 Wojtek Kosior. +Hydrilla can be used under the terms of GNU Affero General Public License +version 3 as published by the Free Software Foundation. + +Additionally, Wojtek Kosior promises not to actually sue for violations of the +license. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..18a0f96 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +upstream-branch=debian-upstream +debian-branch=debian-debian diff --git a/debian/manpages b/debian/manpages new file mode 100644 index 0000000..4f6782d --- /dev/null +++ b/debian/manpages @@ -0,0 +1 @@ +doc/man/man1/hydrilla-builder.1 diff --git a/debian/py3dist-overrides b/debian/py3dist-overrides new file mode 100644 index 0000000..8c563d2 --- /dev/null +++ b/debian/py3dist-overrides @@ -0,0 +1 @@ +jsonschema python3-jsonschema (>= 3.0) diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..61321d9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#! /usr/bin/make -f + +# SPDX-License-Identifier: CC0-1.0 + +# Hydrilla builder's debian/rules file +# +# Copyright (C) 2021,2022 Wojtek Kosior +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +export DH_VERBOSE = 1 +export PYBUILD_NAME = hydrilla.builder +export PYBUILD_TEST_PYTEST = 1 + +%: + dh $@ --with python3 --buildsystem=pybuild diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |