change: update hook for linux-phicomm-n1

This commit is contained in:
Archlinux-Jerry Build Bot 2020-01-10 22:52:46 +08:00
parent 2f09bab0af
commit 478a309acf
1 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,7 @@ newPkgVer() {
# do not print anything to stdout other than new pkgver here
#URL='https://cdn.kernel.org/pub/linux/kernel/v5.x/'
URL='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git'
#URL='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git'
VER=$pkgver
#CHANGELOG_FORMAT="patch-"
CHANGELOG_FORMAT="Linux "
@ -29,6 +29,8 @@ newPkgVer() {
PATCH=${VER##*.}
MAJOR_MINOR=${VER%.*}
URL="https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/?h=linux-${MAJOR_MINOR}.y"
if ! grep -Eq '[0-9].[0-9]' <<< "$MAJOR_MINOR"; then echo "Bad MAJOR_MINOR: ${MAJOR_MINOR}" >&2; return 1; fi
if ! grep -Eq '[0-9]' <<< "$PATCH"; then echo "Bad PATCH: ${PATCH}" >&2; return 1; fi