slackware-current/source/x/vulkan-sdk/fetch-sources.sh
Patrick J Volkerding 7aa0551f5b Fri Mar 29 18:24:36 UTC 2019
a/aaa_elflibs-15.0-x86_64-6.txz:  Rebuilt.
  Upgraded: libelf-0.176.so, libpcre.so.1.2.11, libglib-2.0.so.0.6000.0,
  libgmodule-2.0.so.0.6000.0, libgobject-2.0.so.0.6000.0,
  libgthread-2.0.so.0.6000.0, libtdb.so.1.4.0.
  Temporarily added: libicudata.so.63.1, libicui18n.so.63.1, libicuio.so.63.1,
  libicutest.so.63.1, libicutu.so.63.1, libicuuc.so.63.1.
a/xfsprogs-4.20.0-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
ap/sqlite-3.27.2-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
kde/calligra-2.9.11-x86_64-29.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
kde/kdepimlibs-4.14.10-x86_64-7.txz:  Rebuilt.
  Recompiled to pull in new gpgme++ header files.
l/boost-1.69.0-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/ffmpeg-3.4.6-x86_64-1.txz:  Upgraded.
l/giflib-5.1.9-x86_64-1.txz:  Upgraded.
l/harfbuzz-2.3.1-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/icu4c-64.1-x86_64-1.txz:  Upgraded.
  Shared library .so-version bump.
l/libical-3.0.4-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/libvisio-0.1.6-x86_64-6.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/qt-4.8.7-x86_64-12.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/raptor2-2.0.15-x86_64-7.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
l/v4l-utils-1.16.5-x86_64-1.txz:  Upgraded.
n/dovecot-2.3.5.1-x86_64-1.txz:  Upgraded.
  Missing input buffer size validation leads into arbitrary buffer overflow
  when reading fts or pop3 uidl header from Dovecot index. Exploiting this
  requires direct write access to the index files.
  For more information, see:
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-7524
  (* Security fix *)
  Compiled against icu4c-64.1.
n/gpgme-1.13.0-x86_64-1.txz:  Upgraded.
n/php-7.2.16-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
n/postfix-3.4.4-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
n/tin-2.4.3-x86_64-2.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
n/whois-5.4.2-x86_64-1.txz:  Upgraded.
t/texlive-2018.180822-x86_64-5.txz:  Rebuilt.
  Recompiled against icu4c-64.1.
x/libinput-1.13.0-x86_64-1.txz:  Upgraded.
x/mesa-19.0.1-x86_64-1.txz:  Upgraded.
x/vulkan-sdk-1.1.101.0-x86_64-1.txz:  Upgraded.
extra/pure-alsa-system/ffmpeg-3.4.6-x86_64-1_alsa.txz:  Upgraded.
2019-03-30 08:59:44 +01:00

128 lines
5.1 KiB
Bash
Executable file

#!/bin/sh
# Copyright 2017, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Call this script with the version of the Vulkan-LoaderAndValidationLayers-sdk
# that you would like to fetch the sources for. This will fetch the SDK from
# github, and then look at the revisions listed in the external_revisions
# directory to fetch the proper glslang, SPIRV-Headers, and SPIRV-Tools.
#
# Example: VERSION=1.1.92.1 ./fetch-sources.sh
VERSION=${VERSION:-1.1.101.0}
BRANCH=${BRANCH:-sdk-1.1.101}
rm -rf Vulkan-*-*.tar.?z glslang* SPIRV-Tools* SPIRV-Headers* \
Vulkan-Headers-sdk-${VERSION}* \
Vulkan-ValidationLayers-sdk-${VERSION}* \
Vulkan-Loader-sdk-${VERSION}* \
Vulkan-Tools-sdk-${VERSION}*
git clone -b "$BRANCH" --single-branch https://github.com/KhronosGroup/Vulkan-Headers.git Vulkan-Headers-sdk-${VERSION}
rm -rf Vulkan-Headers-sdk-${VERSION}/.git
tar cf Vulkan-Headers-sdk-${VERSION}.tar Vulkan-Headers-sdk-${VERSION}
rm -rf Vulkan-Headers-sdk-${VERSION}
plzip -9 Vulkan-Headers-sdk-${VERSION}.tar
git clone -b "$BRANCH" --single-branch https://github.com/KhronosGroup/Vulkan-ValidationLayers.git Vulkan-ValidationLayers-sdk-${VERSION}
rm -rf Vulkan-ValidationLayers-sdk-${VERSION}/.git
tar cf Vulkan-ValidationLayers-sdk-${VERSION}.tar Vulkan-ValidationLayers-sdk-${VERSION}
rm -rf Vulkan-ValidationLayers-sdk-${VERSION}
# Put this here since python's tarfile.open doesn't like tar.lz:
GLSLANG_COMMIT=$(python3 - << EOF
import json
import tarfile
with tarfile.open('Vulkan-ValidationLayers-sdk-$VERSION.tar') as layers:
known_good = layers.extractfile('Vulkan-ValidationLayers-sdk-${VERSION}/scripts/known_good.json')
known_good_info = json.loads(known_good.read())
glslang = next(repo for repo in known_good_info['repos'] if repo['name'] == 'glslang')
print(glslang['commit'])
EOF
)
# Now it's safe to compress:
plzip -9 Vulkan-ValidationLayers-sdk-${VERSION}.tar
git clone -b "$BRANCH" --single-branch https://github.com/KhronosGroup/Vulkan-Loader.git Vulkan-Loader-sdk-${VERSION}
rm -rf Vulkan-Loader-sdk-${VERSION}/.git
tar cf Vulkan-Loader-sdk-${VERSION}.tar Vulkan-Loader-sdk-${VERSION}
rm -rf Vulkan-Loader-sdk-${VERSION}
plzip -9 Vulkan-Loader-sdk-${VERSION}.tar
git clone -b "$BRANCH" --single-branch https://github.com/KhronosGroup/Vulkan-Tools.git Vulkan-Tools-sdk-${VERSION}
rm -rf Vulkan-Tools-sdk-${VERSION}/.git
tar cf Vulkan-Tools-sdk-${VERSION}.tar Vulkan-Tools-sdk-${VERSION}
rm -rf Vulkan-Tools-sdk-${VERSION}
plzip -9 Vulkan-Tools-sdk-${VERSION}.tar
git clone https://github.com/KhronosGroup/glslang.git
cd glslang || exit
git checkout "$GLSLANG_COMMIT"
GLSLANG_VERSION=$(git rev-parse --short HEAD)
rm -rf .git
cd ..
mv glslang "glslang-$GLSLANG_VERSION"
SPIRV_TOOLS_COMMIT=$(python3 - << EOF
import json
with open('glslang-$GLSLANG_VERSION/known_good.json') as f:
known_good = json.load(f)
tools = next(commit for commit in known_good['commits'] if commit['name'] == 'spirv-tools')
print(tools['commit'])
EOF
)
git clone https://github.com/KhronosGroup/SPIRV-Tools.git
cd SPIRV-Tools || exit
git checkout "$SPIRV_TOOLS_COMMIT"
SPIRV_TOOLS_VERSION="$(git rev-parse --short HEAD)"
rm -rf .git
cd ..
mv SPIRV-Tools SPIRV-Tools-$SPIRV_TOOLS_VERSION
tar cf SPIRV-Tools-$SPIRV_TOOLS_VERSION.tar SPIRV-Tools-$SPIRV_TOOLS_VERSION
rm -rf SPIRV-Tools-$SPIRV_TOOLS_VERSION
plzip -9 SPIRV-Tools-$SPIRV_TOOLS_VERSION.tar
SPIRV_HEADERS_COMMIT=$(python3 - << EOF
import json
with open('glslang-$GLSLANG_VERSION/known_good.json') as f:
known_good = json.load(f)
name = 'spirv-tools/external/spirv-headers'
headers = next(commit for commit in known_good['commits'] if commit['name'] == name)
print(headers['commit'])
EOF
)
git clone https://github.com/KhronosGroup/SPIRV-Headers.git
cd SPIRV-Headers || exit
git checkout "$SPIRV_HEADERS_COMMIT"
SPIRV_HEADERS_VERSION="$(git rev-parse --short HEAD)"
rm -rf .git
cd ..
mv SPIRV-Headers SPIRV-Headers-$SPIRV_HEADERS_VERSION
tar cf SPIRV-Headers-$SPIRV_HEADERS_VERSION.tar SPIRV-Headers-$SPIRV_HEADERS_VERSION
rm -rf SPIRV-Headers-$SPIRV_HEADERS_VERSION
plzip -9 SPIRV-Headers-$SPIRV_HEADERS_VERSION.tar
tar cf glslang-$GLSLANG_VERSION.tar glslang-$GLSLANG_VERSION
rm -rf glslang-$GLSLANG_VERSION
plzip -9 glslang-$GLSLANG_VERSION.tar