[DEV] Update new lutin 2.2.0 (no legacy support)
This commit is contained in:
parent
da70e7d340
commit
22ba26f95f
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
|
import lutin.tools as tools
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def get_type():
|
def get_type():
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -831,8 +826,8 @@ def create(target, module_name):
|
|||||||
])
|
])
|
||||||
"""
|
"""
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -888,4 +883,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('pthread')
|
my_module.add_depend('pthread')
|
||||||
my_module.add_depend('ffmpeg-avswresample')
|
my_module.add_depend('ffmpeg-avswresample')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
|
import lutin.tools as tools
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def get_type():
|
def get_type():
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -88,8 +83,8 @@ def create(target, module_name):
|
|||||||
])
|
])
|
||||||
"""
|
"""
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -145,4 +140,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('pthread')
|
my_module.add_depend('pthread')
|
||||||
my_module.add_depend('ffmpeg-avfilter')
|
my_module.add_depend('ffmpeg-avfilter')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
|
import lutin.tools as tools
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def get_type():
|
def get_type():
|
||||||
@ -24,12 +23,7 @@ def get_maintainer():
|
|||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
def configure(target, my_module):
|
||||||
# create the module
|
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -253,8 +247,8 @@ def create(target, module_name):
|
|||||||
'ffmpeg/libavfilter/x86/vf_yadif_init.c',
|
'ffmpeg/libavfilter/x86/vf_yadif_init.c',
|
||||||
])
|
])
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -312,4 +306,4 @@ def create(target, module_name):
|
|||||||
'ffmpeg-avcodec',
|
'ffmpeg-avcodec',
|
||||||
])
|
])
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -459,8 +454,8 @@ def create(target, module_name):
|
|||||||
'ffmpeg/libavformat/yuv4mpegenc.c',
|
'ffmpeg/libavformat/yuv4mpegenc.c',
|
||||||
])
|
])
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -518,4 +513,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('arpa')
|
my_module.add_depend('arpa')
|
||||||
my_module.add_depend('ffmpeg-avcodec')
|
my_module.add_depend('ffmpeg-avcodec')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -46,8 +41,8 @@ def create(target, module_name):
|
|||||||
'ffmpeg/libswresample/x86/resample_init.c',
|
'ffmpeg/libswresample/x86/resample_init.c',
|
||||||
])
|
])
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -102,4 +97,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('z')
|
my_module.add_depend('z')
|
||||||
my_module.add_depend('pthread')
|
my_module.add_depend('pthread')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -53,8 +48,8 @@ def create(target, module_name):
|
|||||||
'ffmpeg/libswscale/yuv2rgb.c',
|
'ffmpeg/libswscale/yuv2rgb.c',
|
||||||
])
|
])
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -109,4 +104,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('z')
|
my_module.add_depend('z')
|
||||||
my_module.add_depend('pthread')
|
my_module.add_depend('pthread')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -105,8 +100,8 @@ def create(target, module_name):
|
|||||||
'ffmpeg/libavutil/xtea.c',
|
'ffmpeg/libavutil/xtea.c',
|
||||||
])
|
])
|
||||||
my_module.compile_version("c", 1999, gnu=True)
|
my_module.compile_version("c", 1999, gnu=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"), export=True)
|
my_module.add_path("ffmpeg", export=True)
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"), export=True)
|
my_module.add_path("generated", export=True)
|
||||||
my_module.add_flag('c', [
|
my_module.add_flag('c', [
|
||||||
"-D_ISOC99_SOURCE",
|
"-D_ISOC99_SOURCE",
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
"-D_FILE_OFFSET_BITS=64",
|
||||||
@ -161,4 +156,4 @@ def create(target, module_name):
|
|||||||
my_module.add_depend('z')
|
my_module.add_depend('z')
|
||||||
my_module.add_depend('pthread')
|
my_module.add_depend('pthread')
|
||||||
|
|
||||||
return my_module
|
return True
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -25,11 +24,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# or other user lib:
|
# or other user lib:
|
||||||
my_module.add_depend([
|
my_module.add_depend([
|
||||||
@ -42,5 +37,5 @@ def create(target, module_name):
|
|||||||
'ffmpeg-avswscale',
|
'ffmpeg-avswscale',
|
||||||
])
|
])
|
||||||
|
|
||||||
return my_module
|
return True
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -26,11 +25,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -38,13 +33,13 @@ def create(target, module_name):
|
|||||||
'ffmpeg/cmdutils.c',
|
'ffmpeg/cmdutils.c',
|
||||||
])
|
])
|
||||||
|
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_depend([
|
my_module.add_depend([
|
||||||
'ffmpeg-libs',
|
'ffmpeg-libs',
|
||||||
'va',
|
'va',
|
||||||
'SDL',
|
'SDL',
|
||||||
])
|
])
|
||||||
return my_module
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
|
||||||
import lutin.debug as debug
|
|
||||||
import os
|
|
||||||
|
|
||||||
def get_type():
|
|
||||||
#return "BINARY_SHARED"
|
|
||||||
return "BINARY"
|
|
||||||
|
|
||||||
def get_desc():
|
|
||||||
return "FFMPEG main application"
|
|
||||||
|
|
||||||
def get_licence():
|
|
||||||
return "LGPL-2.1"
|
|
||||||
|
|
||||||
def get_compagny_type():
|
|
||||||
return "org"
|
|
||||||
|
|
||||||
def get_compagny_name():
|
|
||||||
return "ffmpeg"
|
|
||||||
|
|
||||||
def get_maintainer():
|
|
||||||
return "authors.txt"
|
|
||||||
|
|
||||||
def get_version():
|
|
||||||
return "version.txt"
|
|
||||||
|
|
||||||
# create the module
|
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
|
||||||
my_module.add_src_file([
|
|
||||||
'ffmpeg/ffserver.c',
|
|
||||||
'ffmpeg/ffserver_config.c',
|
|
||||||
'ffmpeg/cmdutils.c',
|
|
||||||
])
|
|
||||||
|
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
|
||||||
my_module.add_depend([
|
|
||||||
'ffmpeg-libs',
|
|
||||||
'va',
|
|
||||||
'vdpau',
|
|
||||||
])
|
|
||||||
my_module.add_flag('c', [
|
|
||||||
"-D_ISOC99_SOURCE",
|
|
||||||
"-D_FILE_OFFSET_BITS=64",
|
|
||||||
"-D_LARGEFILE_SOURCE",
|
|
||||||
"-D_POSIX_C_SOURCE=200112",
|
|
||||||
"-D_XOPEN_SOURCE=600",
|
|
||||||
"-DZLIB_CONST",
|
|
||||||
"-fomit-frame-pointer",
|
|
||||||
"-D_GNU_SOURCE=1",
|
|
||||||
"-D_REENTRANT"
|
|
||||||
])
|
|
||||||
return my_module
|
|
||||||
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutin.module as module
|
|
||||||
import lutin.tools as tools
|
import lutin.tools as tools
|
||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
import os
|
import os
|
||||||
@ -26,11 +25,7 @@ def get_maintainer():
|
|||||||
def get_version():
|
def get_version():
|
||||||
return "version.txt"
|
return "version.txt"
|
||||||
|
|
||||||
# create the module
|
def configure(target, my_module):
|
||||||
# @param[in] target reference on the Target that is currently build
|
|
||||||
# @param[in] module_name Name of the module that is extract from the file name (to be generic)
|
|
||||||
def create(target, module_name):
|
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
@ -42,13 +37,13 @@ def create(target, module_name):
|
|||||||
#'ffmpeg/ffmpeg_vdpau.c',
|
#'ffmpeg/ffmpeg_vdpau.c',
|
||||||
])
|
])
|
||||||
|
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "ffmpeg"))
|
my_module.add_path("ffmpeg")
|
||||||
my_module.add_path(os.path.join(tools.get_current_path(__file__), "generated"))
|
my_module.add_path("generated")
|
||||||
my_module.add_depend([
|
my_module.add_depend([
|
||||||
'ffmpeg-libs',
|
'ffmpeg-libs',
|
||||||
'va',
|
'va',
|
||||||
'vdpau',
|
'vdpau',
|
||||||
])
|
])
|
||||||
return my_module
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user