blob: 941b3f9abd3bd236da433c90e899ce8454e511be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.11 2022/01/04 20:53:04 wiz Exp $
DISTNAME= fastimport-0.9.14
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
PKGREVISION= 1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=f/fastimport/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/jelmer/python-fastimport
COMMENT= Fastimport parser and generator in Python
LICENSE= gnu-gpl-v2
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
post-install:
.for bin in fast-import-filter fast-import-info fast-import-query
cd ${DESTDIR}${PREFIX}/bin && \
${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
.endfor
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|