mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-08 16:43:53 +01:00
packaging(deb): Start packaging branch
Signed-off-by: Sven Sager <akira@narux.de>
This commit is contained in:
32
debian/control
vendored
Normal file
32
debian/control
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
Source: revpicommander
|
||||||
|
Section: x11
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Sven Sager <akira@narux.de>
|
||||||
|
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.
|
||||||
46
debian/copyright
vendored
Normal file
46
debian/copyright
vendored
Normal file
@@ -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 <akira@narux.de>
|
||||||
|
|
||||||
|
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 <https://www.gnu.org/licenses/>
|
||||||
|
.
|
||||||
|
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 <https://www.gnu.org/licenses/>.
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
||||||
4
debian/gbp.conf
vendored
Normal file
4
debian/gbp.conf
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
upstream-branch = main
|
||||||
|
upstream-tag = %(version)s
|
||||||
|
debian-branch=pkg/debian
|
||||||
3
debian/install
vendored
Normal file
3
debian/install
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
data/revpicommander /usr/bin
|
||||||
|
data/revpicommander.desktop /usr/share/applications
|
||||||
|
data/revpicommander.png /usr/share/icons/hicolor/128x128/apps
|
||||||
1
debian/py3dist-overrides
vendored
Normal file
1
debian/py3dist-overrides
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pyqt5 python3-pyqt5
|
||||||
9
debian/rules
vendored
Executable file
9
debian/rules
vendored
Executable file
@@ -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
|
||||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
||||||
Reference in New Issue
Block a user