Date: Fri, 7 Jul 2017 03:57:39 +0000 (UTC) From: Alan Somers <asomers@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445207 - in head/devel: buildbot-worker/files py-twisted152 Message-ID: <201707070357.v673vd6V078082@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707070357.v673vd6V078082>