From owner-svn-ports-head@freebsd.org Tue Oct 10 14:19:34 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B96E4E33196; Tue, 10 Oct 2017 14:19:34 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8802983FED; Tue, 10 Oct 2017 14:19:34 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9AEJXQA015664; Tue, 10 Oct 2017 14:19:33 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9AEJXsx015663; Tue, 10 Oct 2017 14:19:33 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201710101419.v9AEJXsx015663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 10 Oct 2017 14:19:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451704 - head/ports-mgmt/synth X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/ports-mgmt/synth X-SVN-Commit-Revision: 451704 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Oct 2017 14:19:34 -0000 Author: tobik Date: Tue Oct 10 14:19:33 2017 New Revision: 451704 URL: https://svnweb.freebsd.org/changeset/ports/451704 Log: ports-mgmt/synth: Build with watchdog monitor by default Without WATCHDOG Synth will hang on the ports that stop building [1]. While here: - Rename the double negative NOWATCHDOG option to WATCHDOG [1] https://github.com/jrmarino/synth/issues/53#issuecomment-335425660 PR: 222900 Submitted by: ericturgeon.bsd@gmail.com (maintainer) MFH: 2017Q4 Modified: head/ports-mgmt/synth/Makefile Modified: head/ports-mgmt/synth/Makefile ============================================================================== --- head/ports-mgmt/synth/Makefile Tue Oct 10 14:11:47 2017 (r451703) +++ head/ports-mgmt/synth/Makefile Tue Oct 10 14:19:33 2017 (r451704) @@ -4,6 +4,7 @@ PORTNAME= synth PORTVERSION= 1.70 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= ports-mgmt MAINTAINER= ericturgeon.bsd@gmail.com @@ -23,12 +24,12 @@ GH_ACCOUNT= jrmarino GPR= ${LOCALBASE}/lib/gnat MAKE_ENV= NCURSES_LINK=static -OPTIONS_DEFINE= NOWATCHDOG -OPTIONS_DEFAULT=NOWATCHDOG +OPTIONS_DEFINE= WATCHDOG +OPTIONS_DEFAULT=WATCHDOG -NOWATCHDOG_DESC= Disable build watchdog monitor +WATCHDOG_DESC= Build with watchdog monitor -NOWATCHDOG_EXTRA_PATCHES= ${FILESDIR}/extrapatch-nowatchdog-portscan-buildcycle.adb +WATCHDOG_EXTRA_PATCHES_OFF= ${FILESDIR}/extrapatch-nowatchdog-portscan-buildcycle.adb .include