From owner-svn-ports-all@freebsd.org Sun Oct 4 01:33:50 2015 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 507B7A0E980; Sun, 4 Oct 2015 01:33:50 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 404B011A8; Sun, 4 Oct 2015 01:33:50 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t941XoeV024875; Sun, 4 Oct 2015 01:33:50 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t941XncH024873; Sun, 4 Oct 2015 01:33:49 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201510040133.t941XncH024873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 4 Oct 2015 01:33:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398561 - in head/math/octave-forge-base: . 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.20 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: Sun, 04 Oct 2015 01:33:50 -0000 Author: stephen Date: Sun Oct 4 01:33:49 2015 New Revision: 398561 URL: https://svnweb.freebsd.org/changeset/ports/398561 Log: - Add rmdir $prefix/lib/octave/packages to the end of the installation script. This is because the octave packaging process can fail to delete this directory when it becomes empty. - Update to 1.3. Submitted by: Dmitry Marakasov Modified: head/math/octave-forge-base/Makefile head/math/octave-forge-base/files/load-octave-pkg.in Modified: head/math/octave-forge-base/Makefile ============================================================================== --- head/math/octave-forge-base/Makefile Sun Oct 4 01:23:32 2015 (r398560) +++ head/math/octave-forge-base/Makefile Sun Oct 4 01:33:49 2015 (r398561) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-base -PORTVERSION= 1.2 -PORTREVISION= 6 +PORTVERSION= 1.3 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none Modified: head/math/octave-forge-base/files/load-octave-pkg.in ============================================================================== --- head/math/octave-forge-base/files/load-octave-pkg.in Sun Oct 4 01:23:32 2015 (r398560) +++ head/math/octave-forge-base/files/load-octave-pkg.in Sun Oct 4 01:33:49 2015 (r398561) @@ -240,3 +240,8 @@ foreach my $p (@ordered_list_to_install) print "load-octave-pkg: octave is installing $p.\n"; system "octave -H -q --no-site-file --eval \"pkg('install','$tardir/$p')\" > /dev/null\n"; } + +# Remove directories that may have been left behind by the octave packaging +# process. + +rmdir "$prefix/lib/octave/packages";