Skip to content
Snippets Groups Projects

import-debian-package: when "upstream" is set to "unstable", use "sid" instead

Merged Dylan Aïssi requested to merge wip/daissi/unstable into apertis/v2024dev1
All threads resolved!
1 file
+ 3
0
Compare changes
  • Side-by-side
  • Inline
@@ -268,6 +268,9 @@ def do_import(args):
f.write_text("* -text -eol -crlf -ident -filter -working-tree-encoding -export-subst\n")
package, downstream, upstream = args.package, args.downstreams.pop(0), args.upstream
if upstream == "unstable":
logging.info('Switching "upstream" to "sid" instead of "unstable" for consistency!')
upstream = "sid"
upstream_release = upstream.split('/')[-1]
downstream_distro, downstream_release = downstream.split('/', maxsplit=2)
Loading