Skip to content

Commit ed0a84c

Browse files
committed
upgrade libs
1 parent 83b88e0 commit ed0a84c

File tree

5 files changed

+58
-8
lines changed

5 files changed

+58
-8
lines changed

init-cfgs/bluray

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ else
2323
fi
2424

2525
export GIT_LOCAL_REPO=build/extra/bluray
26-
export GIT_COMMIT=1.3.1
26+
export GIT_COMMIT=1.3.4
2727
export GIT_WITH_SUBMODULE=1
2828
export REPO_DIR=bluray
29-
export GIT_BLURAY_VERSION=1.3.1
29+
export GIT_BLURAY_VERSION=1.3.4

init-cfgs/dav1d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ else
2323
fi
2424

2525
export GIT_LOCAL_REPO=build/extra/dav1d
26-
export GIT_COMMIT=1.2.0
26+
export GIT_COMMIT=1.3.0
2727
export GIT_WITH_SUBMODULE=0
2828
export REPO_DIR=dav1d
29-
export GIT_DAV1D_VERSION=1.2.0
29+
export GIT_DAV1D_VERSION=1.3.0

init-cfgs/openssl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ else
2424
fi
2525

2626
export GIT_LOCAL_REPO=build/extra/openssl
27-
export GIT_COMMIT=OpenSSL_1_1_1u
27+
export GIT_COMMIT=OpenSSL_1_1_1w
2828
export REPO_DIR=openssl
29-
export GIT_OPENSSL_VERSION=1.1.1u
29+
export GIT_OPENSSL_VERSION=1.1.1w

init-cfgs/opus

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ else
2323
fi
2424

2525
export GIT_LOCAL_REPO=build/extra/opus
26-
export GIT_COMMIT=v1.3.1
26+
export GIT_COMMIT=v1.4
2727
export REPO_DIR=opus
28-
export GIT_OPUS_VERSION=1.3.1
28+
export GIT_OPUS_VERSION=1.4

tools/sync-lastest-private.sh

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
#!/bin/sh
2+
# sync lastest tag and master branch to private.
3+
4+
ffmpegRepo=https://github.com/bilibili/FFmpeg.git
5+
libyuvRepo=https://github.com/lemenkov/libyuv.git
6+
opensslRepo=https://github.com/openssl/openssl.git
7+
opusRepo=https://gitlab.xiph.org/xiph/opus.git
8+
blurayRepo=https://code.videolan.org/videolan/libbluray.git
9+
dav1dRepo=https://code.videolan.org/videolan/dav1d.git
10+
11+
set -e
12+
13+
THIS_DIR=$(DIRNAME=$(dirname "$0"); cd "$DIRNAME"; pwd)
14+
cd "$THIS_DIR"
15+
cd ../build/extra
16+
17+
function update()
18+
{
19+
local dir=$1
20+
cd "$dir"
21+
echo "pwd:$PWD"
22+
local url=$(git remote get-url github)
23+
24+
if [[ -z $url ]]; then
25+
echo 'add github remote'
26+
eval repo='$'${dir}Repo
27+
echo "$repo"
28+
git remote add github "$repo"
29+
fi
30+
31+
echo '=== will pull all from github ==='
32+
git reset --hard
33+
git checkout master -B master
34+
git pull origin master
35+
git fetch github --tags
36+
37+
echo '=== will push all branch to private ==='
38+
git push origin --tags
39+
git push origin --all
40+
41+
git remote remove github
42+
cd -
43+
}
44+
45+
for i in $(ls);
46+
do
47+
update "$i"
48+
done;
49+
50+
# update bluray

0 commit comments

Comments
 (0)