I forgot to add my patch for the bug I just reported. So here it is:
Only in debmake.patched/debmake: .ropeproject
diff -aur debmake-4.2.2/debmake/copyright.py
debmake.patched/debmake/copyright.py
--- debmake-4.2.2/debmake/copyright.py 2015-09-05 10:38:42.576296255 +0200
+++ debmake.patched/debmake/copyright.py 2015-09-05 11:00:40.255824439 +0200
@@ -973,10 +973,11 @@
for fx in license_file_masks:
license_files.update(set(glob.glob(fx)))
for f in license_files:
- text +=
'#----------------------------------------------------------------------------\n'
- text += '# License file: {}\n'.format(f)
- text += license_text(f)
- text += '\n'
+ if os.path.isfile(f):
+ text +=
'#----------------------------------------------------------------------------\n'
+ text += '# License file: {}\n'.format(f)
+ text += license_text(f)
+ text += '\n'
return text