git: update to 2.39.0.
This commit is contained in:
parent
e78ab21e47
commit
69cd4d0128
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'git'
|
# Template file for 'git'
|
||||||
pkgname=git
|
pkgname=git
|
||||||
version=2.38.2
|
version=2.39.0
|
||||||
revision=1
|
revision=1
|
||||||
hostmakedepends="asciidoc gettext perl pkg-config tk xmlto"
|
hostmakedepends="asciidoc gettext perl pkg-config tk xmlto"
|
||||||
makedepends="libglib-devel libcurl-devel libsecret-devel pcre2-devel tk-devel"
|
makedepends="libglib-devel libcurl-devel libsecret-devel pcre2-devel tk-devel"
|
||||||
|
@ -14,7 +14,7 @@ license="GPL-2.0-only"
|
||||||
homepage="https://git-scm.com/"
|
homepage="https://git-scm.com/"
|
||||||
changelog="https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/${version}.txt"
|
changelog="https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/${version}.txt"
|
||||||
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
||||||
checksum=115a1f8245cc67d4b1ac867047878b3130aa03d6acf22380b029239ed7170664
|
checksum=ba199b13fb5a99ca3dec917b0bd736bc0eb5a9df87737d435eddfdf10d69265b
|
||||||
replaces="git-perl>=0"
|
replaces="git-perl>=0"
|
||||||
register_shell=/usr/bin/git-shell
|
register_shell=/usr/bin/git-shell
|
||||||
python_version=3
|
python_version=3
|
||||||
|
@ -64,7 +64,11 @@ do_build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
do_check() {
|
do_check() {
|
||||||
make test
|
if [ "$XBPS_ALLOW_CHROOT_BREAKOUT" ]; then
|
||||||
|
IKNOWWHATIAMDOING=YES make test ${makejobs}
|
||||||
|
else
|
||||||
|
make test ${makejobs}
|
||||||
|
fi
|
||||||
make -C contrib/diff-highlight test
|
make -C contrib/diff-highlight test
|
||||||
make -C contrib/subtree test
|
make -C contrib/subtree test
|
||||||
make -C contrib/credential/netrc test
|
make -C contrib/credential/netrc test
|
||||||
|
|
Loading…
Reference in New Issue