-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new way of making deb file and add new version
This uses dh-virtualenv which prevents conflicts with other packages that use the same libraries. Also, version number has been updated to 0.5.2
- Loading branch information
Showing
11 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python3-sd3save-editor (0.5.2) unstable; urgency=low | ||
|
||
* Initial Debian package | ||
|
||
-- Robin <rderooij685@gmail.com> Sun, 09 Jul 2017 21:25:57 +0200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Source: python3-sd3save-editor | ||
Section: python | ||
Priority: extra | ||
Maintainer: Robin <rderooij685@gmail.com> | ||
Build-Depends: debhelper (>= 9), python3, dh-virtualenv (>= 0.8), python3-pyqt5 | ||
Standards-Version: 3.9.5 | ||
|
||
Package: python3-sd3save-editor | ||
Version: 0.5.2 | ||
License: GPL-3.0 | ||
Vendor: none | ||
Architecture: all | ||
Maintainer: Robin <rderooij685@gmail.com> | ||
Installed-Size: 107 | ||
Pre-Depends: dpkg (>= 1.16.1) | ||
Depends: python3-pyqt5, python3 | ||
Section: python | ||
Priority: extra | ||
Homepage: https://github.com/rrooij/sd3save_editor | ||
Description: Seiken Densetsu 3 Save Editor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
python3-sd3save-editor_0.5.2_all.deb python extra | ||
python3-sd3save-editor_0.5.2_amd64.buildinfo python extra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
debian/sd3save_editor.desktop usr/share/applications/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
interest-noawait /usr/bin/python3.5 | ||
|
||
# Also provide a symbolic trigger for all dh-virtualenv packages | ||
interest dh-virtualenv-interpreter-update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/make -f | ||
export DH_VIRTUALENV_ARGUMENTS=-p /usr/bin/python3.5 --system-site-packages | ||
export DH_VIRTUALENV_INSTALL_ROOT=/opt/venvs/ | ||
%: | ||
dh $@ --buildsystem=dh_virtualenv | ||
|
||
override_dh_auto_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=SD3 Save Editor | ||
Categories=Game | ||
Comment=A Seiken Densetsu 3 save editor | ||
Exec=/opt/venvs/python3-sd3save-editor/bin/sd3save_editor_gui | ||
Terminal=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
/opt/venvs/python3-sd3save-editor/bin/sd3save_editor_gui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters