Use curl instead of git-fetch

master
Will Temple 2020-06-06 06:27:41 -07:00
parent da0cf76903
commit e445c03efc
No known key found for this signature in database
GPG Key ID: F60429B2035EF582
1 changed files with 1 additions and 13 deletions

View File

@ -27,20 +27,8 @@ pkgver() {
prepare() {
set -eo pipefail
# Create git repository to hold gitlab upstream code and create diff
if [ -d "libxft_upstream" ]; then
rm -rf "libxft_upstream";
fi;
mkdir libxft_upstream
pushd libxft_upstream
git init
git remote add upstream ${LIBXFT_UPSTREAM_URL}
git fetch --depth=2 upstream ${COMMIT_ID}
popd
pushd libXft-${_pkgbasever}
git --git-dir ../libxft_upstream/.git diff -u ${COMMIT_ID}~ ${COMMIT_ID} | patch -p1
curl -S https://gitlab.freedesktop.org/xorg/lib/libxft/-/commit/${COMMIT_ID}.patch | patch -p1
popd
set +eo pipefail