From owner-svn-ports-all@freebsd.org Fri Jan 20 03:40:55 2017 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 0013FCB8290; Fri, 20 Jan 2017 03:40:54 +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 BC6C1154E; Fri, 20 Jan 2017 03:40:54 +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 v0K3erd3001226; Fri, 20 Jan 2017 03:40:53 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0K3erEq001223; Fri, 20 Jan 2017 03:40:53 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201701200340.v0K3erEq001223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 20 Jan 2017 03:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431930 - head/ports-mgmt/synth 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.23 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: Fri, 20 Jan 2017 03:40:55 -0000 Author: marino Date: Fri Jan 20 03:40:53 2017 New Revision: 431930 URL: https://svnweb.freebsd.org/changeset/ports/431930 Log: ports-mgmt/synth: Fix open file descriptor issue for purge-distfiles cmd The purge-distfiles command reads the distinfo file of every port in the tree, but unfortunately never closed the file descriptor when the scan was complete. This resulted in 26,000+ open file descriptors, possibly exceeding the host server's FD limit. (issue #70) Modified: head/ports-mgmt/synth/Makefile head/ports-mgmt/synth/distinfo Modified: head/ports-mgmt/synth/Makefile ============================================================================== --- head/ports-mgmt/synth/Makefile Fri Jan 20 03:03:29 2017 (r431929) +++ head/ports-mgmt/synth/Makefile Fri Jan 20 03:40:53 2017 (r431930) @@ -3,6 +3,7 @@ PORTNAME= synth PORTVERSION= 1.66 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= ports-mgmt @@ -19,6 +20,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libncurs USES= ada:6 USE_GITHUB= yes GH_ACCOUNT= jrmarino +GH_TAGNAME= 4d9f5ea GPR= ${LOCALBASE}/lib/gnat MAKE_ENV= NCURSES_LINK=static Modified: head/ports-mgmt/synth/distinfo ============================================================================== --- head/ports-mgmt/synth/distinfo Fri Jan 20 03:03:29 2017 (r431929) +++ head/ports-mgmt/synth/distinfo Fri Jan 20 03:40:53 2017 (r431930) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481720544 -SHA256 (jrmarino-synth-v1.66_GH0.tar.gz) = 4edd974e5ed091a1b629e4c9ff7507923156aa749b9664ca7f727e220931bc2b -SIZE (jrmarino-synth-v1.66_GH0.tar.gz) = 137564 +TIMESTAMP = 1484861755 +SHA256 (jrmarino-synth-v1.66-4d9f5ea_GH0.tar.gz) = 7b3eba1c84b9f10db9d82b61fd29d217d17edb5da51f747b07a4daf17214b56e +SIZE (jrmarino-synth-v1.66-4d9f5ea_GH0.tar.gz) = 137605