diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..6303036 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +i4wold (1) unstable; urgency=medium + + * Initial release + + -- Michael Eischer Fri, 8 Jul 2022 16:42:42 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6f4897a --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: i4wold +Section: misc +Priority: optional +Maintainer: Bernhard Heinloth +Build-Depends: debhelper (>= 10) +Standards-Version: 3.9.8 +Homepage: https://gitlab.cs.fau.de/i4/infra/wake-on-lan + +Package: i4wold +Architecture: any +Depends: python3, python3-pyparsing, python3-psutil, ${misc:Depends} +Description: wake-on-lan daemon for i4 networks diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9beebd1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: i4wol +Source: https://gitlab.cs.fau.de/i4/infra/wake-on-lan + +Files: debian/* +Copyright: 2022 Michael Eischer +License: GPL-2+ + This package 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 2 of the License, or + (at your option) any later version. + . + This package 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 + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/i4wold.install b/debian/i4wold.install new file mode 100644 index 0000000..536fa30 --- /dev/null +++ b/debian/i4wold.install @@ -0,0 +1 @@ +wol.py usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..3a0c5db --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all qa=+all + +%: + dh $@ 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)