412c4e6ee1
My fork brings several features that improve your command line bugzilla experience: - Improves bug printing to make it as close to WebUI as possible. - Adds -Q that allows to quote comment(s) when replying to a bug. - Allows to download attachment(s) of a bug with some filtering. Note on DISTVERSION: pybugz internally names itself as 0.14, but there were no release. Approved by: linimon
28 lines
586 B
Makefile
28 lines
586 B
Makefile
PORTNAME= pybugz
|
|
DISTVERSION= 0.14
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= bugmeister@FreeBSD.org
|
|
COMMENT= Python command-line interface to bugzilla
|
|
WWW= https://github.com/williamh/pybugz
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
GH_ACCOUNT= glebius
|
|
GH_TAGNAME= a583724
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,share/man,man,' ${WRKSRC}/${PYSETUP}
|
|
${REINPLACE_CMD} -e 's,/usr,${PREFIX},' \
|
|
-e 's,/etc,${PREFIX}&,' \
|
|
${WRKSRC}/man/pybugz.d.5
|
|
|
|
.include <bsd.port.mk>
|