since Mercurial 4.2. Reported by landry@: for l in (self.repo.sjoin('lock'), self.repo.join('wlock')): AttributeError: 'localrepository' object has no attribute 'join' While here, update to 1.9.0. OK landry@. "go ahead" edd@ (MAINTAINER). Remove edd@ as maintainer at his request.
37 lines
767 B
Makefile
37 lines
767 B
Makefile
# $OpenBSD: Makefile,v 1.4 2017/10/31 14:20:53 juanfra Exp $
|
|
|
|
COMMENT = fast Mercurial log navigator
|
|
|
|
MODPY_EGG_VERSION = 1.9.0
|
|
DISTNAME = hgview-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = devel
|
|
HOMEPAGE = http://www.hgview.org/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODPY_PI = Yes
|
|
MODULES = lang/python
|
|
BUILD_DEPENDS = textproc/asciidoc \
|
|
textproc/xmlto \
|
|
x11/py-qt4 \
|
|
devel/mercurial
|
|
RUN_DEPENDS = x11/py-qt4 \
|
|
editors/py-qscintilla \
|
|
devel/py-urwid \
|
|
devel/mercurial
|
|
|
|
USE_GMAKE = Yes
|
|
NO_TEST = Yes
|
|
|
|
# Aside from the examples, the doc dir is empty. Check this is still
|
|
# the case when updating.
|
|
post-install:
|
|
mv ${PREFIX}/share/doc/hgview/examples/ \
|
|
${PREFIX}/share/examples/hgview
|
|
rm -Rf ${PREFIX}/share/doc/hgview
|
|
|
|
|
|
.include <bsd.port.mk>
|