From owner-svn-ports-all@freebsd.org Mon Mar 28 10:09:42 2016 Return-Path: Delivered-To: svn-ports-all@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 CBE07AE08B8; Mon, 28 Mar 2016 10:09:42 +0000 (UTC) (envelope-from marino@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 8E5BA1FAC; Mon, 28 Mar 2016 10:09:42 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2SA9fZQ014965; Mon, 28 Mar 2016 10:09:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2SA9f6a014963; Mon, 28 Mar 2016 10:09:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201603281009.u2SA9f6a014963@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 28 Mar 2016 10:09:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412036 - in head/ports-mgmt/synth: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Mar 2016 10:09:42 -0000 Author: marino Date: Mon Mar 28 10:09:41 2016 New Revision: 412036 URL: https://svnweb.freebsd.org/changeset/ports/412036 Log: ports-mgmt/synth: Fix regression The empty-queue check was supposed to improve pre-fetch behavior, but it negatively affected other use modes, so remove the check for now. Added: head/ports-mgmt/synth/files/ head/ports-mgmt/synth/files/patch-src_portscan-pilot.adb (contents, props changed) Modified: head/ports-mgmt/synth/Makefile Modified: head/ports-mgmt/synth/Makefile ============================================================================== --- head/ports-mgmt/synth/Makefile Mon Mar 28 09:50:27 2016 (r412035) +++ head/ports-mgmt/synth/Makefile Mon Mar 28 10:09:41 2016 (r412036) @@ -4,6 +4,7 @@ PORTNAME= synth PORTVERSION= 1.33 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= ports-mgmt MAINTAINER= marino@FreeBSD.org Added: head/ports-mgmt/synth/files/patch-src_portscan-pilot.adb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/synth/files/patch-src_portscan-pilot.adb Mon Mar 28 10:09:41 2016 (r412036) @@ -0,0 +1,12 @@ +--- src/portscan-pilot.adb.orig 2016-03-27 14:03:52 UTC ++++ src/portscan-pilot.adb +@@ -275,9 +275,6 @@ package body PortScan.Pilot is + (repository => JT.USS (PM.configuration.dir_repository), + dry_run => dry_run, suppress_remote => block_remote); + bld_counter := (OPS.queue_length, 0, 0, 0, 0); +- if PKG.queue_is_empty then +- return False; +- end if; + if dry_run then + return True; + end if;