Skip to content

Commit

Permalink
Anchored targets to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hazimeh committed Jul 7, 2021
1 parent 63fc98f commit 89a57b8
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 22 deletions.
6 changes: 3 additions & 3 deletions targets/libpng/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# - env TARGET: path to target work dir
##

git clone https://github.com/glennrp/libpng.git \
--depth 1 --branch libpng16 \
"$TARGET/repo"
git clone --no-checkout https://github.com/glennrp/libpng.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout a37d4836519517bdce6cb9d956092321eca3e73b
5 changes: 3 additions & 2 deletions targets/libsndfile/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
# - env TARGET: path to target work dir
##

git clone --depth 1 https://github.com/libsndfile/libsndfile.git \
"$TARGET/repo"
git clone --no-checkout https://github.com/libsndfile/libsndfile.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout 86c9f9eb7022d186ad4d0689487e7d4f04ce2b29
4 changes: 2 additions & 2 deletions targets/libtiff/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# - env TARGET: path to target work dir
##

git clone https://gitlab.com/libtiff/libtiff \
--depth 1 --branch master \
git clone --no-checkout https://gitlab.com/libtiff/libtiff.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout c145a6c14978f73bb484c955eb9f84203efcb12e

cp "$TARGET/src/tiff_read_rgba_fuzzer.cc" \
"$TARGET/repo/contrib/oss-fuzz/tiff_read_rgba_fuzzer.cc"
4 changes: 2 additions & 2 deletions targets/libxml2/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# - env TARGET: path to target work dir
##

git clone https://gitlab.gnome.org/GNOME/libxml2.git \
--branch master \
git clone --no-checkout https://gitlab.gnome.org/GNOME/libxml2.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout ec6e3efb06d7b15cf5a2328fabd3845acea4c815
5 changes: 2 additions & 3 deletions targets/lua/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
# - env TARGET: path to target work dir
##

git clone https://github.com/lua/lua.git \
--depth 1 --branch master \
"$TARGET/repo"
git clone --no-checkout https://github.com/lua/lua.git "$TARGET/repo"
git -C "$TARGET/repo" checkout dbdc74dc5502c2e05e1c1e2ac894943f418c8431
4 changes: 2 additions & 2 deletions targets/openssl/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# - env TARGET: path to target work dir
##

git clone https://github.com/openssl/openssl.git \
--depth 1 --branch master \
git clone --no-checkout https://github.com/openssl/openssl.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout 3bd5319b5d0df9ecf05c8baba2c401ad8e3ba130

cp "$TARGET/src/abilist.txt" "$TARGET/repo/abilist.txt"
8 changes: 5 additions & 3 deletions targets/php/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
# - env TARGET: path to target work dir
##

git clone https://github.com/php/php-src.git \
--depth 1 --branch master \
git clone --no-checkout https://github.com/php/php-src.git \
"$TARGET/repo"
git -C "$TARGET/repo" checkout bc39abe8c3c492e29bc5d60ca58442040bbf063b

git clone https://github.com/kkos/oniguruma.git "$TARGET/repo/oniguruma"
git clone --no-checkout https://github.com/kkos/oniguruma.git \
"$TARGET/repo/oniguruma"
git -C "$TARGET/repo/oniguruma" checkout 227ec0bd690207812793c09ad70024707c405376
9 changes: 5 additions & 4 deletions targets/poppler/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
# - env TARGET: path to target work dir
##

git clone https://gitlab.freedesktop.org/poppler/poppler.git \
--depth 1 --branch master \
git clone --no-checkout https://gitlab.freedesktop.org/poppler/poppler.git \
"$TARGET/repo"
git clone git://git.sv.nongnu.org/freetype/freetype2.git \
--depth 1 --branch master \
git -C "$TARGET/repo" checkout 1d23101ccebe14261c6afc024ea14f29d209e760

git clone --no-checkout git://git.sv.nongnu.org/freetype/freetype2.git \
"$TARGET/freetype2"
git -C "$TARGET/freetype2" checkout 50d0033f7ee600c5f5831b28877353769d1f7d48
3 changes: 2 additions & 1 deletion targets/sqlite3/fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# - env TARGET: path to target work dir
##

curl https://www.sqlite.org/src/tarball/sqlite.tar.gz -o "$OUT/sqlite.tar.gz" && \
curl "https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=8c432642572c8c4b" \
-o "$OUT/sqlite.tar.gz" && \
mkdir -p "$TARGET/repo" && \
tar -C "$TARGET/repo" --strip-components=1 -xzf "$OUT/sqlite.tar.gz"

0 comments on commit 89a57b8

Please sign in to comment.