Skip to content

Commit 0e0a758

Browse files
committed
update linux package names to python3-*
1 parent d200328 commit 0e0a758

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packaging/linux.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def bdist_rpm():
9191
build_manifest(INCLUDE_FILES, EXCLUDE_FILES)
9292
subprocess.call((
9393
'fpm', '-t', 'rpm', '-s', 'python', '--no-auto-depends',
94+
'--python-package-name-prefix', 'python3',
9495
'--depends=pyserial,SDL2,SDL2_gfx',
9596
'..'
9697
), cwd='dist')
@@ -108,6 +109,7 @@ def bdist_deb():
108109
build_manifest(INCLUDE_FILES, EXCLUDE_FILES)
109110
subprocess.call((
110111
'fpm', '-t', 'deb', '-s', 'python', '--no-auto-depends',
112+
'--python-package-name-prefix', 'python3',
111113
'--depends=python3-pkg-resources,python3-serial,python3-parallel,libsdl2-2.0-0,libsdl2-gfx-1.0-0',
112114
'..'
113115
), cwd='dist')

0 commit comments

Comments
 (0)