32 lines
987 B
Bash
32 lines
987 B
Bash
# Template file for 'mercurial'
|
|
pkgname=mercurial
|
|
version=5.5
|
|
revision=1
|
|
build_style=python3-module
|
|
hostmakedepends="python3 python3-setuptools python3-devel"
|
|
makedepends="python3-devel"
|
|
depends="python3 ca-certificates"
|
|
checkdepends="iana-etc tar unzip which xz"
|
|
short_desc="Fast, lightweight source control management system"
|
|
maintainer="Johannes <johannes.brechtmann@gmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.mercurial-scm.org/"
|
|
distfiles="https://www.mercurial-scm.org/release/mercurial-${version}.tar.gz"
|
|
checksum=c1ed28e1534304a7a4981ed59905286d1c56acd5b75755eedd184171a4a782b4
|
|
|
|
do_check() {
|
|
cd tests
|
|
rm test-doctest.py test-hghave.t test-https.t test-merge-tools.t test-persistent-nodemap.t
|
|
python3 run-tests.py ${makejobs}
|
|
}
|
|
|
|
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
|
|
}
|