mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-09 08:58:04 +01:00
Compare commits
4 Commits
debian/0.1
...
debian/0.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c19e0acd1 | |||
| 81f5b981a6 | |||
| 239273ae16 | |||
| 65280435a7 |
8
debian/changelog
vendored
8
debian/changelog
vendored
@@ -1,3 +1,11 @@
|
|||||||
|
revpicommander (0.10.0-3) stable; urgency=medium
|
||||||
|
|
||||||
|
* packaging: Remove unused GPL-3+ section from copyright file
|
||||||
|
* packaging(patch): Change entry point name in setup.py
|
||||||
|
* packaging: Use patched entry point and link it to /usr/bin
|
||||||
|
|
||||||
|
-- Sven Sager <akira@narux.de> Mon, 18 Sep 2023 07:05:35 +0200
|
||||||
|
|
||||||
revpicommander (0.10.0-2) stable; urgency=medium
|
revpicommander (0.10.0-2) stable; urgency=medium
|
||||||
|
|
||||||
[ Sven Sager ]
|
[ Sven Sager ]
|
||||||
|
|||||||
17
debian/copyright
vendored
17
debian/copyright
vendored
@@ -27,20 +27,3 @@ License: GPL-2+
|
|||||||
.
|
.
|
||||||
On Debian systems, the complete text of the GNU General
|
On Debian systems, the complete text of the GNU General
|
||||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
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".
|
|
||||||
|
|||||||
1
debian/install
vendored
1
debian/install
vendored
@@ -1,3 +1,2 @@
|
|||||||
data/revpicommander /usr/bin
|
|
||||||
data/revpicommander.desktop /usr/share/applications
|
data/revpicommander.desktop /usr/share/applications
|
||||||
data/revpicommander.png /usr/share/icons/hicolor/128x128/apps
|
data/revpicommander.png /usr/share/icons/hicolor/128x128/apps
|
||||||
|
|||||||
1
debian/links
vendored
Normal file
1
debian/links
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/revpicommander/revpicommander_entry_point /usr/bin/revpicommander
|
||||||
24
debian/patches/0001-Change-entry-point-name-to-differ-from-the-module-na.patch
vendored
Normal file
24
debian/patches/0001-Change-entry-point-name-to-differ-from-the-module-na.patch
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
From: Sven Sager <akira@narux.de>
|
||||||
|
Date: Mon, 18 Sep 2023 06:49:44 +0200
|
||||||
|
Subject: Change entry point name to differ from the module name
|
||||||
|
|
||||||
|
In the package, the module and its scripts are installed in the same
|
||||||
|
directory. This is done via PYBUILD_INSTALL_ARGS and --install-lib,
|
||||||
|
--install-scripts. Module name and script name must not be the same.
|
||||||
|
---
|
||||||
|
setup.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index 227874b..8b2acab 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -25,7 +25,7 @@ setup(
|
||||||
|
],
|
||||||
|
entry_points={
|
||||||
|
'gui_scripts': [
|
||||||
|
- 'revpicommander = revpicommander.revpicommander:main',
|
||||||
|
+ 'revpicommander_entry_point = revpicommander.revpicommander:main',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
1
debian/patches/series
vendored
Normal file
1
debian/patches/series
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0001-Change-entry-point-name-to-differ-from-the-module-na.patch
|
||||||
2
debian/rules
vendored
2
debian/rules
vendored
@@ -3,7 +3,7 @@
|
|||||||
export PYBUILD_NAME=revpicommander
|
export PYBUILD_NAME=revpicommander
|
||||||
|
|
||||||
# Install this module as an application an not into the python standard library path
|
# 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/
|
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/revpicommander/ --install-scripts=/usr/share/revpicommander/
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --with python3 --buildsystem=pybuild
|
dh $@ --with python3 --buildsystem=pybuild
|
||||||
|
|||||||
Reference in New Issue
Block a user