Bug fixes * Fix issue which marked all workers dis-configured in the database every 24h * The :bb:reporter:MailNotifier no longer crashes when sending from/to email addresses with "Real Name" parts (e.g., John Doe <john.doe@domain.tld>). * Corrected pluralization of text on landing page of the web UI Improved Documentation * Corrected typo in description of libvirt * Update sample config to use preferred API Misc Improvements * Home page now contains links to recently active builders
26 lines
902 B
Makefile
26 lines
902 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/05/01 18:20:09 adam Exp $
|
|
|
|
DISTNAME= buildbot-worker-1.1.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=b/buildbot-worker/}
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= https://buildbot.net/
|
|
COMMENT= Worker for the buildbot CI system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-future-[0-9]*:../../devel/py-future
|
|
DEPENDS+= ${PYPKGPREFIX}-twisted>=17.9.0:../../net/py-twisted
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_trial-[0-9]*:../../devel/py-setuptools_trial
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} buildbot-worker buildbot-worker${PYVERSSUFFIX} && \
|
|
${MV} buildbot_worker_windows_service buildbot_worker_windows_service${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|