pkgsrc/devel/py-hg-evolve/Makefile
wiz c16c66cd3c py-hg-evolve: update to 10.4.0.
This is a feature release. The most notable changes are: evolve
will now produce the same result regardless of revision numbers
when resolving content-divergence; an annoying topic bug that
sometimes prevented various history-rewriting commands from completing
with a KeyError was fixed. See
https://bz.mercurial-scm.org/show_bug.cgi?id=6500 for details. Also
compatibility with Mercurial 4.6 was dropped in this release.
2021-10-28 11:47:55 +00:00

40 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.22 2021/10/28 11:47:55 wiz Exp $
#
# Release notes:
# https://www.mercurial-scm.org/pipermail/evolve-testers/
DISTNAME= hg-evolve-10.4.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/post//}
CATEGORIES= devel scm
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hg-evolve/}
MAINTAINER= joerg@NetBSD.org
HOMEPAGE= https://www.mercurial-scm.org/doc/evolution/
COMMENT= Experimental Mercurial extensions from Facebook
LICENSE= gnu-gpl-v2
DEPENDS+= ${PYPKGPREFIX}-mercurial>=5.4nb1:../../devel/py-mercurial
DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3
TEST_DEPENDS+= curl-[0-9]*:../../www/curl
USE_TOOLS+= bash:test
post-install:
rm -f ${DESTDIR}${PREFIX}/${PYSITELIB}/hgext3rd/__init__.py*
rm -f ${DESTDIR}${PREFIX}/${PYSITELIB}/hgext3rd/__pycache__/__init__.*
# Test status as of 10.1.0 with mercurial 5.6:
# Failed test-check-compat-strings.t: output changed
# Failed test-check-debian.t: output changed
# Failed test-evolve-content-divergent-case-A2.t: output changed
# Ran 194 tests, 4 skipped, 3 failed.
.if 0
HG_WRKSRC= cd ../py-mercurial && ${MAKE} show-var VARNAME=WRKSRC
do-test:
HGROOT=${HG_WRKSRC:sh}; cd ${WRKSRC}/tests && ${PYTHONBIN} $${HGROOT}/tests/run-tests.py ${_MAKE_JOBS:Q}
.endif
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"