From owner-svn-ports-all@freebsd.org Fri Mar 4 11:30:14 2016 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 02F339DA872; Fri, 4 Mar 2016 11:30:14 +0000 (UTC) (envelope-from gahr@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 D101E915; Fri, 4 Mar 2016 11:30:13 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u24BUCKW044746; Fri, 4 Mar 2016 11:30:12 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u24BUCdM044742; Fri, 4 Mar 2016 11:30:12 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201603041130.u24BUCdM044742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 4 Mar 2016 11:30:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410099 - in head/math/yacas: . 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.21 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, 04 Mar 2016 11:30:14 -0000 Author: gahr Date: Fri Mar 4 11:30:12 2016 New Revision: 410099 URL: https://svnweb.freebsd.org/changeset/ports/410099 Log: math/yacas: update to 1.4.0, take back maintainership Announcement: http://www.yacas.org/release_1_4_0/ Deleted: head/math/yacas/files/ Modified: head/math/yacas/Makefile head/math/yacas/distinfo head/math/yacas/pkg-descr head/math/yacas/pkg-plist Modified: head/math/yacas/Makefile ============================================================================== --- head/math/yacas/Makefile Fri Mar 4 11:12:49 2016 (r410098) +++ head/math/yacas/Makefile Fri Mar 4 11:30:12 2016 (r410099) @@ -2,30 +2,22 @@ # $FreeBSD$ PORTNAME= yacas -PORTVERSION= 1.3.6 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= math -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source/${PORTVERSION:R}/ +DISTVERSIONPREFIX= v -MAINTAINER= ports@FreeBSD.org +MAINTAINER= gahr@FreeBSD.org COMMENT= Yet Another Computer Algebra System LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= compiler:c++11-lib libtool -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} -INSTALL_TARGET= install-strip -USE_LDCONFIG= yes - -PORTDOCS= * - -OPTIONS_DEFINE= DOCS +TEST_DEPENDS= bash:${PORTSDIR}/shells/bash -DOCS_USES= perl5 -DOCS_USE= perl5=build -DOCS_CONFIGURE_ENABLE= html-doc +USES= cmake:outsource compiler:c++11-lib +USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= grzegorzmazur .include @@ -34,17 +26,13 @@ CPPFLAGS+= -D_GLIBCXX_USE_C99 .endif post-patch: - @${REINPLACE_CMD} -e \ - 's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/src/yacasmain.cpp # Can't use USES=shebangfix here, cause the path appears several # times in the file. @${REINPLACE_CMD} -e \ 's| /bin/bash| ${LOCALBASE}/bin/bash|g' \ ${WRKSRC}/tests/test-yacas -regression-test: build -# This requires bash. I don't add it as a dependency to the port, as -# it's not needed for the general use. - @(cd ${WRKSRC} && ${DO_MAKE_BUILD} check) +do-test: + cd ${BUILD_WRKSRC} && ${MAKE} test .include Modified: head/math/yacas/distinfo ============================================================================== --- head/math/yacas/distinfo Fri Mar 4 11:12:49 2016 (r410098) +++ head/math/yacas/distinfo Fri Mar 4 11:30:12 2016 (r410099) @@ -1,2 +1,2 @@ -SHA256 (yacas-1.3.6.tar.gz) = c59a0456439833dfce3e5660f848b45c5560621a70e0ce4f4ec69718d24b3638 -SIZE (yacas-1.3.6.tar.gz) = 1585826 +SHA256 (grzegorzmazur-yacas-v1.4.0_GH0.tar.gz) = 3c39c2cb98889a30b5a82413d233c0b0a25892d4740f1fb93b99e44ecbb4c08b +SIZE (grzegorzmazur-yacas-v1.4.0_GH0.tar.gz) = 2032216 Modified: head/math/yacas/pkg-descr ============================================================================== --- head/math/yacas/pkg-descr Fri Mar 4 11:12:49 2016 (r410098) +++ head/math/yacas/pkg-descr Fri Mar 4 11:30:12 2016 (r410099) @@ -7,4 +7,4 @@ arbitrary precision arithmetic (although the library "libgmp3") and is able to execute symbolic manipulations on various mathematical objects by following user-defined rules. -WWW: http://yacas.sourceforge.net/ +WWW: http://www.yacas.org/ Modified: head/math/yacas/pkg-plist ============================================================================== --- head/math/yacas/pkg-plist Fri Mar 4 11:12:49 2016 (r410098) +++ head/math/yacas/pkg-plist Fri Mar 4 11:30:12 2016 (r410099) @@ -1,10 +1,10 @@ bin/yacas -bin/ytxt2tex include/yacas/GPL_stuff.h include/yacas/anumber.h include/yacas/anumber.inl include/yacas/arggetter.h include/yacas/arrayclass.h +include/yacas/associationclass.h include/yacas/choices.h include/yacas/commandline.h include/yacas/core_yacasmain.h @@ -17,7 +17,6 @@ include/yacas/genericobject.h include/yacas/genericstructs.h include/yacas/infixparser.h include/yacas/lispatom.h -include/yacas/lispcleanupstack.h include/yacas/lispenvironment.h include/yacas/lisperror.h include/yacas/lispeval.h @@ -45,11 +44,17 @@ include/yacas/standard.h include/yacas/standard.inl include/yacas/stdcommandline.h include/yacas/stdfileio.h +include/yacas/string_utils.h include/yacas/stringio.h include/yacas/stubs.h include/yacas/substitute.h include/yacas/tokenizer.h include/yacas/unixcommandline.h +include/yacas/utf8.h +include/yacas/utf8/checked.h +include/yacas/utf8/core.h +include/yacas/utf8/unchecked.h +include/yacas/win32commandline.h include/yacas/xmltokenizer.h include/yacas/yacas.h include/yacas/yacas_version.h @@ -57,12 +62,8 @@ include/yacas/yacasbase.h include/yacas/yacasprivate.h lib/libyacas.a lib/libyacas.so -lib/libyacas.so.1 lib/libyacas.so.1.0.0 -%%DATADIR%%/documentation/hints -%%DATADIR%%/manmake/book2TeX.sh -%%DATADIR%%/manmake/book2TeX.ys -%%DATADIR%%/manmake/txt2yacasdoc.pl +%%DATADIR%%/scripts/Makefile.am %%DATADIR%%/scripts/array.rep/code.ys %%DATADIR%%/scripts/array.rep/code.ys.def %%DATADIR%%/scripts/assoc.rep/code.ys @@ -81,7 +82,6 @@ lib/libyacas.so.1.0.0 %%DATADIR%%/scripts/constants.rep/om.ys %%DATADIR%%/scripts/controlflow.rep/code.ys %%DATADIR%%/scripts/controlflow.rep/code.ys.def -%%DATADIR%%/scripts/corefunctions.ys %%DATADIR%%/scripts/debug.rep/code.ys %%DATADIR%%/scripts/debug.rep/code.ys.def %%DATADIR%%/scripts/deffunc.rep/code.ys @@ -136,6 +136,7 @@ lib/libyacas.so.1.0.0 %%DATADIR%%/scripts/logic.rep/code.ys %%DATADIR%%/scripts/logic.rep/code.ys.def %%DATADIR%%/scripts/logic.rep/om.ys +%%DATADIR%%/scripts/maketest %%DATADIR%%/scripts/multivar.rep/code.ys %%DATADIR%%/scripts/multivar.rep/code.ys.def %%DATADIR%%/scripts/multivar.rep/makemulti.ys @@ -144,6 +145,8 @@ lib/libyacas.so.1.0.0 %%DATADIR%%/scripts/multivar.rep/sparsetree.ys.def %%DATADIR%%/scripts/newly.rep/code.ys %%DATADIR%%/scripts/newly.rep/code.ys.def +%%DATADIR%%/scripts/nintegrate.rep/code.ys +%%DATADIR%%/scripts/nintegrate.rep/code.ys.def %%DATADIR%%/scripts/numbers.rep/GaussianIntegers.ys %%DATADIR%%/scripts/numbers.rep/GaussianIntegers.ys.def %%DATADIR%%/scripts/numbers.rep/NumberTheory.ys @@ -184,6 +187,8 @@ lib/libyacas.so.1.0.0 %%DATADIR%%/scripts/radsimp.rep/code.ys.def %%DATADIR%%/scripts/random.rep/code.ys %%DATADIR%%/scripts/random.rep/code.ys.def +%%DATADIR%%/scripts/rational.rep/code.ys +%%DATADIR%%/scripts/rational.rep/code.ys.def %%DATADIR%%/scripts/simplify.rep/code.ys %%DATADIR%%/scripts/simplify.rep/code.ys.def %%DATADIR%%/scripts/simplify.rep/factorial.ys