File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323fi
2424
2525export GIT_LOCAL_REPO=build/extra/bluray
26- export GIT_COMMIT=1.3.1
26+ export GIT_COMMIT=1.3.4
2727export GIT_WITH_SUBMODULE=1
2828export REPO_DIR=bluray
29- export GIT_BLURAY_VERSION=1.3.1
29+ export GIT_BLURAY_VERSION=1.3.4
Original file line number Diff line number Diff line change 2323fi
2424
2525export GIT_LOCAL_REPO=build/extra/dav1d
26- export GIT_COMMIT=1.2 .0
26+ export GIT_COMMIT=1.3 .0
2727export GIT_WITH_SUBMODULE=0
2828export REPO_DIR=dav1d
29- export GIT_DAV1D_VERSION=1.2 .0
29+ export GIT_DAV1D_VERSION=1.3 .0
Original file line number Diff line number Diff line change 2424fi
2525
2626export GIT_LOCAL_REPO=build/extra/openssl
27- export GIT_COMMIT=OpenSSL_1_1_1u
27+ export GIT_COMMIT=OpenSSL_1_1_1w
2828export REPO_DIR=openssl
29- export GIT_OPENSSL_VERSION=1.1.1u
29+ export GIT_OPENSSL_VERSION=1.1.1w
Original file line number Diff line number Diff line change 2323fi
2424
2525export GIT_LOCAL_REPO=build/extra/opus
26- export GIT_COMMIT=v1.3.1
26+ export GIT_COMMIT=v1.4
2727export REPO_DIR=opus
28- export GIT_OPUS_VERSION=1.3.1
28+ export GIT_OPUS_VERSION=1.4
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments