From owner-svn-ports-head@freebsd.org Thu Aug 6 20:55:13 2015 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 6B5299B5143; Thu, 6 Aug 2015 20:55:13 +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 4202C149E; Thu, 6 Aug 2015 20:55:13 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t76KtDVQ026809; Thu, 6 Aug 2015 20:55:13 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t76KtCFx026806; Thu, 6 Aug 2015 20:55:12 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201508062055.t76KtCFx026806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 6 Aug 2015 20:55:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393673 - head/math/octave-forge-interval X-SVN-Group: ports-head 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.20 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: Thu, 06 Aug 2015 20:55:13 -0000 Author: stephen Date: Thu Aug 6 20:55:11 2015 New Revision: 393673 URL: https://svnweb.freebsd.org/changeset/ports/393673 Log: - Remove uses=compiler:c++11-lang. - Remove broken for FreeBSD < 10. Will reinstate if errors result. - Update pkg-descr according to upstream info. Submitted by: Oliver Heimlich Modified: head/math/octave-forge-interval/Makefile head/math/octave-forge-interval/pkg-descr Modified: head/math/octave-forge-interval/Makefile ============================================================================== --- head/math/octave-forge-interval/Makefile Thu Aug 6 20:41:07 2015 (r393672) +++ head/math/octave-forge-interval/Makefile Thu Aug 6 20:55:11 2015 (r393673) @@ -13,8 +13,6 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYIN LIB_DEPENDS= libmpfr.so:${PORTSDIR}/math/mpfr -USES= compiler:c++11-lang - # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${DISTNAME} @@ -27,10 +25,4 @@ post-build: ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} -.include - -.if ${OSVERSION} < 1000000 || ${ARCH} == "i386" -BROKEN= Doesn't build on FreeBSD 9 nor i386 -.endif - -.include +.include Modified: head/math/octave-forge-interval/pkg-descr ============================================================================== --- head/math/octave-forge-interval/pkg-descr Thu Aug 6 20:41:07 2015 (r393672) +++ head/math/octave-forge-interval/pkg-descr Thu Aug 6 20:55:11 2015 (r393673) @@ -5,8 +5,13 @@ build and install scripts. This is interval. - The package provides data types for verified computing. The implementation - of intervals in inf-sup format is based on interval boundaries represented - by binary64 numbers and is standard conforming to IEEE 1788. + The interval package for real-valued interval arithmetic allows to evaluate + functions over subsets of their domain. All results are verified, because + interval computations automatically keep track of any errors. These + concepts can be used to handle uncertainties, estimate arithmetic errors + and produce reliable results. Also it can be applied to computer-assisted + proofs, constraint programming, and verified computing. The implementation + is based on interval boundaries represented by binary64 numbers and is + conforming to IEEE Std 1788-2015, IEEE standard for interval arithmetic. WWW: http://octave.sourceforge.net/