From f7bce6c22b32e72cd820fbb3620806eca6bc3259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 20 May 2021 00:26:04 +0700 Subject: [PATCH 1/3] git: build manually with make Git project officially recommended to use "make" directly [1]. 1: https://lore.kernel.org/git/xmqq4kxiiuba.fsf@gitster-ct.c.googlers.com/ --- srcpkgs/git/template | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/srcpkgs/git/template b/srcpkgs/git/template index 9aa14d60ce1d..66e54bfc9e7d 100644 --- a/srcpkgs/git/template +++ b/srcpkgs/git/template @@ -2,12 +2,12 @@ pkgname=git version=2.31.1 revision=1 -build_style=gnu-configure -configure_args="--with-curl --with-expat --with-tcltk --with-libpcre2" -hostmakedepends="asciidoc gettext perl pkg-config tar tk xmlto" +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="tar cvs cvsps2 perl-DBD-SQLite subversion subversion-perl + perl-Term-ReadKey tzdata" short_desc="Git Tree History Storage Tool" maintainer="Đoàn Trần Công Danh " license="GPL-2.0-only" @@ -21,16 +21,35 @@ python_version=3 subpackages="git-cvs git-svn gitk git-gui git-all git-libsecret git-netrc" -post_configure() { +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 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 } -post_build() { +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 @@ -40,14 +59,14 @@ post_build() { } do_check() { - make ${makejobs} test + make test make -C contrib/diff-highlight test make -C contrib/subtree test make -C contrib/credential/netrc test } -post_install() { - make DESTDIR=${DESTDIR} install-doc +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 From 98cd3361fbe337323d1f50427f89b5e0a012a0d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 20 May 2021 00:44:05 +0700 Subject: [PATCH 2/3] chroot-git: build manually with make MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As recommended by Git project itself. Also reduce the time for running configure script. --- srcpkgs/chroot-git/template | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/srcpkgs/chroot-git/template b/srcpkgs/chroot-git/template index d4cd9d8e6a5e..7da8a60d903d 100644 --- a/srcpkgs/chroot-git/template +++ b/srcpkgs/chroot-git/template @@ -4,10 +4,6 @@ version=2.31.1 revision=1 bootstrap=yes wrksrc="git-${version}" -build_style=gnu-configure -configure_args="--without-curl --without-openssl - --without-python --without-expat --without-tcltk - ac_cv_lib_curl_curl_global_init=no ac_cv_lib_expat_XML_ParserCreate=no" make_check_target=test makedepends="zlib-devel" short_desc="GIT Tree History Storage Tool -- for xbps-src use" @@ -23,17 +19,39 @@ else configure_args+=" --with-zlib=${XBPS_MASTERDIR}/usr" fi -post_configure() { +do_configure() { cat <<-EOF >config.mak + prefix = /usr + CC = $CC + AR = $AR + TAR = $(command -v bsdtar || command -v tar) + CFLAGS = $CFLAGS + LDFLAGS = $LDFLAGS CC_LD_DYNPATH=-L NO_INSTALL_HARDLINKS=Yes NO_GETTEXT=Yes + NO_OPENSSL = Yes + USE_LIBPCRE := + USE_LIBPCRE2 := + NO_CURL = Yes + NO_EXPAT = Yes + NO_PERL = Yes + NO_PYTHON = Yes + NO_TCLTK = Yes EOF + + if [ "$XBPS_TARGET_LIBC" = musl ]; then + cat <<-EOF >>config.mak + ICONV_OMITS_BOM = Yes + NO_REGEX = Yes + EOF + fi } -do_install() { - # remove unneeded stuff. - make DESTDIR=${wrksrc}/build-tmp install +do_build() { + make ${makejobs} git +} - vbin ${wrksrc}/build-tmp/usr/bin/git chroot-git +do_install() { + vbin git chroot-git } From f08834198c5f5ac16ae8f2f7e25fa0de36f6bbb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sun, 6 Jun 2021 21:47:30 +0700 Subject: [PATCH 3/3] git: update to 2.32.0. --- srcpkgs/git/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/git/template b/srcpkgs/git/template index 66e54bfc9e7d..571fc6dc6df8 100644 --- a/srcpkgs/git/template +++ b/srcpkgs/git/template @@ -1,6 +1,6 @@ # Template file for 'git' pkgname=git -version=2.31.1 +version=2.32.0 revision=1 hostmakedepends="asciidoc gettext perl pkg-config tk xmlto" 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/" 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=9f61417a44d5b954a5012b6f34e526a3336dcf5dd720e2bb7ada92ad8b3d6680 +checksum=68a841da3c4389847ecd3301c25eb7e4a51d07edf5f0168615ad6179e3a83623 replaces="git-perl>=0" register_shell=/usr/bin/git-shell python_version=3