From owner-svn-ports-head@freebsd.org Wed Jul 8 23:37:50 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 475CE9974F8; Wed, 8 Jul 2015 23:37: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 2BC1F1C5E; Wed, 8 Jul 2015 23:37:50 +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 t68NbolT023169; Wed, 8 Jul 2015 23:37:50 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t68NbmAS023161; Wed, 8 Jul 2015 23:37:48 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201507082337.t68NbmAS023161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Wed, 8 Jul 2015 23:37:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391607 - in head/math: . octave-forge-doctest 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: Wed, 08 Jul 2015 23:37:50 -0000 Author: stephen Date: Wed Jul 8 23:37:47 2015 New Revision: 391607 URL: https://svnweb.freebsd.org/changeset/ports/391607 Log: - New port math/octave-forge-doctest. The octave-forge package is the result of The GNU Octave Repositry project, which is intended to be a central location for custom scripts, functions and extensions for GNU Octave. contains the source for all the functions plus build and install scripts. This is doctest. The Octave-Forge Doctest package finds specially-formatted blocks of example code within documentation files. It then executes the code and confirms the output is correct. This can be useful as part of a testing framework or simply to ensure that documentation stays up-to-date during software development. Added: head/math/octave-forge-doctest/ head/math/octave-forge-doctest/Makefile (contents, props changed) head/math/octave-forge-doctest/distinfo (contents, props changed) head/math/octave-forge-doctest/pkg-descr (contents, props changed) head/math/octave-forge-doctest/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Jul 8 22:21:14 2015 (r391606) +++ head/math/Makefile Wed Jul 8 23:37:47 2015 (r391607) @@ -290,6 +290,7 @@ SUBDIR += octave-forge-dataframe SUBDIR += octave-forge-dicom SUBDIR += octave-forge-divand + SUBDIR += octave-forge-doctest SUBDIR += octave-forge-econometrics SUBDIR += octave-forge-engine SUBDIR += octave-forge-fenv Added: head/math/octave-forge-doctest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-doctest/Makefile Wed Jul 8 23:37:47 2015 (r391607) @@ -0,0 +1,26 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-doctest +PORTVERSION= 0.4.0 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${DISTNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + +.include "${.CURDIR}/../../Mk/bsd.octave.mk" + +post-build: + ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + +.include Added: head/math/octave-forge-doctest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-doctest/distinfo Wed Jul 8 23:37:47 2015 (r391607) @@ -0,0 +1,2 @@ +SHA256 (octave-forge/doctest-0.4.0.tar.gz) = ae15513020f89675efa6da2f7e16a225c3a813a8758632e8bd73ebf53a34fe85 +SIZE (octave-forge/doctest-0.4.0.tar.gz) = 15363 Added: head/math/octave-forge-doctest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-doctest/pkg-descr Wed Jul 8 23:37:47 2015 (r391607) @@ -0,0 +1,14 @@ +The octave-forge package is the result of The GNU Octave Repositry project, +which is intended to be a central location for custom scripts, functions and +extensions for GNU Octave. contains the source for all the functions plus +build and install scripts. + +This is doctest. + + The Octave-Forge Doctest package finds specially-formatted blocks of + example code within documentation files. It then executes the code and + confirms the output is correct. This can be useful as part of a testing + framework or simply to ensure that documentation stays up-to-date during + software development. + +WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-doctest/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-doctest/pkg-plist Wed Jul 8 23:37:47 2015 (r391607) @@ -0,0 +1 @@ +@comment This file intentionally left empty