From owner-svn-ports-head@FreeBSD.ORG Mon Jun 22 12:17:49 2015 Return-Path: Delivered-To: svn-ports-head@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCDF84D9; Mon, 22 Jun 2015 12:17:49 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from svn.freebsd.org (svn.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 A9DEF154; Mon, 22 Jun 2015 12:17:49 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MCHnJm025885; Mon, 22 Jun 2015 12:17:49 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5MCHmYR025880; Mon, 22 Jun 2015 12:17:48 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201506221217.t5MCHmYR025880@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 22 Jun 2015 12:17:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390284 - in head/math/pspp: . 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-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: Mon, 22 Jun 2015 12:17:49 -0000 Author: pi Date: Mon Jun 22 12:17:48 2015 New Revision: 390284 URL: https://svnweb.freebsd.org/changeset/ports/390284 Log: math/pspp: 0.8.4 -> 0.8.5 Release-Announcement: http://lists.gnu.org/archive/html/pspp-announce/2015-06/msg00000.html Changes: - The FREQUENCIES and CROSSTABS commands can now generate barcharts. - The FACTOR command can now perform PROMAX rotations. - SPSS/PC+ system files are now supported on GET and other commands that read SPSS system files. The pspp-convert program can now read SPSS/PC+ system files. Writing the obsolete SPSS/PC+ system file format is not supported. - SYSFILE INFO can now read SPSS/PC+ system files and SPSS portable files. - FREQUENCIES: A bug was fixed where an assertion failure occured when an empty dataset was presented. - The GRAPH command is now available. Initially it supports scatterplots and histograms. - The RND operator in expressions now supports additional operands for rounding to values other than integers and to indicate a level of rounding fuzz. The default rounding fuzz may now be controlled and displayed with SET FUZZBITS and SHOW FUZZBITS, respectively. PR: 201040 Submitted by: Carlos Jacobo Puga Medina (maintainer) Modified: head/math/pspp/Makefile head/math/pspp/distinfo head/math/pspp/files/patch-configure head/math/pspp/pkg-plist Modified: head/math/pspp/Makefile ============================================================================== --- head/math/pspp/Makefile Mon Jun 22 11:54:24 2015 (r390283) +++ head/math/pspp/Makefile Mon Jun 22 12:17:48 2015 (r390284) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pspp -PORTVERSION= 0.8.4 -PORTREVISION= 1 +PORTVERSION= 0.8.5 CATEGORIES= math MASTER_SITES= GNU Modified: head/math/pspp/distinfo ============================================================================== --- head/math/pspp/distinfo Mon Jun 22 11:54:24 2015 (r390283) +++ head/math/pspp/distinfo Mon Jun 22 12:17:48 2015 (r390284) @@ -1,2 +1,2 @@ -SHA256 (pspp-0.8.4.tar.gz) = bfcc3b0e98a5e2d44b4f3383e52c1a26b7eacf5bf419786f49fa16d00bc1c52c -SIZE (pspp-0.8.4.tar.gz) = 6338998 +SHA256 (pspp-0.8.5.tar.gz) = e7efd2ffa58882e97f719cb403d84683751c913cc2ca133b49b1c5e9bd110331 +SIZE (pspp-0.8.5.tar.gz) = 6695394 Modified: head/math/pspp/files/patch-configure ============================================================================== --- head/math/pspp/files/patch-configure Mon Jun 22 11:54:24 2015 (r390283) +++ head/math/pspp/files/patch-configure Mon Jun 22 12:17:48 2015 (r390284) @@ -1,6 +1,6 @@ ---- configure.orig 2010-04-19 10:48:13.000000000 -0300 -+++ configure 2010-04-19 10:49:58.000000000 -0300 -@@ -13167,11 +13167,9 @@ +--- configure.orig 2015-06-22 10:06:05 UTC ++++ configure +@@ -15705,8 +15705,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pspp_cv_build_exeext" >&5 $as_echo "$pspp_cv_build_exeext" >&6; } EXEEXT_FOR_BUILD="" @@ -9,7 +9,4 @@ + test x"${pspp_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${pspp_cv_build_exeext} fi -- - # Extract the first word of "perl", so it can be a program name with args. - set dummy perl; ac_word=$2 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + Modified: head/math/pspp/pkg-plist ============================================================================== --- head/math/pspp/pkg-plist Mon Jun 22 11:54:24 2015 (r390283) +++ head/math/pspp/pkg-plist Mon Jun 22 12:17:48 2015 (r390284) @@ -12,6 +12,8 @@ lib/pspp/libpspp-%%VERSION%%.so lib/pspp/libpspp-core.a lib/pspp/libpspp-core.so lib/pspp/libpspp-core-%%VERSION%%.so +man/man1/pspp.1.gz +man/man1/psppire.1.gz man/man1/pspp-convert.1.gz man/man1/pspp-dump-sav.1.gz %%GUI%%share/appdata/pspp.appdata.xml @@ -68,13 +70,16 @@ share/emacs/site-lisp/pspp-mode.el %%NLS%%share/locale/en_GB/LC_MESSAGES/pspp.mo %%NLS%%share/locale/es/LC_MESSAGES/pspp.mo %%NLS%%share/locale/fr/LC_MESSAGES/pspp.mo +%%NLS%%share/locale/gl/LC_MESSAGES/pspp.mo %%NLS%%share/locale/ja/LC_MESSAGES/pspp.mo %%NLS%%share/locale/lt/LC_MESSAGES/pspp.mo %%NLS%%share/locale/nl/LC_MESSAGES/pspp.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pspp.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/pspp.mo %%NLS%%share/locale/sl/LC_MESSAGES/pspp.mo %%NLS%%share/locale/tr/LC_MESSAGES/pspp.mo %%NLS%%share/locale/uk/LC_MESSAGES/pspp.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pspp.mo %%GUI%%%%DATADIR%%/actions/16x16/analyze-bivariate-correlation.png %%GUI%%%%DATADIR%%/actions/16x16/analyze-compare-means.png %%GUI%%%%DATADIR%%/actions/16x16/analyze-descriptive-statistics.png