mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
e19f586396
- Adjust required dependencies versions - Depend on devel/py-ordereddict - Limit python version up to 2.7 - Update setup.py patch - Use a space character instead of a tab in pkg-descr - Update pkg-plist PR: 177830 Submitted by: maintainer
29 lines
660 B
Makefile
29 lines
660 B
Makefile
# Created by: Marco Broeder <marco.broeder@gmx.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hg-git
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= marco.broeder@gmx.eu
|
|
COMMENT= Mercurial extension to pull from or push to a Git repository
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}dulwich>=0.8.7:${PORTSDIR}/devel/dulwich \
|
|
mercurial>=2.5.2:${PORTSDIR}/devel/mercurial \
|
|
${PKGNAMEPREFIX}ordereddict>=1.1:${PORTSDIR}/devel/py-ordereddict
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_PKGNAME= ${PORTNAME:S/-/_/}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|