浏览代码

Ports/gn: Switch to using the Git repository directly

Tim Schumacher 1 年之前
父节点
当前提交
d94bffd708
共有 1 个文件被更改,包括 3 次插入12 次删除
  1. 3 12
      Ports/gn/package.sh

+ 3 - 12
Ports/gn/package.sh

@@ -2,24 +2,15 @@
 port='gn'
 workdir='gn'
 version='2023.07.12'
-repository='https://gn.googlesource.com/gn'
-git_rev='fae280eabe5d31accc53100137459ece19a7a295'
 useconfigure='true'
-# FIXME: The files and auth_type are lies here. See #20004
-files=('git')
-auth_type='sha256'
+files=(
+    'git+https://gn.googlesource.com/gn#fae280eabe5d31accc53100137459ece19a7a295'
+)
 depends=(
     'ninja'
     'python3'
 )
 
-fetch() {
-    if [ ! -d ${workdir} ]; then
-        git clone ${repository} ${workdir}
-    fi
-    run git checkout ${git_rev}
-}
-
 configure() {
     run python3 build/gen.py --platform='serenity' --allow-warnings
 }