1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
|
pspp (2.0.1-1) unstable; urgency=medium
* new upstream release 2.0.1
* debian: removed patches
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 24 Mar 2024 11:27:57 +0100
pspp (2.0.0-3) unstable; urgency=medium
* skip test 1564 "journal enabled by default interactively"
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Thu, 04 Jan 2024 15:46:40 +0100
pspp (2.0.0-2) unstable; urgency=medium
* Skip test 1602 "interactive output appears immediately"
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Thu, 04 Jan 2024 10:44:04 +0100
pspp (2.0.0-1) unstable; urgency=medium
* new upstream release 2.0.0
* The CTABLES command is now implemented.
* FREQUENCIES now honors the LAYERED setting on SPLIT FILE.
* AGGREGATE:
- New aggregation functions CGT, CLT, CIN, and COUT.
- Break variables are now optional.
* ADD FILES, MATCH FILES, and UPDATE now allow string variables with
the same name to have different widths.
* CROSSTABS now calculates significance of Pearson and Spearman
correlations in symmetric measures.
* DISPLAY MACROS is now implemented.
* SET SUMMARY is now implemented.
* SHOW ENVIRONMENT is now implemented.
* Removed the MODIFY VARS command, which is not in SPSS.
* Building from a Git repository, which previously required GIMP, now
requires rsvg-convert from librsvg2 instead.
* The pspp-dump-sav program is no longer installed by default.
* Improved the search options in the syntax editor.
* Localisations for the ar (Arabic) and ta (Tamil) locales have been
added. Other translations have been updated.
* Journaling is now enabled by default when PSPP or PSPPIRE is
started interactively. In PSPPIRE, use Edit|Options to override
the default.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Wed, 03 Jan 2024 17:50:46 +0100
pspp (1.6.2-2) unstable; urgency=medium
* Debian: Switch off perl module FTBS on armhf
Closes: #1030827
* Debian: Update policy to 4.6.2
* Disable install of pspp-dump-sav (Patch from upstream)
Closes: #1019597
Closes: #1019598
* Switch gtksourceview version 3 to 4
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 12 Feb 2023 20:31:13 +0100
pspp (1.6.2-1) unstable; urgency=medium
* new upstream release 1.6.2
* renamed application id from org.fsf.pspp to org.gnu.pspp
* debian: removed perl memory module patch
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sat, 02 Jul 2022 15:17:50 +0200
pspp (1.6.0-1) unstable; urgency=medium
* new upstream release 1.6.0
* updated translations
* New command SHOW SYSTEM to print system information useful in bug reports.
* debian: add perl memory module patch for regression
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 17 Jun 2022 14:47:06 +0200
pspp (1.5.5-1) unstable; urgency=medium
* New upstream release 1.5.5
* updated translations
* some bugfixes including the fix for the regression failure
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 11 Apr 2022 09:08:17 +0200
pspp (1.5.4-3) unstable; urgency=medium
* Add a patch to fix https://savannah.gnu.org/bugs/index.php?62267
Regression failure on some architectures
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 10 Apr 2022 21:31:26 +0200
pspp (1.5.4-2) unstable; urgency=medium
* debian: modify parallel build to avoid races
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 08 Apr 2022 08:45:14 +0200
pspp (1.5.4-1) unstable; urgency=medium
* New upstream version 1.5.4
* In the Kruskal-Wallis test, a misleading result could occur
if the lower bound specified by the user was in fact higher
than the upper bound specified. This has been fixed.
* The DEFINE, MATRIX, MCONVERT, and MATRIX DATA commands are now
implemented.
* An error in the displayed signficance of oneway anova
contrasts tests has been corrected.
* Added Drag-N-Drop in output view.
* The Explore GUI dialog supports the "Plots" subdialog. Boxplots, Q-Q Plots
and Spreadlevel plots are now also available via the GUI.
* The graphical user interface for importing spreadsheets has been improved.
The new interface provides the user with a preview of the data to be imported
and interactive methods to select the desired ranges.
* The user manual, in its Info and HTML versions, now includes
graphical output examples and screenshots.
* Several bugfixes. (Closes: #1002473)
* debian: Removed Ben as uploader. (Closes: #995789)
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Thu, 07 Apr 2022 21:56:26 +0200
pspp (1.4.1-1) unstable; urgency=medium
* New upstream release 1.4.1
* Bug fixes.
* Translation updates.
* HTML output is now HTML5 instead of HTML4.0 Transitional.
* The HOST command has been reimplemented. It now supports TIMELIMIT.
* The build is now reproducible
* debian: add blhc hint
* debian: remove debian patches which are now included upstream
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 06 Sep 2020 09:37:13 +0200
pspp (1.4.0-3) unstable; urgency=medium
* added patch barchart-Sort-the-categories-before-displaying-the.patch
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Tue, 18 Aug 2020 13:26:26 +0200
pspp (1.4.0-2) unstable; urgency=medium
* added patch fixed range check in parse_record_placement to fix
regression failure on i386 architectures
* added patch limit-the-number-of-variables-in-barchart.patch
to fix regression failure on i386 systems
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 17 Aug 2020 21:48:27 +0200
pspp (1.4.0-1) unstable; urgency=medium
* New upstream release 1.4.0
* The file pspp-mode.el (the pspp-mode for Emacs) is no longer distributed
with PSPP. Instead, it can be installed directly in emacs and is available
from https://elpa.gnu.org/packages/pspp-mode.html
* The Find dialog box, when searching for numeric values, will match only
to the precision of the variable's print format. This avoids behaviour
which is surprising to some users.
* PSPP now supports the SPSS viewer (.spv) format that SPSS 16 and later
use to save the contents of its output editor:
- PSPP and PSPPIRE can write output to .spv files.
- The new utility pspp-output can convert .spv files to other formats.
- The pspp-convert utility can now decrypt encrypted .spv files. The
encrypted viewer file format is unacceptably insecure, so to
discourage its use PSPP and PSPPIRE do not directly read or write
this format.
* A bug where the Data|Select Cases|Random Sample menu would generate
invalid syntax has been fixed.
* FREQUENCIES will emit a warning if one or more weight values are missing.
* Plain text output is no longer divided into pages, since it is now
rarely printed on paper.
* pspp-convert improvements:
- New "-a", "-l", "--password-list" options to search for an
encrypted file's password.
- New "--keep" and "--drop" options to output only selected variables.
- New "--recode", "--no-var-name", "--labels", "--print-formats",
"--decimal", "--delimiter", and "--qualifier" options to control
CSV output.
* Improvements to SAVE DATA COLLECTION support for MDD files.
* Bug fix for CVE-2018-20230.
* The /RENAME subcommand in SAVE TRANSLATE et al. has been extended
to support the syntax also accepted by other software.
* The EXAMINE command will now perform the Shapiro-Wilk test when
one or more plots are requested.
* The REGRESSION command now supports the /STATISTICS=TOL option which
outputs tolerance and variance inflation factor metrics for the data.
* The QUICK CLUSTER command now supports the /SAVE option which can
be used to save the cases' cluster membership and/or their distance
from the cluster centre to the active file.
* The MEANS command has been re-implemented.
* The GUI now has a sub-dialog for post-hoc tests of the oneway
anova test.
* Gtk+3.22.0 or later must now be used when building.
* GRAPH: Categorical barcharts displaying percentages now show the
sub-category as a percentage of the primary category instead of the
total.
* The Syntax Window now has a Find function to perform simple text
searching.
* AUTORECODE:
- The PRINT subcommand is now implemented.
- Many bug fixes.
* Regression now works with python3
Closes: #937328
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 16 Aug 2020 16:20:13 +0200
pspp (1.2.0-6) unstable; urgency=low
[ Debian Janitor ]
* Set upstream metadata fields: Repository.
* Drop unnecessary dependency on dh-autoreconf.
[ Friedrich Beckmann ]
* add patch widget.patch to fix FTBFS
Closes: #966858
* add patch delimiter.patch to fix regression failure
see: https://savannah.gnu.org/bugs/?58943
* remove elpa - pspp-mode.el moved to elpa repository
* moved from python to python2 package name
Closes: #967197
* change maintainer to Beckmann - received no emails
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 14 Aug 2020 06:29:56 +0200
pspp (1.2.0-5) unstable; urgency=medium
* set compiler optimization to -O2 for ppc64el
Closes: #942609
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 24 May 2020 15:02:21 +0200
pspp (1.2.0-4) unstable; urgency=medium
[ Andreas Tille ]
* Do not Build-Depend texlive-generic-recommended
Closes: #932951
* d/rules: remove old boilerplate
* hardening=+all
* sys-file-writer: Remove assertions based on file position.
Fixes: CVE-2019-9211
Closes: #923417
[ Friedrich Beckmann ]
* d/upstream/metadata - added bug link
* removed postgresql due to license issue: #924937
* d/copyright: added GFDL and CC-BY-SA license
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 22 May 2020 14:09:07 +0200
pspp (1.2.0-3) unstable; urgency=medium
[ Andreas Tille ]
* Team upload.
* Take over package into Debian Science team maintenance
[ Ben Pfaff ]
* Issue error message for too-large extension records. (CVE-2018-20230)
Closes: #916902
-- Andreas Tille <tille@debian.org> Tue, 23 Apr 2019 13:59:03 +0200
pspp (1.2.0-2) unstable; urgency=low
* Fixed regression error in segmentation
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 26 Nov 2018 08:50:21 +0200
pspp (1.2.0-1) unstable; urgency=low
* New upstream release 1.2.0
* New experimental command SAVE DATA COLLECTION to save MDD files.
* MTIME and YMDHMS variable formats now supported.
* Build changes:
- zlib is now a required dependency. (Previously it was optional.)
- Gtk+3.18.0 or later must now be used when building.
- The code implementing the sheet rendering has been removed. Instead we
use a third party library: spread-sheet-widget.
* The "NOMISSING" keyword when generating syntax for piecharts in the
frequencies command was omitted. This has been corrected.
* Regresssion fixed.
Closes: #909857
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Tue, 6 Nov 2018 08:50:21 +0200
pspp (1.0.1-1) unstable; urgency=low
* New upstream release 1.0.1
* Bugfixes for CVE-2017-12958,
CVE-2017-12959,
CVE-2017-12960 and
CVE-2017-12961.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 27 Aug 2017 08:50:21 +0200
pspp (1.0.0-1) unstable; urgency=low
* New upstream release 1.0.0
* The REGRESSION command now has a /ORIGIN subcommand to perform
regression through the origin.
* The FACTOR command can now analyse matrix files prepared with MATRIX DATA.
* The FACTOR command can now print the anti-image matrices.
* The MATRIX DATA command has been added.
* Some inappropriate properties in selection dialogs have been corrected.
* A bug which could cause the HTML driver to go into a tight loop
has been fixed.
* An error in the FREQUENCIES procedure, where the word "Mean" was
printed when "Variance" was appropriate has been fixed.
* The ncurses library is no longer required or used.
* A bug where the Mann-Whitney test would give misleading results
if run on multiple variables and MISSING=ANALAYSIS was specified
has been fixed.
* Gtk+3.14.5 or later must now be used when building.
* Graphical user interface changes:
** There is a new menu: Edit|Options
** The Non Parametric Statistics Menu
has a new item: "K Independent Samples".
** Dialog boxes can now be canceled using the <Escape> key.
* The AUTORECODE command now accepts an optional / before INTO.
* The short form of the VECTOR command can now create string variables.
* Bug fixes, including fixes for CVE-2017-10791 and CVE-2017-10792.
Closes: #866890
* Updated gnulib version which can be compiled with GCC7
Closes: #853623
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 13 Aug 2017 08:50:21 +0200
pspp (0.10.2-2) unstable; urgency=low
* fixes a regression bug where the initialization of the psql server fails
Fixed with patch psql-regression.patch
Closes: #850457
Closes: #863933
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 26 Jun 2017 15:50:21 +0200
pspp (0.10.2-1) unstable; urgency=low
* New upstream release 0.10.2
* CROSSTABS: Implement COUNT subcommand to round case or cell weights.
* scatterplot: changed colorscheme - first color is black
* help: start html help via browser / make it work on osx and windows
* several bug fixes
* reintroduced hurd-i386 postgresql special treatment
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Wed, 14 Sep 2016 12:16:21 +0200
pspp (0.10.1-2) unstable; urgency=low
* Removed armhf special gcc optimization option in rules
* Removed hurd-i386 postgresql special treatment in control
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 04 Apr 2016 12:39:28 +0200
pspp (0.10.1-1) unstable; urgency=low
* New upstream releae 0.10.1
* fixed a bug where certain dialog boxes could not be properly populated
* various commands hardened against invalid syntax
* translation updates
* removed debian patch formatstring.patch which is included upstream
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 03 Apr 2016 10:33:42 +0200
pspp (0.10.0-1) unstable; urgency=low
* New upstream release 0.10.0
* Migrated from gtk2 to gtk3
* Graphs menu for the GRAPH command
* pspp-convert can convert encrypted syntax files
* New commands: SORT VARIABLES, REPLACE, STRUNC, MEDIAN
* QUICK CLUSTER with /PRINT subcommand
* Debian unstable now uses automake v15. Removed texi-vers.patch as the fix is
contained in automake. Closes: Bug#759102
* Removed render.patch as this is fixed upstream.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 28 Mar 2016 12:36:08 +0200
pspp (0.8.5-5) unstable; urgency=low
* changed libgsl dependency from libgsl0-dev to libgsl-dev (version 2) to fix
debian GSL transition bug. Closes: Bug#804498.
* removed pspp.lintian override postrm
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 13 Nov 2015 08:06:00 +0200
pspp (0.8.5-4) unstable; urgency=low
* added emacsen-compat file to install pspp emacs mode without error
messages
* added emacsen-common as dependency as required by debian-emacs-policy
* removed debian/pspp.manpages as all manpages are now installed directly
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Fri, 26 Jun 2015 18:06:00 +0200
pspp (0.8.5-3) unstable; urgency=low
* debian/patches/render.patch modified to fix the regression failure
on s390x and ppc64. Also the pdf export bug via gui described in
https://savannah.gnu.org/bugs/?45272 is fixed.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Wed, 24 Jun 2015 13:06:00 +0200
pspp (0.8.5-2) unstable; urgency=low
* debian/patches/render.patch added to fix problem
https://savannah.gnu.org/bugs/?45272 which is maybe
the reason for the s390 regression failure
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 22 Jun 2015 13:06:00 +0200
pspp (0.8.5-1) unstable; urgency=low
* New upstream release 0.8.5
* 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.
* patch debian/patches/render-test.patch removed (fixed)
* patch debian/patches/fix_paths_in_manpage removed (fixed)
* debian/patches/texi-vers.patch is still applied because the fixed
autotools version is not in debian yet
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sat, 20 Jun 2015 16:35:44 +0200
pspp (0.8.4-1) unstable; urgency=low
* New upstream release 0.8.4
* Formatting of SYSFILE INFO output was made easier to read.
* Bug fixes in upstream, including the following notable ones:
* FREQUENCIES works properly for string variables. (This bug was
introduced in 0.8.2.)
* CROSSTABS now correctly computes all of the measures that it
offers. Some measures have been removed because they were not
computed correctly.
* The NPAR TESTS calculation of significance for the RUNS
subcommand has been corrected.
* Planned comparisons in ONEWAY ANOVA now correctly handle negative
T-values.
* Conformance fixes to Open Document output format.
* In the debian package the following patches are removed
* debian/patches/test1039fix.patch removed because it is fixed upstream
fixes https://bugs.debian.org/720865
* debian/patches/texinfo.diff removed because it is fixed upstream
fixes https://bugs.debian.org/758539
* debian/patches/u8istream.patch removed because it is fixed upstream
fixes https://bugs.debian.org/760841
* The following patches are still applied
* debian/patches/texi-vers.patch as this is a workaround for a bug in automake
see https://bugs.debian.org/759102
* debian/patches/fix_paths_in_manpage
this is an adaption to debian
* The following NEW patch is introduced
* debian/patches/render-test.patch fixes a security error which is shown due
to the debian compiler warning settings. This stops the build in debian.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Sun, 28 Sep 2014 20:35:44 +0200
pspp (0.8.3-6) unstable; urgency=low
* debian/patches/texi-vers.patch: This patch was removed due to a mistake
in the previous version and is now back. So this is bugfix.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Wed, 10 Sep 2014 20:35:44 +0200
pspp (0.8.3-5) unstable; urgency=low
* debian/patches/u8istream.patch: This patch fixes a bug which
showed up in regression on kfreebsd. The bug description is here:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760841
The bug is already fixed upstream.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Tue, 09 Sep 2014 20:48:44 +0200
pspp (0.8.3-4) unstable; urgency=low
* debian/source/options: added extend-diff-ignore such that debuild
can be used several times and is not disturbed by differences between
the source package and modified files like doc/pspp.xml
* debian/patches/texi-vers.patch: This patch is a workaround for
the parallel build problem due to vti.tmp file. The problem is
described here: https://savannah.gnu.org/bugs/?43029
* debian/rules: parallel build is enabled
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Wed, 20 Aug 2014 17:30:44 +0200
pspp (0.8.3-3) unstable; urgency=low
* debian/rules: added autoreconf as proposed by Breno Leitao
see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758539
for the ppc64el architecture
* debian/patches/texinfo.diff: fix problem with updated texinfo.tex
When using autoreconf, the build-aux/texinfo.tex is updated. Fixed
a problem with statistics.texi compatibility.
* debian/rules: fixed testsuite.log dump to logfile
The testsuite was run twice. I moved it to dh_auto_test section
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Tue, 19 Aug 2014 17:30:44 +0200
pspp (0.8.3-2) unstable; urgency=low
* debian/rules: Fixed bug in previous update
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Mon, 18 Aug 2014 09:30:44 +0200
pspp (0.8.3-1.3) unstable; urgency=low
* debian/rules: Disable compiler optimization on armhf because tests
that use the MEANS procedure segfault with a null pointer dereference
with GCC 4.9.1, in a way that doesn't look like a program bug.
-- Ben Pfaff <pfaffben@debian.org> Sun, 17 Aug 2014 12:26:12 -0700
pspp (0.8.3-1.2) unstable; urgency=low
* debian/rules: Fix bug in previous update.
-- Ben Pfaff <pfaffben@debian.org> Sat, 16 Aug 2014 14:08:30 -0700
pspp (0.8.3-1.1) unstable; urgency=low
* debian/rules: Dump testsuite.log to stdout on failure to make
autobuilder test failures easier to debug.
-- Ben Pfaff <pfaffben@debian.org> Sat, 16 Aug 2014 09:41:42 -0700
pspp (0.8.3-1) unstable; urgency=low
* upgrade to upstream version 0.8.3
* debian/patches/test1039fix.patch: Add patch to fix a test failure in sid.
-- Friedrich Beckmann <friedrich.beckmann@gmx.de> Thu, 07 Aug 2014 03:04:58 +0200
pspp (0.7.9+git20120620-1.1) unstable; urgency=low
* Non-maintainer upload.
* debian/patches/699263: Add patch from upstream to fix test suite failures.
Since the default epoch depends on the current year, the test suite broke
on January 1, 2013. The patch adds the epoch to the test suite. (Closes:
#699263)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 05 Feb 2013 00:25:38 +0100
pspp (0.7.9+git20120620-1) unstable; urgency=low
* New upstream snapshot, fixes non-ASCII import issue (Closes: #676371).
-- bojo42 <bojo42@gmail.com> Sun, 24 Jun 2012 23:57:16 +0200
pspp (0.7.9+git20120319-1) unstable; urgency=low
* New upstream snapshot, fix testsuite errors on Ubuntu precise i386.
-- bojo42 <bojo42@gmail.com> Mon, 26 Mar 2012 22:08:23 +0200
pspp (0.7.9+git20120311-1) unstable; urgency=low
* New upstream snapshot, fix FTBFS on hurd-i386.
* debian/copyright: add details about lib/gtk-contrib/*
-- bojo42 <bojo42@gmail.com> Mon, 12 Mar 2012 14:29:25 +0100
pspp (0.7.9+git20120303-1) unstable; urgency=low
* New upstream snapshot, should fix outstanding testsuite failures.
* debian/control: no Build-Depends for postgresql on hurd-i386
-- bojo42 <bojo42@gmail.com> Mon, 05 Mar 2012 01:23:43 +0100
pspp (0.7.9+git20120229-1) unstable; urgency=low
* New upstream snapshot (Closes: #660854)
* debian/rules:
- emit non-zero exit code on testsuite errors in override_dh_auto_test
- remove possible pregenerated icon cache (Closes: #661573)
* debian/control: bump Standards-Version to current policy
-- bojo42 <bojo42@gmail.com> Wed, 29 Feb 2012 20:15:20 +0100
pspp (0.7.9+git20120219-1) unstable; urgency=low
* New upstream snapshot (should fix some issues on big-endian)
* debian/rules: post testsuite.log to build log on failures & typofixes
* debian/control: reorganize Build-Depends for better overview
-- bojo42 <bojo42@gmail.com> Mon, 20 Feb 2012 16:10:46 +0100
pspp (0.7.9+git20120214-1) unstable; urgency=low
* New maintainer (Closes: #636414)
* New upstream development snapshot
- debian/README.Source: notice about upstream source and Gnulib tarball
- debian/pspp.desktop: drop it as already in upstream
* Switch to source format 3.0 (quilt)
- move manual changes to debian/patches/*
- drop "psppire-data-editor.c" patch as already in upstream
- drop "lib/gtksheet/gtkitementry.c" patch as no longer needed
- drop manual changes to config.guess, config.sub
- ship Debian's gnulib source as supplementary tarball
* Switch to minimal debhelper 7 rules & cleanup
- debian/rules:
- strip everything that's not needed because of debhelper 7
- convert desktop icon from SVG and ship SVG
- there's no /usr/share/info/dir anymore
- no pref.h.orig & src/version.c to take care of
- switch to default usage of dh_makeshlibs again
- use smake
- remove possibly auto-generated info dir file
- debian/control:
- add Uploaders
- remove obsolete build depends on libplot-dev, libglade2-dev
- new build depends on libxml2-dev, zlib1g-dev, libcairo2-dev,
libpango1.0-dev, autoconf, automake, m4, pkg-config, gperf, libtool,
smake, libgtk2.0-bin, libgtksourceview2.0-dev, libpq-dev, postgresql,
perl, libtext-diff-perl, librsvg2-bin
- new version dependency for debhelper, gettext, texinfo
- bump Standards-Version
- update Description
- debian/dirs: strip already present dirs
- debian/docs: merge from rules & add THANKS, OChangeLog, ONEWS
- debian/info: move info to pspp.info
- debian/preinst:
- handle old conffiles like psfonts & devices
- use old school style for that as dpkg (>= 1.15.7.2) hinders backports
- debian/pspp.manpages: exclude from rules
- debian/pspp.doc-base: add information about the GUI
- debian/watch: strip template stuff for Lintian & other boilerplate text
- delete debian/README.examples, debian/example.stat & debian/myfile.syn
* Update debian/copyright
- new copyright holders and remove old email address
- new download location
- update the final paragraph of the license text
* Ship redone SVG icon until we have a nice upstream one
-- bojo42 <bojo42@gmail.com> Wed, 15 Feb 2012 14:15:22 +0100
pspp (0.6.2-4) unstable; urgency=low
* QA upload.
* Package has been orphaned, set Debian QA as maintainer.
* Empty dependency_libs field from la files. Closes: #633285.
* Rename gtk_entry_reset_im_context to my_gtk_entry_reset_im_context,
avoiding conflict with the one defined in gtkentry.h. Closes: #621986.
-- Regis Boudin <regis@debian.org> Tue, 20 Sep 2011 20:38:25 +0100
pspp (0.6.2-3) unstable; urgency=low
* doc/pspp.man: Docs are in /usr/share/doc and /usr/share/info (thanks
to Sergio Gelato <Sergio.Gelato@astro.su.se>, closes:Bug#557633).
Delete reference to pspp FAQ.
-- James R. Van Zandt <jrv@debian.org> Mon, 04 Jan 2010 21:19:13 -0500
pspp (0.6.2-2) unstable; urgency=low
* debian/rules: only delete /usr/share/info/dir if it exists
(Closes:Bug#555839)
-- James R. Van Zandt <jrv@debian.org> Sun, 15 Nov 2009 17:38:36 -0500
pspp (0.6.2-1) unstable; urgency=low
* New upstream release (Closes:Bug#552744,Bug#549753,Bug#512038)
* debian/control: depend on libreadline-dev rather than libreadline5-dev
(per request of Matthias Klose <doko@cs.tu-berlin.de>,
Closes:Bug#553829), depend on 'dpkg (>= 1.15.4) | install-info' for
new info file installation process. Don't call deprecated
installation helper dh_desktop. Bump debhelper compatibility version
to 7. Bump debian policy to 3.8.3.
* debian/rules: don't install /usr/share/info/dir file. install calls
dh_prep instead of dh_clean -k.
-- James R. Van Zandt <jrv@debian.org> Mon, 09 Nov 2009 17:10:48 -0500
pspp (0.6.1-4) unstable; urgency=low
* src/ui/gui/psppire-data-editor.c: prevent data sheet from traversing
into an invalid column, per fix by John Darrington (see
http://git.savannah.gnu.org/cgit/pspp.git/commit/?h=stable&id=47aaa033c935d0427abd7cbb591a35450eb7db81)(Closes:Bug#516521)
-- James R. Van Zandt <jrv@debian.org> Sat, 28 Feb 2009 22:46:51 -0500
pspp (0.6.1-3) unstable; urgency=low
* debian/pspp.desktop: Correct name of icon file.
-- James R. Van Zandt <jrv@debian.org> Sat, 21 Feb 2009 20:54:26 -0500
pspp (0.6.1-2) unstable; urgency=low
* Install pspp.desktop file (Thanks to "Bojo 42" <bojo42@googlemail.com>)
-- James R. Van Zandt <jrv@debian.org> Fri, 20 Feb 2009 20:18:02 -0500
pspp (0.6.1-1) unstable; urgency=low
* New upstream release (closes:Bug#502856)
* debian/rules: enable parallel builds
-- James R. Van Zandt <jrv@debian.org> Thu, 27 Nov 2008 05:21:50 -0500
pspp (0.6.0-3) unstable; urgency=low
* debian/psppire.1: psppire was written by John Darrington (thanks to
Ben Pfaff, Closes:Bug#500639)
-- James R. Van Zandt <jrv@debian.org> Tue, 30 Sep 2008 17:43:09 -0400
pspp (0.6.0-2) unstable; urgency=low
* debian/rules: default to -O2 (some optimization) instead of -O0
-- James R. Van Zandt <jrv@debian.org> Mon, 14 Jul 2008 21:29:14 -0400
pspp (0.6.0-1) unstable; urgency=low
* New upstream release (closes:#451825,#486777)
* debian/control: Debian policy version 3.8.0. Add "Homepage" field.
Add to build-depends: libglade2-dev, libreadline5-dev, libxml2-dev,
zlib1g-dev. Build-depends on texlive rather than old tetex-bin.
* debian/rules: implement DEBIAN_BUILD_OPTIONS value "parallel=n".
Add to configuration command (per README): CFLAGS=-fgnu89-inline.
* debian/copying: now licensed under GPL version 3 or later.
* debian/menu: add Debian menu support
* Add simple manpage for psppire.
* debian/doc-base: update section to agree with menu policy
-- James R. Van Zandt <jrv@debian.org> Sun, 13 Jul 2008 21:30:47 -0400
pspp (0.4.0-7) unstable; urgency=low
* debian/pss.doc-base: HTML documents are in pspp.html/ (closes:#364536)
-- James R. Van Zandt <jrv@debian.org> Mon, 24 Apr 2006 21:00:04 -0400
pspp (0.4.0-6) unstable; urgency=low
* rebuild against libreadline5 (closes: #356799)
* debian/copyright: update FSF address
-- James R. Van Zandt <jrv@debian.org> Fri, 17 Mar 2006 20:42:11 -0500
pspp (0.4.0-5) unstable; urgency=low
* debian/emacsen-startup: autoload pspp-mode.el, and add it to
automode-alist for .sps files.
-- James R. Van Zandt <jrv@debian.org> Tue, 7 Mar 2006 19:35:26 -0500
pspp (0.4.0-4) unstable; urgency=low
* debian/control: depend on texinfo (thanks to Roland Stigge
<stigge@antcom.de>) (closes: #340062)
-- James R. Van Zandt <jrv@debian.org> Fri, 25 Nov 2005 21:40:59 -0500
pspp (0.4.0-3) unstable; urgency=low
* build against libplot2c2
-- James R. Van Zandt <jrv@debian.org> Mon, 26 Sep 2005 19:43:59 -0400
pspp (0.4.0-2) unstable; urgency=low
* added libgsl0-dev to Build-Depends
-- James R. Van Zandt <jrv@debian.org> Sat, 24 Sep 2005 21:38:10 -0400
pspp (0.4.0-1) unstable; urgency=low
* New upstream release (fixes: Bug#259615,Bug#328545)
* debian/control: update Debian policy version (no changes needed),
update program description, add libplot-dev to Build-Depends, bump
debhelper version to 4.0
* debian/watch: update format to version 3
* debian/rules: eliminate support for debian-test, install pspp-mode.el,
revert to Makefile commands to build .html documentation. Build and
install .pdf documentation. Register .html and .pdf files with
doc-base. Eliminate deprecated DH_COMPAT setting.
* debian/README: eliminate outdated material, add pointers on
documentation and the Emacs mode.
-- James R. Van Zandt <jrv@debian.org> Sat, 24 Sep 2005 09:45:36 -0400
pspp (0.3.0-10) unstable; urgency=low
* update debian/watch to point to new upstream site
-- James R. Van Zandt <jrv@debian.org> Sat, 24 Sep 2005 09:33:02 -0400
pspp (0.3.0-9) unstable; urgency=low
* src/q2c.c: fix gcc complaint: label at end of compound statement
(thanks to Andreas Jochens <aj at andaco.de>)(closes:bug#259615)
-- James R. Van Zandt <jrv@debian.org> Thu, 5 Aug 2004 21:31:52 -0400
pspp (0.3.0-8) unstable; urgency=low
* debian/rules: use debhelper, dh_clean deletes src/version.c
and pref.h but preserves pref.h.orig, set DESTDIR for "make install"
* Makefile.in: export pkgsysconfdir and DESTDIR
* doc/pspp.texi: replace old START-INFO-DIR-ENTRY section with
@dircategory and @direntry sections.
* doc/texinfo.tex: refresh, to handle @dircategory command
* config.guess, config.sub: refresh
* lib/gmp/longlong.h: add explicit newlines, and escape the embedded
ones (closes:bug#195801)
* debian/control: update to policy 3.5.7
-- James R. Van Zandt <jrv@debian.org> Sun, 15 Jun 2003 10:20:30 -0400
pspp (0.3.0-7) unstable; urgency=low
* debian/changelog: remove obsolete local variables
-- James R. Van Zandt <jrv@debian.org> Sat, 23 Mar 2002 21:38:30 -0500
pspp (0.3.0-6) unstable; urgency=low
* src/command.c: adjust test to work around name space pollution (fix by
Ben Pfaff)(closes:bug#99739)
* new maintainer email
-- James R. Van Zandt <jrv@debian.org> Tue, 3 Jul 2001 21:54:08 -0400
pspp (0.3.0-5) unstable; urgency=low
* debian/control: build-depend on gettext, libncurses5-dev, tetex-bin,
texi2html (closes:Bug#98712)
-- James R. Van Zandt <jrv@vanzandt.mv.com> Mon, 28 May 2001 21:35:25 -0400
pspp (0.3.0-4) unstable; urgency=low
* config.guess, config.sub - update to current versions from CVS
server (thanks to Philip Blundell <philb@gnu.org>) (Closes:Bug#93847)
* src/groff-font.c(400): reverse last two arguments of call to tmsg
(Closes:Bug#93168)
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 13 May 2001 17:54:08 -0400
pspp (0.3.0-3) unstable; urgency=low
* debian/control: move Build-Depends line to source section. Policy
version 3.5.2.
* debian/rules: honor DEB_BUILD_OPTIONS. Add "/etc/pspp" to config file
path. Support debian-test.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sat, 31 Mar 2001 10:31:57 -0500
pspp (0.3.0-2) unstable; urgency=low
* build-depends on debmake
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 3 Sep 2000 11:45:59 -0400
pspp (0.3.0-1) unstable; urgency=low
* New upstream release
* Take "-O2" out of compiler flags, since ascii.c compilation fails.
* Add Section and Priority fields to package control file.
* Remove reference to old license file directory.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 9 Jan 2000 20:01:28 -0500
pspp (0.2.3-3) unstable; urgency=low
* update to version 3.0.0 of the Debian policy (FHS).
* rebuild with current libraries. (Closes:bug#40421)
* debian/copyright: indicate only the download directory, rather
than the file URL (which changes every version)
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 24 Oct 1999 17:43:51 -0400
pspp (0.2.3-2) unstable; urgency=low
* Include more files in /usr/doc/pspp/examples/.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Wed, 24 Mar 1999 20:16:17 -0500
pspp (0.2.3-1) unstable; urgency=low
* New upstream release
-- James R. Van Zandt <jrv@vanzandt.mv.com> Tue, 9 Mar 1999 21:44:17 -0500
pspp (0.2.2-1) frozen unstable; urgency=low
* New upstream release - bugfixes:
* Fix behavior of PRINT SPACE for negative arguments.
* Fix reading some unusual system files.
* Fix LIST problems with very long variables. Thanks to Hankin
<hankin@dunno.com> for this bug report.
* Fix problems with some string format specifiers.
* Fix use of $CASENUM in expressions. Thanks to Dirk Melcher
<BZN-mdksh@t-online.de> for reporting this bug.
* Additional DATA LIST FREE and DATA LIST LIST fixes. Thanks to
Hankin <hankin@dunno.com> again on this one.
* Sometimes you may encounter a PSPP script that has to be
interpreted in interactive mode. Now you can use the -i flag to
do this.
* Warnings for egcs 1.1.1 cleaned up. (However you'll get lots of
`unused variable' warnings under gcc 2.7.2.3, fixing this will
take more effort.)
* Tests fixed.
* The files in gmp need the internationalization directory in
their include path. Thanks to OKUJI Yoshinori
<okuji@kuicr.kyoto-u.ac.jp> for pointing this out.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sat, 9 Jan 1999 15:43:18 -0500
pspp (0.2.1-3) frozen unstable; urgency=low
* Recompilation to remove dependency on libc6 2.0.7u
-- James R. Van Zandt <jrv@vanzandt.mv.com> Wed, 9 Dec 1998 22:06:56 -0500
pspp (0.2.1-2) frozen unstable; urgency=low
* Upstream release was a bugfix - release for frozen as well as unstable.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 22 Nov 1998 19:21:18 -0500
pspp (0.2.1-1) unstable; urgency=low
* New upstream release
-- James R. Van Zandt <jrv@vanzandt.mv.com> Thu, 19 Nov 1998 22:02:48 -0500
pspp (0.2.0-2) frozen unstable; urgency=low
* Link with libncurses4.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 1 Nov 1998 11:09:39 -0500
pspp (0.2.0-1) unstable; urgency=low
* New upstream release: documentation and configuration fixes
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sat, 24 Oct 1998 04:45:25 -0400
pspp (0.1.23-1) unstable; urgency=low
* New upstream release: lots more documentation
-- James R. Van Zandt <jrv@vanzandt.mv.com> Sun, 16 Aug 1998 11:48:09 -0400
pspp (0.1.22-1) unstable; urgency=low
* New upstream release
-- James R. Van Zandt <jrv@vanzandt.mv.com> Fri, 7 Aug 1998 19:42:53 -0400
pspp (0.1.21-1) unstable; urgency=low
* Initial Release.
-- James R. Van Zandt <jrv@vanzandt.mv.com> Mon, 3 Aug 1998 20:21:20 -0400
|