From f6a74b16d215620be5ccee5d1d8154214d3d209a Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Wed, 18 Nov 2020 21:40:31 +0000 Subject: Wed Nov 18 21:40:31 UTC 2020 a/kernel-generic-5.4.78-x86_64-1.txz: Upgraded. a/kernel-huge-5.4.78-x86_64-1.txz: Upgraded. a/kernel-modules-5.4.78-x86_64-1.txz: Upgraded. d/cmake-3.19.0-x86_64-1.txz: Upgraded. d/kernel-headers-5.4.78-x86-1.txz: Upgraded. k/kernel-source-5.4.78-noarch-1.txz: Upgraded. l/imagemagick-7.0.10_39-x86_64-1.txz: Upgraded. l/libjpeg-turbo-2.0.6-x86_64-1.txz: Upgraded. n/gnupg2-2.2.24-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-78.5.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.5.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2020-52/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26951 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16012 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26953 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26956 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26958 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26968 (* Security fix *) xap/ssr-0.4.2-x86_64-2.txz: Rebuilt. Recompiled to use Qt5 instead of Qt4. xfce/thunar-1.8.16-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt. --- .../vtown/deps/cryfs/.travisci/build_and_test.sh | 50 ---------------------- .../source/vtown/deps/cryfs/.travisci/install.sh | 20 --------- 2 files changed, 70 deletions(-) delete mode 100755 testing/source/vtown/deps/cryfs/.travisci/build_and_test.sh delete mode 100755 testing/source/vtown/deps/cryfs/.travisci/install.sh (limited to 'testing/source/vtown/deps/cryfs/.travisci') diff --git a/testing/source/vtown/deps/cryfs/.travisci/build_and_test.sh b/testing/source/vtown/deps/cryfs/.travisci/build_and_test.sh deleted file mode 100755 index deb90903b..000000000 --- a/testing/source/vtown/deps/cryfs/.travisci/build_and_test.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash - -set -ev - -# If using gcc on mac, actually use it ("gcc" just links to clang, but "gcc-4.8" is gcc, https://github.com/travis-ci/travis-ci/issues/2423) -# Note: This must be here and not in install.sh, because environment variables can't be passed between scripts. -if [ "${CXX}" == "g++" ]; then - echo Switch to actual g++ and not just the AppleClang symlink - export CXX="g++-7" CC="gcc-7" -else - echo Do not switch to actual g++ because we are not g++ -fi - -# Setup ccache -export PATH="/usr/local/opt/ccache/libexec:$PATH" -export CCACHE_COMPILERCHECK=content -export CCACHE_COMPRESS=1 -export CCACHE_SLOPPINESS=include_file_mtime -ccache --max-size=512M -ccache --show-stats - -# Detect number of CPU cores -export NUMCORES=`sysctl -n hw.ncpu` -echo Using $NUMCORES cores - -echo Using CXX compiler $CXX and C compiler $CC - -# Setup target directory -mkdir cmake -cd cmake -cmake --version - -# Build -echo Build target: ${BUILD_TARGET} -cmake .. -DBUILD_TESTING=on -DCMAKE_BUILD_TYPE=${BUILD_TARGET} -make -j$NUMCORES - -ccache --show-stats - -# Test -./test/gitversion/gitversion-test -./test/cpp-utils/cpp-utils-test -./test/parallelaccessstore/parallelaccessstore-test -./test/blockstore/blockstore-test -./test/blobstore/blobstore-test -./test/cryfs/cryfs-test - -# TODO Also run once fixed -# ./test/fspp/fspp-test -# ./test/cryfs-cli/cryfs-cli-test diff --git a/testing/source/vtown/deps/cryfs/.travisci/install.sh b/testing/source/vtown/deps/cryfs/.travisci/install.sh deleted file mode 100755 index 9057a75b9..000000000 --- a/testing/source/vtown/deps/cryfs/.travisci/install.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -e - -# Install newer GCC if we're running on GCC -if [ "${CXX}" == "g++" ]; then - # We need to uninstall oclint because it creates a /usr/local/include/c++ symlink that clashes with the gcc5 package - # see https://github.com/Homebrew/homebrew-core/issues/21172 - brew cask uninstall oclint - brew install gcc@7 -fi - -brew cask install osxfuse -brew install libomp - -# By default, travis only fetches the newest 50 commits. We need more in case we're further from the last version tag, so the build doesn't fail because it can't generate the version number. -git fetch --unshallow --tags - -# Setup ccache -brew install ccache -- cgit v1.2.3