diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-11-13 20:33:57 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-11-13 20:33:57 +0100 |
commit | a14ab0a7601ff5c197fe43d42410d8ed6bfd26a8 (patch) | |
tree | befa6fc0b1de552bae1e2a832a25cb0dd8f58412 /debian | |
download | haketilo-hydrilla-a14ab0a7601ff5c197fe43d42410d8ed6bfd26a8.tar.gz haketilo-hydrilla-a14ab0a7601ff5c197fe43d42410d8ed6bfd26a8.zip |
initial commit
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 21 | ||||
-rw-r--r-- | debian/copyright | 6 | ||||
-rwxr-xr-x | debian/rules | 16 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 50 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..71df1a2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pydrilla (0.2-1) UNRELEASED; urgency=medium + + * Initial release. + + -- Wojtek Kosior <koszko@koszko.org> Fri, 05 Nov 2021 15:39:43 +0100 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..9ba04f3 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: CC0-1.0 + +# Hydrilla's debian/control file +# +# Copyright (C) 2021 Wojtek Kosior +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +Source: pydrilla +Maintainer: Wojtek Kosior <koszko@koszko.org> +Section: web +Priority: optional +Standards-Version: 4.3.0 +Build-Depends: debhelper (>=11~), dh-python, python3-all, python3-setuptools, python3-flask, python3-pytest + +Package: python3-pydrilla +Architecture: all +Depends: ${python3:Depends}, ${misc:Depends} +Description: serve Hachette packages + Hydrilla (Pydrilla) implements repository server for independent website + resources. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..7e445e5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,6 @@ +Pydrilla is copyright 2021 Wojtek Kosior. +Pydrilla can be used under the terms of GNU Affero General Public License as +published by the Free Software Foundation. + +Additionally, Wojtek Kosior promises not to actually sue for violations of the +license.
\ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a0880f7 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#! /usr/bin/make -f + +# SPDX-License-Identifier: CC0-1.0 + +# Hydrilla's debian/rules file +# +# Copyright (C) 2021 Wojtek Kosior +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +export DH_VERBOSE = 1 +export PYBUILD_NAME = pydrilla +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..46ebe02 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)
\ No newline at end of file |