Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Mar 2016 10:09:41 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
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
Message-ID:  <201603281009.u2SA9f6a014963@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603281009.u2SA9f6a014963>