View | Details | Raw Unified | Return to bug 217700
Collapse All | Expand All

(-)devel/buildbot/Makefile (-5 / +9 lines)
Lines 2-27 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	buildbot
4
PORTNAME=	buildbot
5
PORTVERSION=	0.8.12
5
PORTVERSION=	0.9.4
6
PORTREVISION=	1
7
CATEGORIES=	devel python
6
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
9
8
10
MAINTAINER=	koobs@FreeBSD.org
9
MAINTAINER=	grembo@FreeBSD.org
11
COMMENT=	Continuous Integration Framework (Master)
10
COMMENT=	Continuous Integration Framework (Master)
12
11
13
LICENSE=	GPLv2
12
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
15
14
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}twisted>=11.0.0:devel/py-twisted \
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}twisted>=14.0.1:devel/py-twisted \
17
		${PYTHON_PKGNAMEPREFIX}Jinja2>=2.1:devel/py-Jinja2 \
16
		${PYTHON_PKGNAMEPREFIX}Jinja2>=2.1:devel/py-Jinja2 \
17
		${PYTHON_PKGNAMEPREFIX}autobahn>=0.16.0:www/py-autobahn \
18
		${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \
18
		${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \
19
		${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future \
20
		${PYTHON_PKGNAMEPREFIX}pyjwt>=1.4.0:www/py-pyjwt \
21
		${PYTHON_PKGNAMEPREFIX}ramlfications>0:devel/py-ramlfications \
19
		${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.7:databases/py-sqlalchemy-migrate \
22
		${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.7:databases/py-sqlalchemy-migrate \
20
		${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.6:databases/py-sqlalchemy10 \
23
		${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.6:databases/py-sqlalchemy10 \
21
		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3
24
		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3
22
TEST_DEPENDS=	trial:devel/py-twisted \
25
TEST_DEPENDS=	trial:devel/py-twisted \
26
		buildbot-worker>=0.9.4:devel/buildbot-worker \
23
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
27
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
24
		${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto \
28
		${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \
25
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
29
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
26
30
27
USES=		python:-2.7
31
USES=		python:-2.7
(-)devel/buildbot/distinfo (-2 / +5 lines)
Lines 1-2 Link Here
1
SHA256 (buildbot-0.8.12.tar.gz) = c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6
1
TIMESTAMP = 1488903232
2
SIZE (buildbot-0.8.12.tar.gz) = 4834352
2
SHA256 (buildbot-0.9.4.tar.gz) = 068161cd9ada10b87f40117c768a37ce796ebf5e7bf08f224f4c7ded88cd7472
3
SIZE (buildbot-0.9.4.tar.gz) = 3020851
4
SHA256 (buildbot-www-0.9.4.tar.gz) = eb2f48aabee5e840aa8a4fce1f95f2fe4e2ae98045f9465d275ee5e263ae04b3
5
SIZE (buildbot-www-0.9.4.tar.gz) = 691706
(-)devel/buildbot/files/patch-buildbot-scripts-sample.cfg (+23 lines)
Line 0 Link Here
1
--- buildbot/scripts/sample.cfg~	2017-01-11 14:05:29.000000000 +0100
2
+++ buildbot/scripts/sample.cfg	2017-03-07 18:01:36.617128988 +0100
3
@@ -10,6 +10,9 @@
4
 # a shorter alias to save typing.
5
 c = BuildmasterConfig = {}
6
 
7
+####### DON'T SEND USAGE DATA TO BUILDBOT.NET
8
+c['buildbotNetUsageData'] = None
9
+
10
 ####### WORKERS
11
 
12
 # The 'workers' list defines the set of recognized workers. Each element is
13
@@ -92,8 +95,8 @@
14
 c['buildbotURL'] = "http://localhost:8010/"
15
 
16
 # minimalistic config to activate new web UI
17
-c['www'] = dict(port=8010,
18
-                plugins=dict(waterfall_view={}, console_view={}))
19
+#c['www'] = dict(port=8010,
20
+#                plugins=dict(waterfall_view={}, console_view={}))
21
 
22
 ####### DB URL
23
 
(-)devel/buildbot-console-view/Makefile (+36 lines)
Line 0 Link Here
1
# Created by: Michael Gmelin <grembo@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	buildbot-console-view
5
PORTVERSION=	0.9.4
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
9
MAINTAINER=	grembo@FreeBSD.org
10
COMMENT=	Continuous Integration Framework (Console View)
11
12
LICENSE=	GPLv2
13
14
BUILD_DEPENDS=	buildbot-pkg>=0.9.4:devel/buildbot-pkg
15
RUN_DEPENDS=	${BUILD_DEPENDS}
16
TEST_DEPENDS=	trial:devel/py-twisted \
17
		buildbot-worker>=0.9.4:devel/buildbot-worker \
18
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
19
		${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \
20
		${PYTHON_PKGNAMEPREFIX}service_identity>=16.0.0:security/py-service_identity \
21
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
22
23
USES=		python:-2.7
24
USE_PYTHON=	autoplist distutils
25
26
NO_ARCH=	yes
27
28
post-patch:
29
	@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${REINPLACE_CMD} -e \
30
		's|/usr/bin/python|${PYTHON_CMD}|g'
31
	@${FIND} ${WRKSRC} -name \*.bak -delete
32
33
do-test:
34
	@cd ${WRKSRC} && trial buildbot
35
36
.include <bsd.port.mk>
(-)devel/buildbot-console-view/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1488906561
2
SHA256 (buildbot-console-view-0.9.4.tar.gz) = 16d1ab8801439d50d712883ab155530840588d4d77ab600299ead0ef23da5bf0
3
SIZE (buildbot-console-view-0.9.4.tar.gz) = 631510
(-)devel/buildbot-console-view/pkg-descr (+6 lines)
Line 0 Link Here
1
This port is the Console View Plugin for BuildBot. For the buildmaster, install the
2
devel/buildbot port
3
4
For more information, please see: http://buildbot.net/trac
5
6
WWW: http://buildbot.net
(-)devel/buildbot-pkg/Makefile (+46 lines)
Line 0 Link Here
1
# Created by: Michael Gmelin <grembo@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	buildbot-pkg
5
PORTVERSION=	0.9.4
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
9
MAINTAINER=	grembo@FreeBSD.org
10
COMMENT=	Continuous Integration Framework (packaging)
11
12
LICENSE=	GPLv2
13
14
BUILD_DEPENDS=	buildbot>=0.9.4:devel/buildbot
15
RUN_DEPENDS=	${BUILD_DEPENDS}
16
17
#RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}twisted>=14.0.1:devel/py-twisted \
18
#		${PYTHON_PKGNAMEPREFIX}Jinja2>=2.1:devel/py-Jinja2 \
19
#		${PYTHON_PKGNAMEPREFIX}autobahn>=0.16.0:www/py-autobahn \
20
#		${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \
21
#		${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future \
22
#		${PYTHON_PKGNAMEPREFIX}pyjwt>=1.4.0:www/py-pyjwt \
23
#		${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.7:databases/py-sqlalchemy-migrate \
24
#		${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.6:databases/py-sqlalchemy10 \
25
#		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3
26
TEST_DEPENDS=	trial:devel/py-twisted \
27
		buildbot-worker>=0.9.4:devel/buildbot-worker \
28
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
29
		${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \
30
		${PYTHON_PKGNAMEPREFIX}service_identity>=16.0.0:security/py-service_identity \
31
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
32
33
USES=		python:-2.7
34
USE_PYTHON=	autoplist distutils
35
36
NO_ARCH=	yes
37
38
post-patch:
39
	@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${REINPLACE_CMD} -e \
40
		's|/usr/bin/python|${PYTHON_CMD}|g'
41
	@${FIND} ${WRKSRC} -name \*.bak -delete
42
43
do-test:
44
	@cd ${WRKSRC} && trial buildbot
45
46
.include <bsd.port.mk>
(-)devel/buildbot-pkg/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1488904370
2
SHA256 (buildbot-pkg-0.9.4.tar.gz) = 968f252f0700fbbcc6cac9f3fcf66d06bd577db5bf793fb3d7c84158f4f64325
3
SIZE (buildbot-pkg-0.9.4.tar.gz) = 3830
(-)devel/buildbot-pkg/pkg-descr (+6 lines)
Line 0 Link Here
1
This port is the Web UI part of BuildBot. For the buildmaster, install the
2
devel/buildbot port
3
4
For more information, please see: http://buildbot.net/trac
5
6
WWW: http://buildbot.net
(-)devel/buildbot-waterfall-view/Makefile (+36 lines)
Line 0 Link Here
1
# Created by: Michael Gmelin <grembo@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	buildbot-waterfall-view
5
PORTVERSION=	0.9.4
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
9
MAINTAINER=	grembo@FreeBSD.org
10
COMMENT=	Continuous Integration Framework (Waterfall View)
11
12
LICENSE=	GPLv2
13
14
BUILD_DEPENDS=	buildbot-pkg>=0.9.4:devel/buildbot-pkg
15
RUN_DEPENDS=	${BUILD_DEPENDS}
16
TEST_DEPENDS=	trial:devel/py-twisted \
17
		buildbot-worker>=0.9.4:devel/buildbot-worker \
18
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
19
		${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \
20
		${PYTHON_PKGNAMEPREFIX}service_identity>=16.0.0:security/py-service_identity \
21
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
22
23
USES=		python:-2.7
24
USE_PYTHON=	autoplist distutils
25
26
NO_ARCH=	yes
27
28
post-patch:
29
	@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${REINPLACE_CMD} -e \
30
		's|/usr/bin/python|${PYTHON_CMD}|g'
31
	@${FIND} ${WRKSRC} -name \*.bak -delete
32
33
do-test:
34
	@cd ${WRKSRC} && trial buildbot
35
36
.include <bsd.port.mk>
(-)devel/buildbot-waterfall-view/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1488906879
2
SHA256 (buildbot-waterfall-view-0.9.4.tar.gz) = 4e8e8d85a77a95fb6ec6e9b0eaa4a774f80cbc6f3a6568f8525d4c90f336b69f
3
SIZE (buildbot-waterfall-view-0.9.4.tar.gz) = 705483
(-)devel/buildbot-waterfall-view/pkg-descr (+6 lines)
Line 0 Link Here
1
This port is the Waterfall View Plugin for BuildBot. For the buildmaster, install the
2
devel/buildbot port
3
4
For more information, please see: http://buildbot.net/trac
5
6
WWW: http://buildbot.net
(-)devel/buildbot-worker/Makefile (+38 lines)
Line 0 Link Here
1
# Created by: Frederic Praca <frederic.praca@freebsd-fr.org>
2
# $FreeBSD$
3
4
PORTNAME=	buildbot-worker
5
PORTVERSION=	0.9.4
6
PORTREVISION=	3
7
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
9
10
MAINTAINER=	grembo@FreeBSD.org
11
COMMENT=	Continuous Integration Framework (Worker)
12
13
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future \
17
		${PYTHON_PKGNAMEPREFIX}twisted>=14.0.1:devel/py-twisted
18
		
19
TEST_DEPENDS=	trial:devel/py-twisted \
20
		${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock
21
22
USES=		python:-2.7
23
USE_PYTHON=	autoplist distutils
24
USE_RC_SUBR=	buildbot-worker
25
26
SUB_LIST+=	PYTHON_CMD=${PYTHON_CMD}
27
28
NO_ARCH=	yes
29
30
PLIST_FILES=	man/man1/buildbot-worker.1.gz
31
32
post-install:
33
	${INSTALL_MAN} ${WRKSRC}/docs/buildbot-worker.1 ${STAGEDIR}${MANPREFIX}/man/man1
34
35
do-test:
36
	@cd ${WRKSRC} && trial buildbot_worker.test
37
38
.include <bsd.port.mk>
(-)devel/buildbot-worker/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1488896679
2
SHA256 (buildbot-worker-0.9.4.tar.gz) = 129e0d3fa9ee34f0f227487b6d1645820d2d4853099a1b0aed56587d3acab965
3
SIZE (buildbot-worker-0.9.4.tar.gz) = 100889
(-)devel/buildbot-worker/files/buildbot-worker.in (+121 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# $FreeBSD$
4
# PROVIDE: buildbot-worker
5
# REQUIRE: LOGIN
6
# KEYWORD: shutdown
7
#
8
# Add the following lines to /etc/rc.conf to run buildbot-worker:
9
#
10
# buildbot_worker_enable (bool):	Set to "YES" to enable buildbot-worker.
11
#					Default: "NO"
12
#
13
# buildbot_worker_flags (flags):	Set extra command flags here. See buildbot-worker(8)
14
#					Default: Empty ("").
15
#
16
# buildbot_worker_uid (user):		User to run buildbot-worker as.
17
#					Default: "buildbot"
18
#
19
# buildbot_worker_gid (group):		Group to run buildbot-worker as.
20
#					Default: "buildbot"
21
#
22
# buildbot_worker_basedir (path):    	Location for buildbot-worker base directory
23
#                               	Default: %%PREFIX%%/etc/buildbot-worker
24
#
25
# buildbot_worker_profiles (str):    	Define profiles names. Space-delimited.
26
#                               	Default: Empty ("")
27
#
28
# This rc.d script supports multiple "profiles". When profiles are
29
# specified, the non-profile specific parameters become defaults.
30
#
31
# Example:
32
#
33
# buildbot_worker_profiles="foo bar"
34
#
35
# buildbot_worker_foo_enable="YES"
36
# buildbot_worker_foo_basedir="/usr/home/foo/buildbot"
37
# buildbot_worker_foo_uid="foo"
38
# buildbot_worker_foo_gid="foo"
39
#
40
# buildbot_worker_bar_enable="YES"
41
# buildbot_worker_bar_basedir="/usr/home/buildbot/"
42
43
. /etc/rc.subr
44
45
export PATH=${PATH}:%%LOCALBASE%%/bin
46
47
name=buildbot-worker
48
desc="Buildbot Buildworker"
49
rcvar=buildbot_worker_enable
50
51
load_rc_config ${name}
52
53
# These are just the defaults, they might get overriden for a specific profile.
54
eval ": \${${name}_enable:=\"NO\"}"
55
eval ": \${${name}_flags:=\"\"}"
56
eval ": \${${name}_uid:=\"buildbot\"}"
57
eval ": \${${name}_gid:=\"buildbot\"}"
58
eval ": \${${name}_basedir:=\"%%PREFIX%%/etc/${name}\"}"
59
60
command="%%PREFIX%%/bin/twistd"
61
command_interpreter="%%PYTHON_CMD%%"
62
pidfile="${buildbot_worker_basedir}/twistd.pid"
63
64
	# A specific profile is specified in the command
65
	if [ -n "$2" ]; then
66
		profile="$2"
67
		# Override defaults with profile-specific values
68
		if [ -n "${buildbot_worker_profiles}" ]; then
69
			eval buildbot_worker_enable="\${buildbot_worker_${profile}_enable:-${buildbot_worker_enable}}"
70
			eval buildbot_worker_flags="\${buildbot_worker_${profile}_flags:-${buildbot_worker_flags}}"
71
			eval buildbot_worker_uid="\${buildbot_worker_${profile}_uid:-${buildbot_worker_uid}}"
72
			eval buildbot_worker_gid="\${buildbot_worker_${profile}_gid:-${buildbot_worker_gid}}"
73
			eval buildbot_worker_basedir="\${buildbot_worker_${profile}_basedir:-${buildbot_worker_basedir}}"
74
			eval pidfile="\${buildbot_worker_${profile}_basedir:-${buildbot_worker_basedir}}/twistd.pid"
75
		else
76
			echo "%%PREFIX%%/etc/rc.d/${name}: extra argument ignored"
77
		fi
78
	# A specific profile is not in the command
79
	else
80
		# Check if any profiles are defined
81
		if [ -n "$1" -a -n "${buildbot_worker_profiles}" ]; then
82
			# Loop through them
83
			for profile in ${buildbot_worker_profiles}; do
84
				eval _enable="\${buildbot_worker_${profile}_enable}"
85
				case "${_enable:-${buildbot_worker_enable}}" in
86
				[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
87
					continue
88
					;;
89
				[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
90
					;;
91
				*)
92
					if test -z "$_enable"; then
93
						_var=buildbot_worker_enable
94
					else
95
						_var=buildbot_worker_"${profile}"_enable
96
					fi
97
					warn "Bad value" \
98
					    "'${_enable:-${buildbot_worker_enable}}'" \
99
					    "for ${_var}. " \
100
					    "Profile ${profile} skipped."
101
					continue
102
					;;
103
				esac
104
				echo "===> ${name} profile: ${profile}"
105
				if %%PREFIX%%/etc/rc.d/${name} $1 ${profile}; then
106
					success="${profile} ${success:-}"
107
				else
108
					failed="${profile} (${retcode}) ${failed:-}"
109
				fi
110
			done
111
			# Exit so that non-profile rc.d is not started when there are profiles
112
			exit 0
113
		fi
114
	fi
115
116
# run_rc_command would send ${name}_flags as parameters to $command (daemon)
117
# This ensures they are actually passed to fcgiwrap instead.
118
actual_buildbot_worker_flags="${buildbot_worker_flags}"
119
buildbot_worker_flags=""
120
command_args="--uid=${buildbot_worker_uid} --gid=${buildbot_worker_gid} --pidfile=${pidfile} --python=${buildbot_worker_basedir}/buildbot.tac ${actual_buildbot_worker_flags}"
121
run_rc_command "$1"
(-)devel/buildbot-worker/files/patch-setup.py (+12 lines)
Line 0 Link Here
1
--- setup.py.orig	2017-02-08 10:06:13.000000000 +0100
2
+++ setup.py	2017-03-07 15:28:03.225761995 +0100
3
@@ -104,9 +104,6 @@
4
         "buildbot_worker.test.unit",
5
         "buildbot_worker.test.util",
6
     ],
7
-    # mention data_files, even if empty, so install_data is called and
8
-    # VERSION gets copied
9
-    'data_files': [("buildbot_worker", [])],
10
     'cmdclass': {
11
         'install_data': our_install_data,
12
         'sdist': our_sdist
(-)devel/buildbot-worker/pkg-descr (+6 lines)
Line 0 Link Here
1
This port is the worker part of BuildBot. For the buildmaster, install the
2
devel/buildbot port
3
4
For more information, please see: http://buildbot.net/trac
5
6
WWW: http://buildbot.net
(-)devel/buildbot-www/Makefile (+40 lines)
Line 0 Link Here
1
# Created by: Michael Gmelin <grembo@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	buildbot-www
5
PORTVERSION=	0.9.4
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
9
MAINTAINER=	grembo@FreeBSD.org
10
COMMENT=	Continuous Integration Framework (WWW)
11
12
LICENSE=	GPLv2
13
14
BUILD_DEPENDS=	buildbot>=0.9.4:devel/buildbot \
15
		buildbot-pkg>=0.9.4:devel/buildbot-pkg \
16
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock
17
RUN_DEPENDS=	${BUILD_DEPENDS} \
18
		buildbot-console-view>=0.9.4:devel/buildbot-console-view \
19
		buildbot-waterfall-view>=0.9.4:devel/buildbot-waterfall-view
20
TEST_DEPENDS=	trial:devel/py-twisted \
21
		buildbot-worker>=0.9.4:devel/buildbot-worker \
22
		${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \
23
		${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3 \
24
		${PYTHON_PKGNAMEPREFIX}service_identity>=16.0.0:security/py-service_identity \
25
		${PYTHON_PKGNAMEPREFIX}txrequests>0:www/py-txrequests
26
27
USES=		python:-2.7
28
USE_PYTHON=	autoplist distutils
29
30
NO_ARCH=	yes
31
32
post-patch:
33
	@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${REINPLACE_CMD} -e \
34
		's|/usr/bin/python|${PYTHON_CMD}|g'
35
	@${FIND} ${WRKSRC} -name \*.bak -delete
36
37
do-test:
38
	@cd ${WRKSRC} && trial buildbot
39
40
.include <bsd.port.mk>
(-)devel/buildbot-www/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1488902698
2
SHA256 (buildbot-www-0.9.4.tar.gz) = eb2f48aabee5e840aa8a4fce1f95f2fe4e2ae98045f9465d275ee5e263ae04b3
3
SIZE (buildbot-www-0.9.4.tar.gz) = 691706
(-)devel/buildbot-www/pkg-descr (+6 lines)
Line 0 Link Here
1
This port is the Web UI part of BuildBot. For the buildmaster, install the
2
devel/buildbot port
3
4
For more information, please see: http://buildbot.net/trac
5
6
WWW: http://buildbot.net

Return to bug 217700