diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..2a8fe3a --- /dev/null +++ b/debian/control @@ -0,0 +1,32 @@ +Source: revpicommander +Section: x11 +Priority: optional +Maintainer: Sven Sager +Rules-Requires-Root: no +Homepage: https://revpimodio.org/revpipyplc/ +Vcs-Browser: https://github.com/narux/revpicommander +Vcs-Git: https://github.com/narux/revpicommander.git +Build-Depends: + debhelper-compat (= 12), + dh-python, + python3-all, + python3-keyring (>= 17.1.1), + python3-pyqt5, + python3-paramiko (>= 2.4.2), + python3-revpimodio2 (>= 2.5.6), + python3-zeroconf (>= 0.24.4), + python3-setuptools, + python3-wheel +Standards-Version: 4.3.0 + +Package: revpicommander +Architecture: all +Depends: + ${python3:Depends}, + ${misc:Depends} +Description: GUI for Revolution Pi to upload programs and do IO-Checks + The RevPiCommander is a GUI tool to manage your revolution Pi over the + network. You can search for RevPis in your network, manage the settings + of RevPiPyLoad and do IO checks on your local machine. Developing your + control program is very easy with the developer, upload and debug it + over the network. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9625dc9 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,46 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: https://github.com/naruxde/revpicommander +Upstream-Name: revpicommander +Upstream-Contact: Sven Sager + +Files: * +Copyright: 2017-2023 Sven Sager +License: GPL-2+ + +Files: debian/* +Copyright: 2021-2023 KUNBUS GmbH +License: GPL-2+ + +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". + +License: GPL-3+ + This program 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 3 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 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..5801da7 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +upstream-branch = main +upstream-tag = %(version)s +debian-branch=pkg/debian diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..6155340 --- /dev/null +++ b/debian/install @@ -0,0 +1,3 @@ +data/revpicommander /usr/bin +data/revpicommander.desktop /usr/share/applications +data/revpicommander.png /usr/share/icons/hicolor/128x128/apps diff --git a/debian/py3dist-overrides b/debian/py3dist-overrides new file mode 100644 index 0000000..2c65b5a --- /dev/null +++ b/debian/py3dist-overrides @@ -0,0 +1 @@ +pyqt5 python3-pyqt5 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c91a6ef --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=revpicommander + +# Install this module as an application an not into the python standard library path +export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/revpicommander/ --install-scripts=/usr/share/revpicommander/bin/ + +%: + 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)