[PATCH 6/9] update to newest version of the Intel SDE
authorChristoph Mayer <hcab14@gmail.com>
Mon, 15 Jun 2020 16:07:40 +0000 (18:07 +0200)
committerA. Maitland Bottoms <bottoms@debian.org>
Tue, 30 Jun 2020 23:48:20 +0000 (00:48 +0100)
Gbp-Pq: Name 0006-update-to-newest-version-of-the-Intel-SDE.patch

.travis.yml
scripts/ci/download_intel_sde.sh

index dae3e500e8a93e356351ed4f485966fe7b3613d7..2c0e7698ec8c4357416b908aa871eb1ac6a622e0 100644 (file)
@@ -11,9 +11,8 @@ addons:
 
 env:
   global:
-    - SDE_VERSION=sde-external-8.35.0-2019-03-11-lin
-    - SDE_URL1=https://software.intel.com/protected-download/267266/144917
-    - SDE_URL2=https://software.intel.com/system/files/managed/32/db
+    - SDE_VERSION=sde-external-8.50.0-2020-03-26-lin
+    - SDE_URL=http://software.intel.com/content/dam/develop/external/us/en/protected/
 
 matrix:
   include:
index 47e40938f785a5c6ad37ea7aa8323a7661dee2df..2d5a8e32ab86b927641cfb7d8c78cf0b4019dcbb 100755 (executable)
@@ -16,23 +16,17 @@ function test_sde
 mkdir -p cache
 cd cache
 
-[ -z "${SDE_VERSION}" ] && SDE_VERSION=sde-external-8.35.0-2019-03-11-lin
-[ -z "${SDE_URL1}" ] && SDE_URL1=https://software.intel.com/protected-download/267266/144917
-[ -z "${SDE_URL2}" ] && SDE_URL2=https://software.intel.com/system/files/managed/32/db
+[ -z "${SDE_VERSION}" ] && SDE_VERSION=sde-external-8.50.0-2020-03-26-lin
+[ -z "${SDE_URL}" ] && SDE_URL=http://software.intel.com/content/dam/develop/external/us/en/protected/
+[ -z "${SDE}" ] && SDE=${SDE_VERSION}/sde64
 
-SDE_TARBALL=${SDE_VERSION}.tar.bz2
-SDE=$(pwd)/${SDE_VERSION}/sde64
 
 if [ _$(test_sde) == _0 ]; then
     MSG="found working version: ${SDE_VERSION}"
 else
     MSG="downloading: ${SDE_VERSION}"
-    curl --verbose --form accept_license=1 --form form_id=intel_licensed_dls_step_1 \
-         --output /dev/null --cookie-jar jar.txt \
-         --location ${SDE_URL1}
-    curl --verbose --cookie jar.txt --output ${SDE_TARBALL} \
-         ${SDE_URL2}/${SDE_TARBALL}
-    tar xvf ${SDE_TARBALL}
+    wget ${SDE_URL}/${SDE_VERSION}.tar.bz2
+    tar xvf ${SDE_VERSION}.tar.bz2
 fi
 
 echo $SDE