From a14ab0a7601ff5c197fe43d42410d8ed6bfd26a8 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Sat, 13 Nov 2021 20:33:57 +0100 Subject: initial commit --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 21 +++++++++++++++++++++ debian/copyright | 6 ++++++ debian/rules | 16 ++++++++++++++++ debian/source/format | 1 + 6 files changed, 50 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 (limited to 'debian') 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 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 +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 -- cgit v1.2.3