Fixed dependencies in DEB package
Trying to fix a bug with stream numbering
This commit is contained in:
parent
cdd98970b2
commit
0ad10c2af1
4 changed files with 17 additions and 8 deletions
|
|
@ -47,6 +47,14 @@ Some of the future ideas to add to Devede NG are, without an specific order:
|
||||||
|
|
||||||
|
|
||||||
## History of versions ##
|
## History of versions ##
|
||||||
|
|
||||||
|
* version 4.1 (2015-06-30)
|
||||||
|
* Fixed dependencies in package
|
||||||
|
* Trying to fix a bug with MKV files (incorrect stream assign)
|
||||||
|
|
||||||
|
* version 4.0 (2015-04-26)
|
||||||
|
* First stable version of DevedeNG
|
||||||
|
|
||||||
* version 0.1.0 beta 12 (2015-02-01)
|
* version 0.1.0 beta 12 (2015-02-01)
|
||||||
* Now uses the version number available in the CONFIGURATION_DATA file for the setup process
|
* Now uses the version number available in the CONFIGURATION_DATA file for the setup process
|
||||||
* Fixed the icon name in the .desktop file
|
* Fixed the icon name in the .desktop file
|
||||||
|
|
|
||||||
9
setup.py
9
setup.py
|
|
@ -3,7 +3,11 @@
|
||||||
import os
|
import os
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
|
try:
|
||||||
from distutils import dep_util
|
from distutils import dep_util
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
def get_data_files():
|
def get_data_files():
|
||||||
data_files = [
|
data_files = [
|
||||||
|
|
@ -42,11 +46,8 @@ def compile_translations():
|
||||||
os.makedirs(modir)
|
os.makedirs(modir)
|
||||||
|
|
||||||
if not os.path.isfile(mofile) or dep_util.newer(pofile, mofile):
|
if not os.path.isfile(mofile) or dep_util.newer(pofile, mofile):
|
||||||
print('compiling %s' % mofile)
|
|
||||||
# msgfmt.make(pofile, mofile)
|
# msgfmt.make(pofile, mofile)
|
||||||
os.system("msgfmt \"" + pofile + "\" -o \"" + mofile + "\"")
|
os.system("msgfmt \"" + pofile + "\" -o \"" + mofile + "\"")
|
||||||
else:
|
|
||||||
print('skipping %s - up to date' % mofile)
|
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
@ -57,7 +58,7 @@ compile_translations()
|
||||||
setup(
|
setup(
|
||||||
name='devedeng',
|
name='devedeng',
|
||||||
|
|
||||||
version='4.0',
|
version='4.1',
|
||||||
|
|
||||||
description='A video DVD creator',
|
description='A video DVD creator',
|
||||||
long_description = "A program that allows to create video DVDs",
|
long_description = "A program that allows to create video DVDs",
|
||||||
|
|
|
||||||
|
|
@ -143,8 +143,8 @@ class file_movie(devedeng.interface_manager.interface_manager):
|
||||||
self.error = True
|
self.error = True
|
||||||
else:
|
else:
|
||||||
self.error = False
|
self.error = False
|
||||||
self.audio_list = film_analizer.audio_list
|
self.audio_list = film_analizer.audio_list[:]
|
||||||
self.video_list = film_analizer.video_list
|
self.video_list = film_analizer.video_list[:]
|
||||||
self.audio_streams = film_analizer.audio_streams
|
self.audio_streams = film_analizer.audio_streams
|
||||||
self.video_streams = film_analizer.video_streams
|
self.video_streams = film_analizer.video_streams
|
||||||
self.original_width = film_analizer.original_width
|
self.original_width = film_analizer.original_width
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
Depends = python3, python-support, python3-urllib3, python3-gi, python3-cairo, libgtk-3-0 (>=2.16.0), ffmpeg (>= 7:1.2.6) | libav-tools(>= 6:9.16), mplayer, mpv | vlc, dvdauthor, mkisofs | genisoimage, vcdimager, libvorbis0a, libvorbisfile3, python3-pkg-resources
|
Depends3 = python3, python-support, python3-urllib3, python3-gi, python3-cairo, python3-gi-cairo, libgtk-3-0 (>=2.16.0), ffmpeg (>= 7:1.2.6) | libav-tools(>= 6:9.16), mplayer, mpv | vlc, dvdauthor, mkisofs | genisoimage, vcdimager, libvorbis0a, libvorbisfile3, python3-pkg-resources
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue