157 lines
4.5 KiB
Bash
157 lines
4.5 KiB
Bash
# Template file for 'git'
|
|
pkgname=git
|
|
version=2.33.1
|
|
revision=1
|
|
hostmakedepends="asciidoc gettext perl pkg-config tk xmlto"
|
|
makedepends="libglib-devel libcurl-devel libsecret-devel pcre2-devel tk-devel"
|
|
# Required by https://
|
|
depends="ca-certificates perl-Authen-SASL perl-MIME-tools perl-Net-SMTP-SSL"
|
|
checkdepends="gnupg cvs cvsps2 perl-DBD-SQLite subversion subversion-perl
|
|
perl-Term-ReadKey perl-CGI perl-IO-Tty"
|
|
short_desc="Git Tree History Storage Tool"
|
|
maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://git-scm.com/"
|
|
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"
|
|
checksum=e054a6e6c2b088bd1bff5f61ed9ba5aa91c9a3cd509539a4b41c5ddf02201f2f
|
|
replaces="git-perl>=0"
|
|
register_shell=/usr/bin/git-shell
|
|
python_version=3
|
|
|
|
subpackages="git-cvs git-svn gitk git-gui git-all git-libsecret git-netrc"
|
|
|
|
do_configure() {
|
|
cat <<-EOF >config.mak
|
|
prefix = /usr
|
|
CC = $CC
|
|
AR = $AR
|
|
TAR = bsdtar
|
|
CFLAGS = $CFLAGS
|
|
LDFLAGS = $LDFLAGS
|
|
USE_LIBPCRE2=Yes
|
|
NO_INSTALL_HARDLINKS=Yes
|
|
INSTALLDIRS=vendor
|
|
perllibdir=/usr/share/perl5/vendor_perl
|
|
PYTHON_PATH=/usr/bin/python3
|
|
DEFAULT_TEST_TARGET = prove
|
|
GIT_PROVE_OPTS = $makejobs
|
|
# firstword (uname -m)
|
|
HOST_CPU = ${XBPS_TARGET_MACHINE%-musl}
|
|
EOF
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
|
cat <<-EOF >>config.mak
|
|
ICONV_OMITS_BOM = Yes
|
|
NO_REGEX = Yes
|
|
# TZ=CST6CDT date --iso-8601=seconds -d"2005-01-31 18:00:00 -0600"
|
|
export GIT_SKIP_TESTS=t9604.2
|
|
EOF
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
make ${makejobs} -C Documentation man
|
|
make ${makejobs} -C contrib/contacts all git-contacts.1
|
|
make ${makejobs} -C contrib/diff-highlight all
|
|
make ${makejobs} -C contrib/subtree all man
|
|
make ${makejobs} -C contrib/credential/libsecret
|
|
make ${makejobs} -C contrib/credential/netrc
|
|
}
|
|
|
|
do_check() {
|
|
make test
|
|
make -C contrib/diff-highlight test
|
|
make -C contrib/subtree test
|
|
make -C contrib/credential/netrc test
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install install-doc
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
usr/share/bash-completion/completions git
|
|
vinstall contrib/completion/git-prompt.sh 644 usr/share/git
|
|
make -C contrib/contacts DESTDIR=${DESTDIR} install install-man
|
|
vbin contrib/diff-highlight/diff-highlight
|
|
vdoc contrib/diff-highlight/README diff-highlight
|
|
vinstall contrib/git-jump/git-jump 755 usr/libexec/git-core
|
|
vdoc contrib/git-jump/README git-jump
|
|
make -C contrib/subtree DESTDIR=${DESTDIR} install install-man
|
|
vinstall contrib/credential/libsecret/git-credential-libsecret 755 \
|
|
usr/libexec/git-core
|
|
make -C contrib/credential/netrc DESTDIR=${DESTDIR} install
|
|
}
|
|
|
|
git-cvs_package() {
|
|
depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
|
|
short_desc+=" - CVS support"
|
|
pkg_install() {
|
|
vmove usr/bin/git-cvsserver
|
|
vmove usr/libexec/git-core/git-cvsexportcommit
|
|
vmove usr/libexec/git-core/git-cvsimport
|
|
vmove usr/libexec/git-core/git-cvsserver
|
|
vmove usr/share/man/man1/git-cvsexportcommit.1
|
|
vmove usr/share/man/man1/git-cvsimport.1
|
|
vmove usr/share/man/man1/git-cvsserver.1
|
|
vmove usr/share/man/man7/gitcvs-migration.7
|
|
}
|
|
}
|
|
|
|
git-svn_package() {
|
|
depends="${sourcepkg}-${version}_${revision} subversion-perl perl-Term-ReadKey"
|
|
short_desc+=" - Subversion support"
|
|
pkg_install() {
|
|
vmove "usr/share/perl5/vendor_perl/Git/SVN*"
|
|
vmove usr/libexec/git-core/git-svn
|
|
vmove usr/share/man/man1/git-svn.1
|
|
}
|
|
}
|
|
|
|
gitk_package() {
|
|
depends="git-${version}_${revision} tk"
|
|
short_desc="Git repository browser"
|
|
license="GPL-2.0-or-later"
|
|
pkg_install() {
|
|
vmove usr/bin/gitk
|
|
vmove usr/share/gitk
|
|
vmove usr/share/man/man1/gitk.1
|
|
}
|
|
}
|
|
|
|
git-gui_package() {
|
|
depends="git-${version}_${revision} tk"
|
|
short_desc+=" - GUI tool"
|
|
license="GPL-2.0-or-later"
|
|
pkg_install() {
|
|
vmove usr/libexec/git-core/git-gui--askpass
|
|
vmove usr/libexec/git-core/git-gui
|
|
vmove usr/libexec/git-core/git-citool
|
|
vmove usr/share/man/man1/git-gui.1
|
|
vmove usr/share/man/man1/git-citool.1
|
|
vmove usr/share/git-gui
|
|
}
|
|
}
|
|
|
|
git-all_package() {
|
|
build_style=meta
|
|
depends="${subpackages/git-all/}"
|
|
short_desc+=" - meta-package for complete Git installation"
|
|
}
|
|
|
|
git-libsecret_package() {
|
|
depends="git-${version}_${revision}"
|
|
short_desc+=" - libsecret credential helper"
|
|
license="GPL-2.0-or-later"
|
|
pkg_install() {
|
|
vmove usr/libexec/git-core/git-credential-libsecret
|
|
}
|
|
}
|
|
|
|
git-netrc_package() {
|
|
depends="git-${version}_${revision}"
|
|
short_desc+=" - netrc credential helper"
|
|
pkg_install() {
|
|
vmove usr/libexec/git-core/git-credential-netrc
|
|
}
|
|
}
|