Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions publish_python/artifact/stdeb.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def create_deb(*, config):
for env_var in setup_env_vars.split(' '):
key, value = env_var.split('=', 1)
add_env[key] = value
debinc = config_parser.get(pkg.name, 'Debian-Version', fallback='1')

print(
'$', *cmd,
Expand All @@ -49,9 +50,9 @@ def create_deb(*, config):

return {
f'deb_dist/{source_pkg_name}_{pkg.version}.orig.tar.gz',
f'deb_dist/{source_pkg_name}_{pkg.version}-1.debian.tar.gz',
f'deb_dist/{source_pkg_name}_{pkg.version}-1.dsc',
f'deb_dist/{source_pkg_name}_{pkg.version}-1_all.deb'}
f'deb_dist/{source_pkg_name}_{pkg.version}-{debinc}.debian.tar.gz',
f'deb_dist/{source_pkg_name}_{pkg.version}-{debinc}.dsc',
f'deb_dist/{source_pkg_name}_{pkg.version}-{debinc}_all.deb'}


def clean_deb():
Expand Down