svn commit: r445207 - in head/devel: buildbot-worker/files py-twisted152
Alan Somers
asomers at FreeBSD.org
Fri Jul 7 03:57:41 UTC 2017
Author: asomers (src committer)
Date: Fri Jul 7 03:57:39 2017
New Revision: 445207
URL: https://svnweb.freebsd.org/changeset/ports/445207
Log:
Fix changes unintentionally included in 445206
devel/py-twisted152/Makefile
Revert all changes to this file
Pointy-hat-to: asomers
devel/buildbot-workers/Makefile
devel/buildbot-workers/files/buildbot-worker.in
Revert a 1-line change that I never intended to commit. However,
leave in place the PORTREVISION bump and the other change to the RC
script, which I did intend to commit, but in a separate revision,
with this change message:
devel/buildbot-worker rc script fails to start worker
Running "service buildbot-worker start" on FreeBSD 11.0-RELEASE fails with
the error "warn 'run_rc_command: cannot run -worker_program". The reason is
because `name` contains a hyphen. This causes the following line in rc.subr
to expand incorrectly:
command=${_override_command:-$command}
The solution is to change name to "buildbot_worker".
PR: 219207
Reviewed by: grembo
Approved by: grembo (maintainer)
Modified:
head/devel/buildbot-worker/files/buildbot-worker.in
head/devel/py-twisted152/Makefile
Modified: head/devel/buildbot-worker/files/buildbot-worker.in
==============================================================================
--- head/devel/buildbot-worker/files/buildbot-worker.in Fri Jul 7 03:47:38 2017 (r445206)
+++ head/devel/buildbot-worker/files/buildbot-worker.in Fri Jul 7 03:57:39 2017 (r445207)
@@ -1,7 +1,7 @@
#!/bin/sh
# $FreeBSD$
-# PROVIDE: buildbot_worker
+# PROVIDE: buildbot-worker
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
Modified: head/devel/py-twisted152/Makefile
==============================================================================
--- head/devel/py-twisted152/Makefile Fri Jul 7 03:47:38 2017 (r445206)
+++ head/devel/py-twisted152/Makefile Fri Jul 7 03:57:39 2017 (r445207)
@@ -12,9 +12,6 @@ COMMENT= Metaport of Twisted, an event-driven networki
LICENSE= MIT
-DEPRECATED= Deprecated by upstream years ago. Use "USES=twisted" instead
-EXPIRATION_DATE=2017-08-07
-
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twistedCore>=${PORTVERSION}:devel/py-twistedCore
USES= metaport python:2
More information about the svn-ports-head
mailing list