Fixed dependencies in DEB package

Trying to fix a bug with stream numbering
This commit is contained in:
Sergio Costas 2015-06-30 01:08:49 +02:00
parent cdd98970b2
commit 0ad10c2af1
4 changed files with 17 additions and 8 deletions

View file

@ -3,7 +3,11 @@
import os
from glob import glob
from distutils.core import setup
from distutils import dep_util
try:
from distutils import dep_util
except:
pass
def get_data_files():
data_files = [
@ -42,11 +46,8 @@ def compile_translations():
os.makedirs(modir)
if not os.path.isfile(mofile) or dep_util.newer(pofile, mofile):
print('compiling %s' % mofile)
# msgfmt.make(pofile, mofile)
os.system("msgfmt \"" + pofile + "\" -o \"" + mofile + "\"")
else:
print('skipping %s - up to date' % mofile)
except:
pass
@ -57,7 +58,7 @@ compile_translations()
setup(
name='devedeng',
version='4.0',
version='4.1',
description='A video DVD creator',
long_description = "A program that allows to create video DVDs",