git: update to 2.35.1

This commit is contained in:
Juergen Daubert 2022-01-31 14:08:24 +01:00
parent 45b4c5ba3b
commit ac64fcbe0b
2 changed files with 24 additions and 24 deletions

View File

@ -1,8 +1,8 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/S36fI9Kp6cQ8ljybdLFSHStSz9LzXVgGv0f4/dq+DygWO4KzmiIAgh+17sXHmYxlBYVQgMAe8J+WrjQrAlWcgk=
SHA256 (Pkgfile) = b9cbf9af0ce1363480146aa78d3c9be2d4c4844f31417e01cf1bc80cb0b3b596
RWSE3ohX2g5d/TKRhaUrG7irKE2JHyaYXjfAadGJJXj3Np/akF8Rm8ErUqZj5oEHIXwQyLcJ7GqGjMjWrDL5aPlmvjBRil8xbQY=
SHA256 (Pkgfile) = 9229e5fb6022efae08c5d74c35d3faf3dd1cf68f501daee53fd288e87158b99e
SHA256 (.footprint) = 221471fe8fe989b047cc970d056ca14146c82f259cce1915b20a1f46aca428d9
SHA256 (git-2.35.0.tar.xz) = 47e677b475226857ceece569fb6ded8b85838ede97ae1e01bd365ac32a468fc8
SHA256 (git-manpages-2.35.0.tar.xz) = 438625a0639d2e627a7a2edab94d999c200ec7464cc19a8052322641b5272ca9
SHA256 (git-2.35.1.tar.xz) = d768528e6443f65a203036266f1ca50f9d127ba89751e32ead37117ed9191080
SHA256 (git-manpages-2.35.1.tar.xz) = e4e3a751f2c05959222c3ea2f0f09481700eca8f915d1398bb270eb6846c3803
SHA256 (git) = 432108f8c5f5abeb429cab25181b43ee42060d46fa7fbe7e4b02790b56f61e8a
SHA256 (gitd.rc) = 3a7a13fcfbf493890e58a3c1c8a71de08518b35fa6fe6109120a03cd8beeac25

View File

@ -5,35 +5,35 @@
# Optional: tk
name=git
version=2.35.0
version=2.35.1
release=1
source=(https://www.kernel.org/pub/software/scm/git/git-{,manpages-}$version.tar.xz
git gitd.rc)
git gitd.rc)
build() {
cd $name-$version
cd $name-$version
make CFLAGS="$CFLAGS" \
prefix=/usr \
gitexecdir=/usr/lib/git-core \
INSTALLSITEMAN3DIR=/usr/share/man/man3 \
perllibdir=$(perl -e 'use Config; print $Config::Config{'installsitelib'}') \
DESTDIR=$PKG install
make CFLAGS="$CFLAGS" \
prefix=/usr \
gitexecdir=/usr/lib/git-core \
INSTALLSITEMAN3DIR=/usr/share/man/man3 \
perllibdir=$(perl -e 'use Config; print $Config::Config{'installsitelib'}') \
DESTDIR=$PKG install
prt-get isinst bash-completion && install -Dm644 contrib/completion/git-completion.bash $PKG/usr/share/bash-completion/completions/git
prt-get isinst bash-completion && install -Dm644 contrib/completion/git-completion.bash $PKG/usr/share/bash-completion/completions/git
cd $SRC
cd $SRC
for i in man*; do
install -d $PKG/usr/share/man/$i
install -m 644 $i/* $PKG/usr/share/man/$i;
done
for i in man*; do
install -d $PKG/usr/share/man/$i
install -m 644 $i/* $PKG/usr/share/man/$i;
done
find $PKG \( -name perllocal.pod -o -name .packlist \) -delete
rm -rf $PKG/usr/share/{locale,gitk}
find $PKG \( -name perllocal.pod -o -name .packlist \) -delete
rm -rf $PKG/usr/share/{locale,gitk}
# install the git ports driver
install -Dm755 $SRC/git $PKG/etc/ports/drivers/git
# install the git ports driver
install -Dm755 $SRC/git $PKG/etc/ports/drivers/git
install -D $SRC/gitd.rc $PKG/etc/rc.d/gitd
install -D $SRC/gitd.rc $PKG/etc/rc.d/gitd
}