From owner-svn-ports-all@freebsd.org Thu Mar 17 21:17:32 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 8FFEAAD4F44; Thu, 17 Mar 2016 21:17:32 +0000 (UTC) (envelope-from feld@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 4ADF318B2; Thu, 17 Mar 2016 21:17:32 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2HLHVjl064284; Thu, 17 Mar 2016 21:17:31 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2HLHV1B064281; Thu, 17 Mar 2016 21:17:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603172117.u2HLHV1B064281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Mar 2016 21:17:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411317 - in head/benchmarks/phoronix-test-suite: . 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: Thu, 17 Mar 2016 21:17:32 -0000 Author: feld Date: Thu Mar 17 21:17:31 2016 New Revision: 411317 URL: https://svnweb.freebsd.org/changeset/ports/411317 Log: benchmarks/phoronix-test-suite: Update to 6.2.2 - New MAINTAINER - Updated PHP dependencies - New dependency on gcc and cmake PR: 207981 Modified: head/benchmarks/phoronix-test-suite/Makefile head/benchmarks/phoronix-test-suite/distinfo head/benchmarks/phoronix-test-suite/files/patch-install-sh Modified: head/benchmarks/phoronix-test-suite/Makefile ============================================================================== --- head/benchmarks/phoronix-test-suite/Makefile Thu Mar 17 21:08:07 2016 (r411316) +++ head/benchmarks/phoronix-test-suite/Makefile Thu Mar 17 21:17:31 2016 (r411317) @@ -2,26 +2,27 @@ # $FreeBSD$ PORTNAME= phoronix-test-suite -PORTVERSION= 5.4.1 -PORTREVISION= 1 +PORTVERSION= 6.2.2 CATEGORIES= benchmarks MASTER_SITES= http://www.phoronix-test-suite.com/releases/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= luca.pizzamiglio@gmail.com COMMENT= Phoronix Benchmarking Suite LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= fpdf>0:${PORTSDIR}/print/fpdf - +USE_GCC= any USE_PHP= ctype curl dom filter gd hash json openssl pcntl posix session \ - sockets sqlite3 zip zlib + simplexml sockets sqlite3 zip zlib USE_PHP_BUILD= yes WANT_PHP_CLI= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/phoronix-test-suite +RUN_DEPENDS+= fpdf>0:${PORTSDIR}/print/fpdf +RUN_DEPENDS+= cmake:${PORTSDIR}/devel/cmake + PORTDATA= * PORTDOCS= * @@ -39,18 +40,21 @@ post-patch: @${SED} -i '' -e "s|/usr/local|${LOCALBASE}|g" \ ${WRKSRC}/phoronix-test-suite \ ${WRKSRC}/pts-core/commands/ob_test_profile_analyze.php \ + ${WRKSRC}/pts-core/pts-core.php \ + ${WRKSRC}/pts-core/objects/pts_svg_dom_gd.php \ + ${WRKSRC}/pts-core/objects/phodevi/components/phodevi_system.php \ + ${WRKSRC}/pts-core/objects/client/pts_external_dependencies.php \ + ${WRKSRC}/pts-core/objects/client/pts_client.php \ ${WRKSRC}/pts-core/external-test-dependencies/scripts/install-dragonfly-packages.sh \ - ${WRKSRC}/pts-core/external-test-dependencies/xml/dragonfly-packages.xml \ - ${WRKSRC}/pts-core/external-test-dependencies/xml/freebsd-packages.xml \ - ${WRKSRC}/pts-core/objects/bilde_renderer/bilde_renderer.php \ - ${WRKSRC}/pts-core/objects/client/pts_client.php + ${WRKSRC}/pts-core/external-test-dependencies/xml/freebsd-packages.xml @${SED} -i '' -e "s|/usr/share/fonts|${LOCALBASE}/share/fonts| ; \ s|/usr/X11/lib|${LOCALBASE}/lib|" \ - ${WRKSRC}/pts-core/objects/bilde_renderer/bilde_renderer.php + ${WRKSRC}/pts-core/objects/pts_svg_dom_gd.php @${SED} -i '' -e "/fpdf.php/s|/usr/share/php|${PREFIX}/share|" \ - ${WRKSRC}/pts-core/pts-core.php \ - ${WRKSRC}/pts-core/commands/dump_documentation.php \ - ${WRKSRC}/pts-core/commands/result_file_to_pdf.php + ${WRKSRC}/pts-core/objects/pts_pdf_template.php + #${WRKSRC}/pts-core/pts-core.php \ + #${WRKSRC}/pts-core/commands/dump_documentation.php \ + #${WRKSRC}/pts-core/commands/result_file_to_pdf.php do-install: (cd ${WRKSRC} && ${CONFIGURE_ARGS} DESTDIR="${STAGEDIR}" ./install-sh ${PREFIX}) Modified: head/benchmarks/phoronix-test-suite/distinfo ============================================================================== --- head/benchmarks/phoronix-test-suite/distinfo Thu Mar 17 21:08:07 2016 (r411316) +++ head/benchmarks/phoronix-test-suite/distinfo Thu Mar 17 21:17:31 2016 (r411317) @@ -1,2 +1,2 @@ -SHA256 (phoronix-test-suite-5.4.1.tar.gz) = 51a78780a9219acd2f382c4b76529521b538de291778c0de283d52d4ebc9abd3 -SIZE (phoronix-test-suite-5.4.1.tar.gz) = 788823 +SHA256 (phoronix-test-suite-6.2.2.tar.gz) = 78493166c8a74cdd129c3a86855e9cc6ae579b6a9f4f67dbf428ad00e3f2856e +SIZE (phoronix-test-suite-6.2.2.tar.gz) = 839022 Modified: head/benchmarks/phoronix-test-suite/files/patch-install-sh ============================================================================== --- head/benchmarks/phoronix-test-suite/files/patch-install-sh Thu Mar 17 21:08:07 2016 (r411316) +++ head/benchmarks/phoronix-test-suite/files/patch-install-sh Thu Mar 17 21:17:31 2016 (r411317) @@ -1,5 +1,5 @@ ---- install-sh.orig 2014-11-28 20:51:03.000000000 +0400 -+++ install-sh 2015-01-15 01:21:40.000000000 +0400 +--- install-sh.orig 2016-01-01 17:41:58.000000000 +0100 ++++ install-sh 2016-03-07 14:22:05.614854871 +0100 @@ -47,16 +47,21 @@ fi @@ -25,7 +25,7 @@ #mkdir -p $DESTDIR$INSTALL_PREFIX/../usr/lib/systemd/system/ #mkdir -p $DESTDIR$INSTALL_PREFIX/../etc/init/ -@@ -69,15 +74,19 @@ +@@ -69,15 +74,18 @@ cd .. rm -rf $DESTDIR$INSTALL_PREFIX/share/doc/phoronix-test-suite/man-pages/ @@ -42,14 +42,14 @@ cp pts-core/static/phoronix-test-suite.desktop $DESTDIR$INSTALL_PREFIX/share/applications/ cp pts-core/static/phoronix-test-suite-launcher.desktop $DESTDIR$INSTALL_PREFIX/share/applications/ cp pts-core/static/phoronix-test-suite.appdata.xml $DESTDIR$INSTALL_PREFIX/share/appdata/ -+fi - +- -mkdir -p $DESTDIR$INSTALL_PREFIX/../usr/lib/systemd/system/ --cp pts-core/static/*.service $DESTDIR$INSTALL_PREFIX/../usr/lib/systemd/system/ +-cp deploy/*-systemd/*.service $DESTDIR$INSTALL_PREFIX/../usr/lib/systemd/system/ ++fi # mkdir -p $DESTDIR$INSTALL_PREFIX/../etc/init/ # cp pts-core/static/upstart/*.conf $DESTDIR$INSTALL_PREFIX/../etc/init/ -@@ -92,12 +101,13 @@ +@@ -92,12 +100,13 @@ rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/static/images/openbenchmarking.png rm -f $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/static/images/%phoronix-test-suite.png @@ -62,9 +62,9 @@ +if [ -z "$WITHOUT_X11" ] +then # XDG MIME OpenBenchmarking support - if [ "X$DESTDIR" = "X" ] + if [ "X$DESTDIR" = "X" ] && which xdg-mime >/dev/null && which xdg-icon-resource >/dev/null then -@@ -112,15 +122,14 @@ +@@ -112,15 +121,14 @@ cp pts-core/static/images/openbenchmarking.png $DESTDIR$INSTALL_PREFIX/share/icons/hicolor/64x64/mimetypes/application-x-openbenchmarking.png fi