clang-ccache-bindings: 10 -> 11

This commit is contained in:
Danny Rawlins 2020-12-13 01:28:44 +11:00
parent cfccbc9247
commit d540814232
3 changed files with 9 additions and 9 deletions

View File

@ -3,5 +3,5 @@ drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/ccache/
lrwxrwxrwx root/root usr/lib/ccache/clang -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/clang++ -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/clang-10 -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/clang-10.0 -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/clang-11 -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/clang-11.0 -> ../../bin/ccache

View File

@ -1,4 +1,4 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/RXRuy0bZb0BcQf3mXKNEhqrAz1JyTpp5toMHEXpmiKPBczAkfIDm+3GyHAPLh8yj8z+otQd/pwu/u7QmeRTMgU=
SHA256 (Pkgfile) = d736b8fa70740d65272014e280297982009c30b74c753d46c07707b450287713
SHA256 (.footprint) = 4d6bc9f5079d24439563214828fa70e8325a5bc857069e166fc75f100c0e77d6
RWSE3ohX2g5d/Tnku5q5YBqOUxyAA7QCfc/VYmQuSHylJXUQdTekvtMl4k6y+72YN0kgecbUTlKrZGeQN3IW1Oj51w33727qgwM=
SHA256 (Pkgfile) = 61c04b25c1a59dc158823b526dfe4a763ddd38414564630b265998b2a2c076bd
SHA256 (.footprint) = 50fcd79bec335679df5be4f2affaa8bbfae5122d92287d184bb2d2618750afaf

View File

@ -4,17 +4,17 @@
# Depends on: ccache clang
name=clang-ccache-bindings
version=10
version=11
release=1
source=()
build() {
install -d $PKG/usr/lib/ccache
local clang0="$(clang++ -v 2>&1 | grep version | sed 's/.*version \([0-9]*\).[0-9]*.[0-9]* .*/\1/g')"
local clang1="$(clang++ -v 2>&1 | grep version | sed 's/.*version \([0-9]*.[0-9]*\).[0-9]* .*/\1/g')"
local clang0="$(clang++ -v 2>&1 | grep version | sed 's/.*version \([0-9]*\).[0-9]*.[0-9]*/\1/g')"
local clang1="$(clang++ -v 2>&1 | grep version | sed 's/.*version \([0-9]*.[0-9]*\).[0-9]*/\1/g')"
if [ -z $clang0 ]; then
if [ -z "$clang0" ]; then
echo 'Failed to find clang version'
exit 1
fi