vp-build/srcpkgs/mercurial/template

47 lines
1.3 KiB
Bash

# Template file for 'mercurial'
pkgname=mercurial
version=6.1.3
revision=1
build_style=python3-module
hostmakedepends="python3 python3-setuptools python3-devel gettext"
makedepends="python3-devel"
depends="python3 ca-certificates"
# cvs tests fail
checkdepends="iana-etc tar unzip which xz subversion-python python3-docutils gnupg2
python3-Pygments"
short_desc="Fast, lightweight source control management system"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="https://www.mercurial-scm.org/"
distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
checksum=e022c1ef28e5502793f4306724e8443c5d72714841906f46ca351efd7ba91b7c
pre_check() {
if [ "$XBPS_TARGET_LIBC" = musl ]; then
# fix hardcoded strerror() value from glibc
vsed -e 's/Address already in use/Address in use/' -i tests/common-pattern.py
fi
}
do_check() {
if [ "$XBPS_CHECK_PKGS" = full ]; then
_additional_test=--allow-slow-tests
else
_additional_test='test-s*'
fi
cd tests
rm test-hghave.t test-merge-tools.t test-status.t
python3 run-tests.py ${makejobs} ${_additional_test}
}
post_install() {
for i in doc/*.1 doc/*.8 doc/*.5 ; do
vman $i
done
vinstall contrib/bash_completion 644 \
usr/share/bash-completion/completions hg
vinstall contrib/zsh_completion 644 \
usr/share/zsh/site-functions _hg
}