Your message dated Sun, 18 Nov 2007 22:26:10 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#451825: pspp: segfaults on FAQ 'Getting Started' test
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: pspp
Version: 0.4.0-7+b1
Severity: grave
Justification: renders package unusable
See http://www.gnu.org/software/pspp/faq.html#GettingStarted
Here's my experience:
$ sudo apt-get install pspp
[snip the usual]
$ pspp
[snip GPL msg]
GNU pspp 0.4.0 (Fri Aug 3 00:28:18 UTC 2007).
PSPP> DATA LIST LIST /name (a25) quantity (f8).
PSPP> BEGIN DATA.
> widgets 10345
> oojars 2345
> dubreys 98
> thingumies 518
> END DATA.
PSPP> LIST.
******************************************************************
You have discovered a bug in PSPP.
Please report this, by sending an email to [EMAIL PROTECTED],
explaining what you were doing when this happened, and including
a sample of your input file which caused it.
Also, please copy the following lines into your bug report:
bare_version: 0.4.0
version: GNU pspp 0.4.0
stat_version: GNU pspp 0.4.0 (Fri Aug 3 00:28:18 UTC 2007).
host_system: x86_64-pc-linux-gnu
build_system: x86_64-pc-linux-gnu
default_config_path: ~/.pspp:/etc/pspp
include_path: ./:~/.pspp/include:/usr/share/pspp
groff_font_path:
~/.pspp/font:/usr/share/pspp/font:/usr/local/lib/groff/font:/usr/lib/groff/font:/usr/local/share/groff/font:/usr/share/groff/font
locale_dir: /usr/share/locale
compiler version: 4.1.3 20070718 (prerelease) (Debian 4.1.2-14)
Diagnosis: Segmentation Violation
******************************************************************
Aborted
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages pspp depends on:
ii libc6 2.6.1-6 GNU C Library: Shared libraries
ii libgsl0ldbl 1.10-2 GNU Scientific Library (GSL) -- li
ii libplot2c2 2.5-2 The GNU plotutils libraries
pspp recommends no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
The FAQ says to put those lines into a file and execute PSPP on the
file. That works fine:
vanzandt:/tmp/pspp$ cat >myfile.syn
DATA LIST LIST /name (a25) quantity (f8).
BEGIN DATA.
widgets 10345
oojars 2345
dubreys 98
thingumies 518
END DATA.
LIST.
DESCRIPTIVES /quantity
/statistics ALL.
vanzandt:/tmp/pspp$ pspp myfile.syn
vanzandt:/tmp/pspp$ cat pspp.list
18 Nov 2007 - Page
1
GNU pspp 0.4.0 -
i486-pc-linux-gnu
1.1 DATA LIST. Reading free-form data from the command file.
+--------+------+
|Variable|Format|
#========#======#
|name |A25 |
|quantity|F8.0 |
+--------+------+
name quantity
------------------------- --------
widgets 10345
oojars 2345
dubreys 98
thingumies 518
2.1(1) DESCRIPTIVES. Valid cases = 4; cases with missing value(s) = 0.
+--------#-+--------+--------+--------+----------+--------+--------+--------+
|Variable#N| Mean |S E Mean| Std Dev| Variance |Kurtosis|S E Kurt|Skewness|
#========#=#========#========#========#==========#========#========#========#
|quantity#4|3326.500|2389.797|4779.594|22844523.0| 3.096| 2.619| 1.764|
+--------#-+--------+--------+--------+----------+--------+--------+--------+
2.1(2) DESCRIPTIVES. Valid cases = 4; cases with missing value(s) = 0.
+--------#--------+---------+-------+---------+---------+
|Variable#S E Skew| Range |Minimum| Maximum | Sum |
#========#========#=========#=======#=========#=========#
|quantity# 1.014|10247.000| 98.000|10345.000|13306.000|
+--------#--------+---------+-------+---------+---------+
- Jim Van Zandt
--- End Message ---