-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Rodmg/debianpkgimprov
Improvements to debian packaging
- Loading branch information
Showing
13 changed files
with
87 additions
and
29 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Source: linamp | ||
Section: Sound | ||
Section: sound | ||
Priority: optional | ||
Maintainer: Rodrigo Méndez <[email protected]> | ||
Maintainer: Rodrigo Méndez <[email protected]> | ||
Rules-Requires-Root: no | ||
Build-Depends: | ||
debhelper-compat (= 13), | ||
|
@@ -19,7 +19,8 @@ Build-Depends: | |
libcdio-dev, | ||
libcdio-utils, | ||
swig, | ||
python3-dev | ||
python3-dev, | ||
dh-python | ||
Standards-Version: 4.6.2 | ||
Homepage: https://github.com/Rodmg/linamp | ||
Vcs-Browser: https://github.com/Rodmg/linamp | ||
|
@@ -30,12 +31,14 @@ Architecture: any | |
Depends: | ||
${shlibs:Depends}, | ||
${misc:Depends}, | ||
${python3:Depends}, | ||
vlc, | ||
python3-full, | ||
python3-libdiscid, | ||
python3-musicbrainzngs, | ||
python3-cdio, | ||
python3-vlc | ||
Description: Music player app for Linamp - Your favorite music player of the 90s, but in real life. | ||
Music player app for Linamp - Your favorite music player of the 90s, but in real life. Built | ||
with QT6. | ||
Description: Your favorite music player of the 90s, but in real life | ||
Music player app for Linamp - Your favorite music player of the 90s, | ||
but in real life. | ||
Built with QT6. |
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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Source: <https://github.com/Rodmg/linamp> | ||
Upstream-Name: linamp | ||
Upstream-Contact: Rodrigo Méndez <[email protected]> | ||
Upstream-Contact: Rodrigo Méndez <[email protected]> | ||
|
||
Files: | ||
* | ||
Copyright: | ||
2024 Rodrigo Méndez <[email protected]> | ||
License: See LICENSE in parent directory | ||
Files: * | ||
Copyright: Copyright (C) 2024 Rodrigo Méndez <[email protected]> | ||
License: GPL-3 | ||
|
||
Files: | ||
debian/* | ||
Copyright: | ||
2024 Taneli Leppä <[email protected]> | ||
License: See LICENSE in parent directory | ||
Files: debian/* | ||
Copyright: Copyright (C) 2024 Taneli Leppä <[email protected]> | ||
License: GPL-3 | ||
|
||
License: GPL-3 | ||
See LICENSE in parent directory |
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
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
Empty file.
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 @@ | ||
from .mock_cdplayer import * |
File renamed without changes.
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 @@ | ||
from .cdplayer import * |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
discid==1.2.0 | ||
python-libdiscid==2.0.3 | ||
musicbrainzngs==0.7.1 | ||
pycdio==2.1.1 | ||
python-vlc==3.0.20123 |