diff --git a/conf_libva.py b/conf_libva.py index ec75460..f60e361 100644 --- a/conf_libva.py +++ b/conf_libva.py @@ -23,15 +23,17 @@ LIBVA_REPO_NAME = 'libva' - +PRODUCT_CONFIGS_REPO_NAME = 'product-configs' # TODO: get LibVA version from manifest -LIBVA_VERSION = '2.3.0' +LIBVA_VERSION = '2.4.0' + +PRODUCT = LIBVA_REPO_NAME # Repos_to_extract # TODO: get branch, commit_id from Manifest PRODUCT_REPOS = [ - {'name': 'MediaSDK'}, - {'name': LIBVA_REPO_NAME, } + {'name': LIBVA_REPO_NAME}, + {'name': PRODUCT_CONFIGS_REPO_NAME} ] ENABLE_DEVTOOLSET = 'source /opt/rh/devtoolset-6/enable' @@ -153,7 +155,7 @@ def get_building_cmd(command, gcc_latest, enable_devtoolset): 'from_path': options['INSTALL_DIR'], 'relative': [ { - 'path': 'libva', + 'path': 'usr' } ] }, diff --git a/conf_linux_public.py b/conf_linux_public.py index 89630e7..e976bea 100644 --- a/conf_linux_public.py +++ b/conf_linux_public.py @@ -33,7 +33,7 @@ # This repo not needed for build and added only to support CI process {'name': PRODUCT_CONFIGS_REPO_NAME}, # Define LibVA version to get by commit_id - {'name': LIBVA_REPO_NAME, 'branch': 'master', 'commit_id': f'tags/{LIBVA_VERSION}'}, + {'name': LIBVA_REPO_NAME, 'branch': 'master', 'commit_id': LIBVA_VERSION}, ] ENABLE_DEVTOOLSET = 'source /opt/rh/devtoolset-6/enable' diff --git a/manifest.yml b/manifest.yml new file mode 100644 index 0000000..f93014d --- /dev/null +++ b/manifest.yml @@ -0,0 +1,10 @@ +components: + libva: + repository: + - branch: master + url: https://github.com/intel/libva + name: libva + revision: 2.4.0 + type: git + version: '1' +version: '1'