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 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
|
gnuplot (5.0.5+dfsg1-6+deb9u1) stretch; urgency=high
* [02931b6] Fix memory corruption vulnerability. CVE-2017-9670.
(Closes: #864901)
-- Anton Gladky <gladk@debian.org> Fri, 16 Jun 2017 22:35:29 +0200
gnuplot (5.0.5+dfsg1-6) unstable; urgency=medium
* Team upload.
* [0f55a7f] Mark gnuplot-doc as Multi-Arch:foreign.
* [9be6254] Do not forcefully disable PIE anymore as -pie changed meaning.
(Closes: #859370)
-- Mattia Rizzolo <mattia@debian.org> Mon, 03 Apr 2017 22:58:59 +0200
gnuplot (5.0.5+dfsg1-5) unstable; urgency=medium
[ Anton Gladky ]
* [82388b2] Remove outdated info-patch. (Closes: #844461)
* [76f823f] Remove outdated font-patch. (Closes: #837315)
[ Rob Browning ]
* [9a662e6] Change build dependency to "emacs25-nox | emacs25 | emacs24"
to support and prefer emacs25. (Closes: #846988)
-- Anton Gladky <gladk@debian.org> Sun, 08 Jan 2017 20:39:38 +0100
gnuplot (5.0.5+dfsg1-4) unstable; urgency=medium
* [3ff368e] Move info-file into gnuplot-doc. (Closes: #843987)
* [065d9e4] Provide transitional packages for Jessie->Stretch period.
(Closes: #833343)
-- Anton Gladky <gladk@debian.org> Sun, 13 Nov 2016 19:41:25 +0100
gnuplot (5.0.5+dfsg1-3) unstable; urgency=medium
* [e2ad793] Untar files in examples and docs. (Closes: #842305)
* [c43ec2b] Resurect info-file. (CloseS: #833646)
-- Anton Gladky <gladk@debian.org> Thu, 10 Nov 2016 18:58:40 +0100
gnuplot (5.0.5+dfsg1-2) unstable; urgency=medium
[ Ghislain Antony Vaillant ]
* [8e24e44] Make build reproducible.
-- Anton Gladky <gladk@debian.org> Sat, 22 Oct 2016 16:15:51 +0200
gnuplot (5.0.5+dfsg1-1) unstable; urgency=medium
* [f282ca9] New upstream version 5.0.5+dfsg1
* [b36e4d5] Refresh patches.
* [0441567] Set debhelper version restriction to >=10.
-- Anton Gladky <gladk@debian.org> Sat, 22 Oct 2016 10:43:00 +0200
gnuplot (5.0.4+dfsg1-3) unstable; urgency=medium
* [a5ccd06] Disable lua for mips* and powerpc to escape crashes.
-- Anton Gladky <gladk@debian.org> Wed, 03 Aug 2016 17:46:29 +0200
gnuplot (5.0.4+dfsg1-2) unstable; urgency=medium
* [081cf03] Fix debhelper version dependency.
-- Anton Gladky <gladk@debian.org> Tue, 02 Aug 2016 18:11:31 +0200
gnuplot (5.0.4+dfsg1-1) unstable; urgency=medium
* [e06b554] Update NEWS file. (Closes: #827918)
* [1ebeecc] Imported Upstream version 5.0.4+dfsg1
* [4176d8a] Refresh patches.
* [500191f] Apply cme fix dpkg.
-- Anton Gladky <gladk@debian.org> Mon, 01 Aug 2016 23:36:00 +0200
gnuplot (5.0.3+dfsg3-7) unstable; urgency=medium
* [2a1377d] Fix the crash during resize of qt-window. (Closes: #827351)
-- Anton Gladky <gladk@debian.org> Sat, 18 Jun 2016 08:27:47 +0200
gnuplot (5.0.3+dfsg3-6) unstable; urgency=medium
[ Alexis Bienvenüe ]
* [8487b29] Make the build reproducible. (Closes: #827197)
-- Anton Gladky <gladk@debian.org> Mon, 13 Jun 2016 22:06:57 +0200
gnuplot (5.0.3+dfsg3-5) unstable; urgency=medium
[ Sven Joachim ]
* [e3a51ae] Remove duplicated update-alternatives. (Closes: #826933)
-- Anton Gladky <gladk@debian.org> Fri, 10 Jun 2016 20:03:04 +0200
gnuplot (5.0.3+dfsg3-4) unstable; urgency=medium
* [2170a95] Update relationship number in Breaks/Replaces. (Closes: #826701)
* [0990e6a] Remove some not needed files from examples.
-- Anton Gladky <gladk@debian.org> Thu, 09 Jun 2016 22:22:55 +0200
gnuplot (5.0.3+dfsg3-3) unstable; urgency=medium
* [4142d72] Do not install info-file, while gnuplot5 exists.
(Closes: #826708)
* [4a02077] Remove old alternatives in postinst. (Closes: #826721)
* [2fccdd2] Try to get reproducibility.
* [a82b00e] Use compat-level 10.
-- Anton Gladky <gladk@debian.org> Wed, 08 Jun 2016 22:33:31 +0200
gnuplot (5.0.3+dfsg3-2) unstable; urgency=medium
* [b82259c] Add Breaks/Replaces against gnuplot-tex. (Closes: #826701)
-- Anton Gladky <gladk@debian.org> Wed, 08 Jun 2016 08:54:18 +0200
gnuplot (5.0.3+dfsg3-1) unstable; urgency=medium
* [9595f81] Update install-files for gnuplot v.5. (Closes: #812906)
* [874c1d8] Exclude lena* files. (Closes: #809813)
* [c4878f7] Imported Upstream version 5.0.3+dfsg3
* [92875fb] Update priorities in update-alternatives.
* [75f5c94] Apply cme fix dpkg.
* [4b40bb2] Update Provides for gnuplot-nox.
-- Anton Gladky <gladk@debian.org> Tue, 07 Jun 2016 22:32:13 +0200
gnuplot (5.0.3+dfsg2-1) unstable; urgency=medium
* [e835fa1] Update d/watch.
* [f9c5d19] Imported Upstream version 5.0.3+dfsg2
* [29a7ef2] Remove patch, applied by upstrem.
-- Anton Gladky <gladk@debian.org> Mon, 22 Feb 2016 18:59:57 +0100
gnuplot5 (5.0.3+dfsg1-2) unstable; urgency=medium
* [5b904ca] Revert previous "provides-option". (Closes: #814415)
-- Anton Gladky <gladk@debian.org> Fri, 12 Feb 2016 20:25:36 +0100
gnuplot5 (5.0.3+dfsg1-1) unstable; urgency=medium
* [4b3a3ce] Imported Upstream version 5.0.3+dfsg1
* [8767584] Update patches.
* [1bcf48b] Fix format not a string error.
* [0e4ff3f] Apply cme fix dpkg.
* [6a42bd9] Add Provides-section for gnuplot4. Prepare for gnuplot4 removal.
-- Anton Gladky <gladk@debian.org> Mon, 08 Feb 2016 13:30:56 +0100
gnuplot5 (5.0.2+dfsg1-2) unstable; urgency=medium
* [7bb549d] Fix font size on wxt-terminal. (Closes: #810943)
* [5a638de] Update d/copyright.
-- Anton Gladky <gladk@debian.org> Mon, 18 Jan 2016 09:08:36 +0100
gnuplot5 (5.0.2+dfsg1-1) unstable; urgency=medium
* [d183a84] Remove so-files from d/copyright (fixed by upstream)
* [9a496d5] Imported Upstream version 5.0.2+dfsg1. (Closes: #806039)
* [5be40e0] Refresh patches.
* [65d724b] Update d/copyright.
* [09f724d] Add dh-lua to BD.
-- Anton Gladky <gladk@debian.org> Tue, 12 Jan 2016 08:11:01 +0100
gnuplot5 (5.0.1+dfsg1-3) unstable; urgency=medium
[ Martin Pitt <martin.pitt@ubuntu.com> ]
* Add 13_no_pie.patch: Don't build with -fPIE, Qt barfs on that with
gcc >= 5. (http://code.qt.io/cgit/qt/qtbase.git/commit/?id=3eca75d)
(Closes: #795076)
* debian/rules: Also drop "pie" from hardening flags. Instead, build with
-fPIC; it's conceptually wrong, but it's what the above Qt check insists
on.
-- Anton Gladky <gladk@debian.org> Tue, 11 Aug 2015 22:07:13 +0200
gnuplot5 (5.0.1+dfsg1-2) unstable; urgency=medium
[ Vincent Lefevre ]
* Team upload.
* [1171a98] Provide info manual. (Closes: #778757)
-- Anton Gladky <gladk@debian.org> Mon, 29 Jun 2015 23:36:42 +0200
gnuplot5 (5.0.1+dfsg1-1) unstable; urgency=medium
* [c0fd77e] Imported Upstream version 5.0.1+dfsg
* [be6c05e] Add suffix to uscan tarball.
* [47f23a2] Refresh patches.
-- Anton Gladky <gladk@debian.org> Wed, 17 Jun 2015 17:54:45 +0200
gnuplot5 (5.0.0+dfsg1-1) unstable; urgency=medium
* [6654139] Update description of doc.patch.
* [d62554c] Remove docs/gnuplot.doc from Files-Excluded.
* [0bde847] Update watch-file.
* [094380f] Update d/copyright.
* [03fde84] Use cme fix dpkg-control.
* [5b554ce] Fix package build with -A option.
-- Anton Gladky <gladk@debian.org> Tue, 28 Apr 2015 21:38:18 +0200
gnuplot5 (5.0.0+dfsg1-1~exp1) experimental; urgency=medium
* [852f781] Imported Upstream version 5.0.0+dfsg1
* [ebf57b8] Remove doc-patch.
* [a4d5d14] Update d/watch.
* [6b6db31] Update d/copyright.
* [7907a7a] Update doc-generation.
* [e56cfca] Enable wxt-terminal.
-- Anton Gladky <gladk@debian.org> Thu, 22 Jan 2015 23:15:42 +0100
gnuplot5 (5.0.0~rc+dfsg3-1) experimental; urgency=medium
[ Anton Gladky ]
* [3071bf2] Imported Upstream version 5.0~rc3
* [d89f2c1] Set Standards-Version: 3.9.6. No changes.
[ Mattia Rizzolo ]
* [8770897] Do not build-depend on qt5-default. (Closes: #769235)
-- Anton Gladky <gladk@debian.org> Tue, 18 Nov 2014 19:18:52 +0100
gnuplot5 (5.0.0~rc+dfsg2-1) unstable; urgency=medium
* [6c51a9d] Update copyright-file.
* [796b51a] Replace binary by Source-version in d/control.
* [5e8c834] Remove README.Debian and TODO.
* [5e486cc] Update debian/watch.
* [947cf8e] Add Files-Excluded into d/copyright.
* [f90ab32] Imported Upstream version 5.0.0~rc2+dfsg. (Closes: #763504)
* [163b2af] Remove beos-specific code.
* [52c53de] Remove gnuplot.doc from source and binary.
* [0bc7e41] Refresh patches.
* [f69cc4e] Simplify autopkgtest.
-- Anton Gladky <gladk@debian.org> Mon, 29 Sep 2014 22:49:44 +0200
gnuplot5 (5.0.0~rc+dfsg-1) unstable; urgency=medium
* Initial packaging. (Closes: #754506)
-- Anton Gladky <gladk@debian.org> Fri, 11 Jul 2014 23:36:40 +0200
gnuplot (4.6.6-4) unstable; urgency=medium
* [701337b] Remove gnuplot4 binaries in favor of gnuplot5.
Let gnuplot be virtual package only.
* [720f498] Do not compile gnuplot4.
* [c11ce5e] Apply cme fix dpkg.
-- Anton Gladky <gladk@debian.org> Tue, 31 May 2016 21:34:35 +0200
gnuplot (4.6.6-3) unstable; urgency=medium
* [5b6c81a] Make gnuplot be dependent on version 5.
* [7bf195b] Apply cme fix dpkg-control.
-- Anton Gladky <gladk@debian.org> Wed, 26 Aug 2015 22:57:59 +0200
gnuplot (4.6.6-2) unstable; urgency=medium
* [e141e1d] Move update-alternatives for gnuplot.gih from
gnuplot to gnuplot4. (Closes: #776434)
-- Anton Gladky <gladk@debian.org> Wed, 28 Jan 2015 20:48:39 +0100
gnuplot (4.6.6-1) unstable; urgency=medium
* [5b5e9cd] Imported Upstream version 4.6.6
* [0a383da] Refresh patches.
* [006e379] Set Standards-Version: 3.9.6. No changes.
* [cc0778a] Fix lintian warning in d/copyright.
-- Anton Gladky <gladk@debian.org> Mon, 29 Sep 2014 19:33:35 +0200
gnuplot (4.6.5-10) unstable; urgency=medium
* [684bb08] Depend on the same version of gnuplot-data as a source-version.
* [2e069b9] Fix package name in autopkgtest.
* [6aae61e] Simplify and update autotest. (Closes: #756156)
* [dfdd105] Provide -x11 by -qt. (Closes: #756163)
-- Anton Gladky <gladk@debian.org> Fri, 01 Aug 2014 19:48:33 +0200
gnuplot (4.6.5-9) unstable; urgency=medium
* [754170b] Update version number in Breaks/Replaces. (Closes: #754890)
* [3859306] Add missing entries into d./copyright. (Closes: #754872)
-- Anton Gladky <gladk@debian.org> Tue, 15 Jul 2014 18:58:51 +0200
gnuplot (4.6.5-8) unstable; urgency=medium
* [27a6ce3] Add gnuplot-data and move there all arch-independent files.
Prevemts circular dependencies. (Closes: #754598)
* [5db8c84] Provide by -x11 and -qt the binary gnuplot-nox.
(Closes: #754603)
-- Anton Gladky <gladk@debian.org> Sun, 13 Jul 2014 14:53:47 +0200
gnuplot (4.6.5-7) unstable; urgency=medium
* [716ff2d] Update autopkgtest.
* [f8828aa] Provide gnuplot4 symlink through update-alternatives
* [b5b3c3b] Do not let install -nox together with -x11 or -qt.
-- Anton Gladky <gladk@debian.org> Sat, 12 Jul 2014 10:46:21 +0200
gnuplot (4.6.5-6) unstable; urgency=medium
* [87404d3] Add breaks/replaces construction for gnuplot. (Closes: #754162)
-- Anton Gladky <gladk@debian.org> Tue, 08 Jul 2014 19:54:12 +0200
gnuplot (4.6.5-5) unstable; urgency=medium
* [414feb8] Remove old postinst, postrm and prerm scripts.
* [840441d] Do not override autoclean
* [43aac33] Rename binaries from gnuplot to gnuplot4-*.
* [e065af5], [893f8be] Use update-alternatives to provide gnuplot.
* [5829104] Move texmf-files into gnuplot-tex.
-- Anton Gladky <gladk@debian.org> Tue, 24 Jun 2014 23:51:18 +0200
gnuplot (4.6.5-4) unstable; urgency=medium
* [4d67729] Disable wxt-terminal. (Closes: #750045)
* [7342432] Increase priority of gnuplot-qt over gnuplot-x11.
-- Anton Gladky <gladk@debian.org> Wed, 04 Jun 2014 22:51:42 +0200
gnuplot (4.6.5-3) unstable; urgency=medium
* [5aef72d] Fix typo in control-file. (Closes: #749820)
-- Anton Gladky <gladk@debian.org> Fri, 30 May 2014 07:40:33 +0200
gnuplot (4.6.5-2) unstable; urgency=medium
[ Olly Betts ]
* [cd3b9ce] Update to use wxwidgets3.0. (Closes: #741072)
[ Anton Gladky ]
* [10a8dbc] Set the default gnuplot binary to gnuplot-x11. (Closes: #741073)
* [aef3b6a] Fix manpage for gnuplot-nox. (Closes: #744218)
* [dfd3a27] Add autopkgtests.
-- Anton Gladky <gladk@debian.org> Thu, 29 May 2014 18:17:09 +0200
gnuplot (4.6.5-1) unstable; urgency=medium
* [aec9b9b] Imported Upstream version 4.6.5
-- Anton Gladky <gladk@debian.org> Fri, 28 Feb 2014 23:20:14 +0100
gnuplot (4.6.4-2) unstable; urgency=medium
* [67fb69c] Add texlive-fonts-recommended to Build-Depends. (Closes: #738212)
* [bf524ce] Set Standards-Version: 3.9.5. No changes.
-- Anton Gladky <gladk@debian.org> Sat, 08 Feb 2014 20:44:33 +0100
gnuplot (4.6.4-1) unstable; urgency=low
* [9fbd2a7] Add python-gnuplot, feedgnuplot, libgnuplot-iostream-dev
to suggests-section.
* [2500301] Imported Upstream version 4.6.4
* [f2d5e30] Refresh patches.
* [d005afc] Use wrap-and-sort.
* [e4ff402] Simplify debian/rules.
-- Anton Gladky <gladk@debian.org> Sat, 12 Oct 2013 20:46:15 +0200
gnuplot (4.6.3-2) unstable; urgency=low
* [912245b] Change BD to libgd2-dev.
* [39692d7] Force makeinfo not to fail on warnings.
Remove mkinstalldirs.
(Closes: #711067)
* [5731602] Use canonical VCS-field.
* [8e396f4] Use packaged version of aglfn. (Closes: #709583)
-- Anton Gladky <gladk@debian.org> Tue, 04 Jun 2013 22:58:34 +0200
gnuplot (4.6.3-1) unstable; urgency=low
* [159e6e7] Imported Upstream version 4.6.3
* [c706f6c] Refresh patches. Removed ones, applied by upstream.
* [538471a] Bump 3.9.4 Standard-Version.
* [aa9b622] Use autoreconf.
* [079ae7c] Add link to GPL-license in copyright-file.
* [c6ccdf4] Add short descriptions to patches.
* [235dd93] Remove README.source.
-- Anton Gladky <gladk@debian.org> Wed, 01 May 2013 20:40:14 +0200
gnuplot (4.6.1-1~exp1) experimental; urgency=low
* [b6d2e38] Remove Bradley Smith <bradsmith@debian.org> from uploaders.
(Closes: #674889)
* [2d56f4c] Imported Upstream version 4.6.1. (Closes: #689453)
* [6d9c716] Remove patches, applied by upstream. Refresh patches.
* [ca7a82b] Use compat-level 9.
* [2ad2237] Enable hardening=+all option.
-- Anton Gladky <gladky.anton@gmail.com> Mon, 22 Oct 2012 18:30:54 +0200
gnuplot (4.6.0-8) unstable; urgency=low
* [cfaa0f9] Fix stop in batch mode. (Closes: #598547)
* [514f243] Add "Provides: gnuplot-nox" to gnuplot-x11 and gnuplot-qt.
(Closes: #671876)
* [86f5340] Add "Provides: gnuplot-x11" to gnuplot-qt.
* [dd6645e] Fix cairolatex driver with monochrome keyword. (Closes: #668339)
-- Anton Gladky <gladky.anton@gmail.com> Tue, 08 May 2012 19:22:44 +0200
gnuplot (4.6.0-7) unstable; urgency=low
[ Agustin Martin Domingo ]
* [e0d4447] gnuplot-{nox,x11,qt}.info: Remove.
gnuplot.info is installed only in gnuplot-doc.
* [b8957fa] gnuplot-x11.{postinst,prerm}. Remove redundant verbosity
when removing diversions.
* [f400978] Fine tune installation of some docs.
* [3eb80f0] Install TeX files for lua terminal.
* [738917f] gnuplot.preinst: Remove /usr/share/doc/gnuplot only if is
an obsolete symlink. (Closes: #671459)
-- Anton Gladky <gladky.anton@gmail.com> Sat, 05 May 2012 21:29:13 +0200
gnuplot (4.6.0-6) unstable; urgency=low
[ Anton Gladky ]
* [3deb1bf] Decrease the priority of qt-terminal to be set as "default".
(Closes: #668955)
* [71fd7e3] Add gnuplot-qt binary. (Closes: #670229)
* [1ef10f2] Fix typo in qt-terminal debug output. (Closes: #670173)
* [d572c4e] Replace ttf-liberation by fonts-liberation.
Thanks to Fabian Greffrath. (Closes: #670423)
* [3a12b41] Remove *.postrm and *.preinst files.
[ Agustin Martin Domingo ]
* [2c1a288] Change Replaces by Conflicts between different gnuplot-* flavors.
* [c9e3fac] gnuplot-x11.{prerm,postinst}: try to remove old diversions.
* [2745ff0] make gnuplot-{nox,x11,qt} depend on at least gnuplot 4.6.0-6.
* [f1a4f5a] gnuplot-qt, gnuplot-x11, gnuplot-nox: Make them standalone
packages.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 26 Apr 2012 19:29:08 +0200
gnuplot (4.6.0-5) unstable; urgency=low
* [347c6e4] Fix FTBFS on arch-builds.
-- Anton Gladky <gladky.anton@gmail.com> Wed, 11 Apr 2012 19:23:14 +0200
gnuplot (4.6.0-4) unstable; urgency=low
* [bf2b985] Bumped debhelper version >= 8.9.10. Thanks to Agustin Martin.
(Closes: #667004)
* [0598904] Enable qt-terminal. (Closes: #667760)
* [031fca2] Consider gz-ipped data-files in examples-directory.
(Closes: #283966)
-- Anton Gladky <gladky.anton@gmail.com> Tue, 10 Apr 2012 21:25:17 +0200
gnuplot (4.6.0-3) unstable; urgency=low
* [d4661a3] Fix FTBFS during arch-only build. Cleans in debian/rules.
-- Anton Gladky <gladky.anton@gmail.com> Sat, 31 Mar 2012 08:59:26 +0200
gnuplot (4.6.0-2) unstable; urgency=low
* [033f52f] Bumped Standards-Version: 3.9.3. No changes.
* [ec5a5cc] Enable CPPFLAGS/CXXFLAGS flags hardening.
Thanks to Simon Ruderich. (Closes: #665311)
* [803ad73] Compile demo-folder to get some binary-data. (Closes: #665349)
* [4abcc8c] Simplify debian/rules. Use dh rules.
* [2a96f2e] Do not use symbolic links between binaries.
* [e5b0eb2] Use compat 8.
* [1bec2ae] Remove dublicating code from debian/rules.
* [817a4ec] Fix "Segmentation fault" after entering any command.
(Closes: #665832)
* [c51581b] Enable auto-tests.
-- Anton Gladky <gladky.anton@gmail.com> Sat, 31 Mar 2012 00:37:36 +0200
gnuplot (4.6.0-1) unstable; urgency=low
* [ab4b922] Imported Upstream version 4.6.0
* [85c06b3] Refresh current patches.
* [a1beb9c] Add texlive-latex-extra to BD. Needed for tutorial-build.
* [8fc95b4] Move under debian-science roof. (Closes: #596969)
* [2f23686] Change libpng12-dev BD on libpng-dev. (Closes: #662356)
* [a4741ac] Use dpkg-buildflags for flags.
* [17e3fff] Fix FTBFS "format not a string literal and no format arg".
[ Agustin Martin ]
* [663e404] Add liblua5.1-dev dependency and set include path to
enable lua. (Closes: #503269)
* [0dc855f] Pass --as-needed to linker. Avoids linking unneeded libs.
-- Anton Gladky <gladky.anton@gmail.com> Mon, 19 Mar 2012 21:54:02 +0100
gnuplot (4.4.0-1.1) unstable; urgency=low
* Non-maintainer upload.
* Build depend on recent libedit-dev with fixed shlibs
dependencies (Closes: #597514).
-- Agustin Martin Domingo <agmartin@debian.org> Tue, 21 Sep 2010 12:19:09 +0200
gnuplot (4.4.0-1) unstable; urgency=low
* New usptream release. Closes: #575460, #574099, #519090, #523856.
* debian/patches:
+ 01_check_x11-driver.diff - Remove, not needed.
+ 02_fix_man.diff - Added, fix errors in man pages.
+ Refresh others.
* Fixup docs being installed.
* Update Standards-Version to 3.8.4.
* Move to 3.0 quilt source format.
* Add README.source.
*
-- Bradley Smith <bradsmith@debian.org> Sat, 27 Mar 2010 11:24:40 +0000
gnuplot (4.2.6-1) unstable; urgency=low
* New upstream release.
* Remove 02_fix_info.diff - Gone upstream.
* Add missing misc depends.
-- Bradley Smith <bradsmith@debian.org> Sun, 27 Sep 2009 14:30:25 +0100
gnuplot (4.2.5-3) unstable; urgency=low
* Update copyright file information. Closes: #544863.
* Update Standards-Version to 3.8.3.
-- Bradley Smith <bradsmith@debian.org> Thu, 03 Sep 2009 18:21:18 +0100
gnuplot (4.2.5-2) unstable; urgency=low
* debian/patches:
- Add 05_default_gdfont.diff - Set the default font to
LiberationSans-Regular instead of Arial for PNG and JPEG output in
the GD terminal driver. Thanks to Fabian Greffrath
<fabian@debian-unofficial.org> Closes: #524962.
* debian/control:
- Add ttf-liberation to Recommends.
- Remove cm-super from Build-Depends. Closes: #524493.
-- Bradley Smith <bradsmith@debian.org> Wed, 27 May 2009 16:59:12 +0100
gnuplot (4.2.5-1) unstable; urgency=low
* New upstream release.
* Add cm-super to Build-Depends. Closes: #522371.
* debian/patches
- Refresh 02_fix_info.diff.
- Remove 03_use_libedit.diff - Gone upstream.
-- Bradley Smith <bradsmith@debian.org> Fri, 03 Apr 2009 14:13:39 +0100
gnuplot (4.2.4-6) unstable; urgency=low
* Fix parallel builds.
* Fix nox build. Closes: #519395.
* Move groff to Recommends. Closes: #507088.
* Tidy up libedit patch. Closes: #518964.
* Update Standards-Version to 3.8.1. (No changes).
-- Bradley Smith <bradsmith@debian.org> Mon, 16 Mar 2009 17:24:48 +0000
gnuplot (4.2.4-5) unstable; urgency=low
* Move wx Build-depends to 2.8. Closes: #512147.
* Fix parallel builds.
-- Bradley Smith <bradsmith@debian.org> Sun, 08 Mar 2009 15:19:27 +0000
gnuplot (4.2.4-4) unstable; urgency=low
* Fix crash when doing set terminal. Closes: #507289.
-- Bradley Smith <bradsmith@debian.org> Sat, 29 Nov 2008 20:06:41 +0000
gnuplot (4.2.4-3) unstable; urgency=low
* Merge changes from experimental.
* Install missing info files. Closes: #504330.
-- Bradley Smith <bradsmith@debian.org> Tue, 25 Nov 2008 16:22:11 +0000
gnuplot (4.2.4-2) experimental; urgency=low
* Change maintainer email address.
* Fix changelog typos. Closes: #501292.
* debian/patches
- Add 03_use_libedit.diff - Use libedit for readline style support in
place of builtin readline. Closes: #75403, #319994.
- 04_fix_libexecdir.diff - Fix hardcoded libexecdir path.
* Add Vcs-* fields.
-- Bradley Smith <bradsmith@debian.org> Thu, 16 Oct 2008 21:59:49 +0100
gnuplot (4.2.4-1) unstable; urgency=low
* New upstream release.
* New maintainer. Closes: #500347.
* debian/rules
- Restructure build process.
- General tidying up.
* debian/patches
- 01_check_x11-driver.diff - Remove useless whitespace changes.
- 02_fix_info.diff
+ Fix compile errors in info file.
+ Fix typo. Closes: #489929.
* Revert useless changes outside debian/ dir.
* Migrate from dpatch to quilt.
* Convert copyright to machine readable format.
* Update compat to 7 and upgrade debhelper dependency to (>= 7)
* Add missing groff dependency. Closes: #456766.
* Fix broken debian/watch file.
* Remove old outdated conflicts.
* Reformat descriptions.
* Remove old outdated maintainer scripts.
-- Bradley Smith <brad@brad-smith.co.uk> Tue, 30 Sep 2008 23:38:09 +0100
gnuplot (4.2.3-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Build the -nox variant without the WX terminal as it pulls in X11.
Requires building twice because WX does not support a pipe protocol to
talk to the main gnuplot binary as gnuplot_x11 does. We now have a second
/usr/bin/gnuplot binary in -x11, we dpkg-divert the -nox binary to
gnuplot-nox. (Closes: #435518)
-- Christoph Berg <myon@debian.org> Fri, 26 Sep 2008 19:39:57 +0200
gnuplot (4.2.3-1) unstable; urgency=low
* New upstream release (Closes: #471685, #487859)
* Ack NMU, thanks to Serafeim Zanikolas. (Closes: #484389)
* debian/control
+ removed tetex-bin,tetex-extra in Build-Depends
+ Used Homepage field
+ Updated Standards-Version to 3.8.0
+ Updated debhelper to >= 6
+ Fixed spelling error in description
* debian/compat:
+ Updated debhelper compat level to 6.
* debian/rules:
+ Added LDFLAGS="-Wl,-z,defs,-as-needed"
* Added description in the patch file 01_check_x11-driver.dpatch
* Updated doc-base section to Science/Mathematics
-- Thierry Randrianiriana <randrianiriana@gmail.com> Sun, 27 Jul 2008 14:17:05 +0300
gnuplot (4.2.2-1.1) unstable; urgency=low
* Non-maintainer upload from the Cambridge BSP.
* Fix bashism in debian/rules (Closes: #484389, thanks to Serafeim Zanikolas
for the patch)
-- Simon McVittie <smcv@debian.org> Sun, 29 Jun 2008 16:36:13 +0100
gnuplot (4.2.2-1) unstable; urgency=low
* New upstream release. (Closes: #444855)
* gnuplot-doc: don't generate ps_symbols.ps to prevent FTBFS on ia64. (Closes: #434954)
* gnuplot segfault with simple plot script. (Closes: #419268)
* Changed section in debian/gnuplot-nox.menu to 'Applications/Science/Mathematics'.
-- Thierry Randrianiriana <randrianiriana@gmail.com> Wed, 26 Sep 2007 14:49:21 +0300
gnuplot (4.2.0-4) unstable; urgency=low
* Added libwxgtk2.6-dev, libcairo2-dev and libpango1.0-dev in Build-Depends
for wxt terminal support. (Closes: #414395)
* The latest upstream release is already in unstable. (Closes: #418985)
-- Thierry Randrianiriana <randrianiriana@gmail.com> Wed, 11 Jul 2007 19:48:57 +0300
gnuplot (4.2.0-3) unstable; urgency=low
* debian/control:
+ changed Build-Depends to support texlive transition (Closes: #399590)
+ added ${misc:Depends} in gnuplot-x11 and gnuplot-nox Depends
* debian/rules:
+ used directly the gnuplot patched to prevent FTBFS (Closes: #415638)
+ clean
* upload to unstable
-- Thierry Randrianiriana <randrianiriana@gmail.com> Mon, 16 Apr 2007 19:17:56 +0300
gnuplot (4.2.0-2) experimental; urgency=low
* Added dpatch in Build-Depends
* Applied patch to src/term.c:
+ only print warning about missing x11-driver when stdin is
a terminal. Same logic as the normal banner, unfortunately the output
cannot be included into banner (bug #244655, #245428)
+ check if x11-driver was found so that default-terminal is
working even when gnuplot-x11 is not installed (patch in 3.8k.1-1)
+ changed wording of warning to a hopefully better version (bug #243189)
-- Thierry Randrianiriana <randrianiriana@gmail.com> Sat, 24 Mar 2007 06:20:26 +0300
gnuplot (4.2.0-1) experimental; urgency=low
* New upstream release (Closes: #412565)
-- Thierry Randrianiriana <randrianiriana@gmail.com> Sun, 11 Mar 2007 12:20:14 +0300
gnuplot (4.2~rc4-1) experimental; urgency=low
* New upstream release:
+ Fixed X11 connection fails with more than 1048570 data points (Closes: #264793)
+ Fixed segmentation fault with recursive function (Closes: #281529)
* Renamed gnuplot.html directory to html
-- Thierry Randrianiriana <randrianiriana@gmail.com> Sun, 28 Jan 2007 16:58:02 +0300
gnuplot (4.2~rc2-1) experimental; urgency=low
* New upstream release:
+ Fixed command line history (Closes: #384919, #319994)
+ Fixed decimals cutted in color legend (Closes: #273725)
+ Allowed fitting of data with some NAN values (Closes: #321129)
+ Allowed color-code by date unless z-axis is also date (Closes: #325052)
+ Fixed svg file produced (Closes: #390688, #274247)
+ Added more colors for epslatex terminal (Closes: #265076)
+ Fixed postscript file produced (Closes: #242302)
+ Fixed missing gnuplot.info file (Closes: #389698, #394872, #398927, #401975, #403918)
+ Added gnuplot.menu file (Closes: #406653, #406957)
* debian/control:
+ Added Homepage
+ Added me as an uploader
+ Upgraded debhelper
+ typo
* Added a watch file
-- Thierry Randrianiriana <randrianiriana@gmail.com> Tue, 23 Jan 2007 19:20:49 +0300
gnuplot (4.0.0-5) unstable; urgency=low
* debian/rules: put pm3d/contrib/ into /usr/share/gnuplot/pm3d/
(closes: #252191).
* debian/rules: removed generated files to lower the patch size
* debian/rules: split the big HTML page into several small ones
(closes: #13311).
-- Cyril Bouthors <cyril@bouthors.org> Mon, 21 Aug 2006 02:42:41 +0300
gnuplot (4.0.0-4) unstable; urgency=low
* debian/copyright: updated current and previous maintainers names and
email adresses. Use http://gnuplot.info/ as URL.
* removed useless debian/changelog.latin1
* debian/control: updated standards-version from 3.6.2.2 to 3.7.2
-- Cyril Bouthors <cyril@bouthors.org> Mon, 21 Aug 2006 01:02:06 +0300
gnuplot (4.0.0-3) unstable; urgency=low
* This upload is aimed to take over the package and fix the easiest bugs
first. I'll upload another version shortly that will take care of the
oh-so-many opened bugs that look almost all fixed upstream and/or
obsolete to me. One of them is 5 years and 160 days old! "Release
early, release often".
* New maintainer (closes: #357753).
* debian/changelog: fixed encoding, removed trailing spaces
* debian/control: moved the package gnuplot-doc from the section "docs"
to the section "doc"
* debian/control: removed obsolete dependencies to xlibs-dev
* debian/gnuplot-nox.README.Debian: applied patch from Frederic Daniel
Luc LEHOBEY <Frederic.Lehobey@free.fr> to clarify licensing issues
(closes: #322827).
-- Cyril Bouthors <cyril@bouthors.org> Fri, 31 Mar 2006 19:00:30 +0200
gnuplot (4.0.0-2.1) unstable; urgency=low
* Non-maintainer Upload.
* Apply patch from : Frank Küster to fix building with tetex 3.0.
(Closes: Bug#321967)
* Fix buffer overflow in term.c, thanks to Elrond and Justing Pryzby.
(Closes: Bug#330024)
-- Anthony Towns <aj@azure.humbug.org.au> Tue, 20 Dec 2005 22:52:01 +1000
gnuplot (4.0.0-2) unstable; urgency=medium
* medium urgency because 4.0 should reach sarge and upgrading from woody
to 4.0.0-1 will fail
* debian/control: gnuplot-nox and gnuplot-x11 replace old
gnuplot-package (closes: #251296)
-- Thimo Neubauer <thimo@debian.org> Sun, 30 May 2004 19:56:28 +0200
gnuplot (4.0.0-1) unstable; urgency=medium
* New upstream release (closes: #246735, #244826, #224491)
* added Debian.NEWS to report about new features/caveats
* medium urgency because this stable upstream version should go into
sarge
* Acknowledged NMU (closes: #239630)
* changed packaging again: "gnuplot" is a metapackage depending on
"gnuplot-nox" and "gnuplot-x11". New installs and upgrades should work
without any surprises. "gnuplot-nox" can also be installed on it's own
(closes: #239679)
* debian/gnuplot.postinst: added workaround for dpkg-bug #156463
* converted changelog to UTF-8
* fix typo in manpage (closes: #241770)
* src/term.c: only print warning about missing x11-driver when stdin is
a terminal. Same logic as the normal banner, unfortunately the output
cannot be included into banner (closes: #244655, #245428)
* src/term.c: changed wording of warning to a hopefully better version
(closes: #243189)
* doc/gnuplot.doc: forcibly removed the last two dead links, upstream
doesn't know where to find the two projects either (closes: #42064)
-- Thimo Neubauer <thimo@debian.org> Sun, 9 May 2004 21:09:51 +0200
gnuplot (3.8k.1-1.1) unstable; urgency=low
* Non-maintainer upload.
* Fix segfault on non-X11 displays. (closes: #239630)
-- Bastian Blank <waldi@debian.org> Sat, 17 Apr 2004 12:07:33 +0200
gnuplot (3.8k.1-1) unstable; urgency=low
* New upstream release aka "gnuplot 4.0 release canidate 1", please test
extensively (Closes: #145730, #155417, #186933, #187933, #203379)
* split into three packages "gnuplot", "gnuplot-doc" and "gnuplot-x11"
to make low-end machines happy (Closes: #169897)
* src/term.c: check if x11-driver was found so that default-terminal is
working even when gnuplot-x11 is not installed
* include upstream NEWS-file (Closes: #219813)
* debian/control: changed build-deps to use new X-dependencies and to be
also usable for woody backports
* upgraded to standards version 3.5.6.0, no changes
* debian/menu: reformatted to fix lintians "unquoted-string"-warning
* updated both README.Debian-files, interesting websites are now
contained in gnuplot-README so that anyone will find them
-- Thimo Neubauer <thimo@debian.org> Sun, 7 Mar 2004 17:19:50 +0100
gnuplot (3.7.3-1) unstable; urgency=low
* new upstream release to fix bugs in 3.7.2. Several fixes already were
in the debian package (closes: #179692)
* debian/rules: added parameter to dh_installinfo to get info into
directory (closes: #163731, #170493)
* debian/rules: upgraded to DH_COMPAT level 4
* debian/rules: exclude CVS when installing examples
* debian/gnuplot-doc.README.Debian: added URL of a german gnuplot-reference
(closes: #169508)
* debian/control: changed build-dep from libpng3-dev to libpng12-dev
-- Thimo Neubauer <thimo@debian.org> Mon, 10 Feb 2003 22:46:14 +0100
gnuplot (3.7.2-7) unstable; urgency=low
* debian/rules: forgot to touch stamp-h.in. This resulted in the %&$&/!
Makefile.in trying to call autoheader and made the build fail on
almost all buildds :-( Now tested with pbuilder...
-- Thimo Neubauer <thimo@debian.org> Sun, 15 Sep 2002 18:41:39 +0200
gnuplot (3.7.2-6) unstable; urgency=low
* term/gpic.trm: applied signedness-patch (Brian Mays) (closes: #55856)
* debian/rules: fixed continuation line
* Makefile.in: added rules from autoconf-infopage for regeneration og
autoconf-files
* debian/rules: more to fix the configure-runs-twice-bug: touch files to
prevent make from invoking ./config.status --recheck
* term/post.trm: added missing "pop". Thanks go to Ralf Neubauer for
a fix (closes: #148496)
-- Thimo Neubauer <thimo@debian.org> Sun, 15 Sep 2002 16:35:51 +0200
gnuplot (3.7.2-5) unstable; urgency=low
* the "Die svgalib! Die!"-release.
* debian/rules: completely regenerated
* debian/rules: add --without-linux-vga to configure-call (closes: #123195)
* debian/control: Build-Deps: changed libpng2-dev to libpng3-dev and
removed autoconf
* docs/gnuplot.{doc,texi}: document "set timefmt %s" (closes: #156145)
* debian/README.debian: added infos about interfaces to other languages
(closes: #145456)
* split documentation into gnuplot-doc package (closes: #118318)
* don't install gnuplot.el into doc-directory anymore, using the package
"gnuplot-mode" makes more sense
* debian/dirs: removed /etc from package
* debian/copyright: corrected sources URL
* graphics.c: added upstream fix to prevent division by zero
(closes: #46174)
-- Thimo Neubauer <thimo@debian.org> Sun, 8 Sep 2002 21:59:35 +0200
gnuplot (3.7.2-4) unstable; urgency=low
* applied upstream patch to fix bug in pslatex terminal
(closes: #141860)
-- Thimo Neubauer <thimo@debian.org> Tue, 16 Apr 2002 14:51:04 +0200
gnuplot (3.7.2-3) unstable; urgency=high
* configure.in: fix wrong "chmod u+s /usr/bin/gnuplot" which makes a
build fail if gnuplot isn't installed (closes: #140446)
-- Thimo Neubauer <thimo@debian.org> Sun, 31 Mar 2002 22:13:04 +0200
gnuplot (3.7.2-2) unstable; urgency=high
* debian/rules: installation into DESTDIR is now directly supported
by the main Makefile, this also fixes the silly "helpfile in wrong
directory"-bug (closes: #137803)
* Makefile.in: added libexecdir to get gnuplot_x11 into the right
directory
* high urgency because the help cannot be found in the last release
which renders the package quite unusable.
-- Thimo Neubauer <thimo@debian.org> Mon, 11 Mar 2002 15:39:21 +0100
gnuplot (3.7.2-1) unstable; urgency=high
* the "non-commercial-purposes-only-clauses suck"-release
* new upstream release, finally fixes the nasty RC license-problem. This
should definitely go into woody (closes: #100612)
* checked for ancient errors (closes: #57174)
* debian/rules: upgraded to DH_COMPAT level 3
* debian/control: depend on debconf (>= 0.5.00) because I need the
seen-flag (thanks to lintian)
* added russian debconf-template provided by Ilgiz Kalmetev
(closes: #137656)
* upgraded to standards version 3.5.6.0
* README.debian: added section about why libreadline cannot be used
and why I want to drop SVGAlib-support in further releases
-- Thimo Neubauer <thimo@debian.org> Sun, 10 Mar 2002 16:27:42 +0100
gnuplot (3.7.1p1-8) unstable; urgency=low
* changed debian/rules according to README.Debian.gz in
autotools-dev
* modified Makefile.in to stop recompiling when
using "make install". This also makes the help work again
(closes: #114908, #63732)
* changed debian/config to use arch instead of dpkg-architecture
(closes: #123464)
* added spanish debconf-template provided by Carlos Valdivia
(closes: #120092)
-- Thimo Neubauer <thimo@debian.org> Tue, 11 Dec 2001 17:45:45 +0100
gnuplot (3.7.1p1-7) unstable; urgency=low
* postinst, postrm: removed bashism (closes: #100551, #100637, #101509,
#104148, #107114, #112098)
* applied patch provided by David Kimdon to fix build-error
(closes: #104909)
* added brazilian debconf-template. Thanks to André Luís Lopes
(closes: #105537)
* applied patch provided by Kevin Ryde to get info-page into section
math (closes: #112374)
-- Thimo Neubauer <thimo@debian.org> Tue, 25 Sep 2001 17:47:19 +0200
gnuplot (3.7.1p1-6) unstable; urgency=low
* fixed typo in Build-Conflicts (closes: #87481, #85202)
* delete old /etc/gnuplot.conf-file (not used since 3.7.1p1-2) on
purge (closes: #57995)
* quiet the possible warnings of suidunregister (closes: #81777)
* also install files from docs/psdoc (closes: #91866)
* added german and swedish debconf-templates (closes: #83753, #83537)
* debian/rules: only compile with debug-info if "debug" is set in
DEB_BUILD_OPTIONS
* upgraded to standards version 3.5.4.0
* Build-depend on xlibs-dev instead of xlib6g-dev
* change from suidmanager to dpkg-statoverride
* debian/config: changed deprecated "isdefault" to "seen"
* only ask for suid-bit on i386 (strange that nobody complained :)
-- Thimo Neubauer <thimo@debian.org> Sun, 10 Jun 2001 18:12:42 +0200
gnuplot (3.7.1p1-5) unstable; urgency=low
* added menu hint, closes #80245
* explicitly added PNG-support in debian/rules
* removed cyclic build-depend on gnuplot, closes #69903
-- Thimo Neubauer <thimo@debian.org> Mon, 8 Jan 2001 15:20:39 +0100
gnuplot (3.7.1p1-4) unstable; urgency=low
* Added missing source dependency information as suggested by Roman
Hodek, closes: #53280
* added code to reset suid-bit on binary instead of doing nothing. Now
even dpkg-reconfigure should work. Thanks to Zack Weinberg for
reporting this bug, closes: #54816
-- Thimo Neubauer <thimo@debian.org> Wed, 22 Dec 1999 22:29:25 +0100
gnuplot (3.7.1p1-3) unstable; urgency=low
* removed dependency on suidmanager, closes: #50371, #51160 and all
merged bugs
* upgraded to standards-version 3.1.0
-- Thimo Neubauer <thimo@debian.org> Mon, 20 Dec 1999 00:07:29 +0100
gnuplot (3.7.1p1-2) unstable; urgency=low
* the dependency-on-svgalib-in-non-i386-archs bug was back (at least for
powerpc), added explicit setting in debian/rules, closes: #49653
* pslatex-bug was solved upstream, closes: #30230
* added debconf-support, gnuplotconfig and /etc/gnuplot.conf no longer
necessary
* added Build-Depends information
-- Thimo Neubauer <thimo@debian.org> Sun, 14 Nov 1999 13:35:25 +0100
gnuplot (3.7.1p1-1) unstable; urgency=low
* New upstream version, mainly bugfixes, closes: #32982, #46809, #24050
-- Thimo Neubauer <thimo@debian.org> Thu, 4 Nov 1999 16:31:07 +0100
gnuplot (3.7.1-1) unstable; urgency=low
* New upstream release
* modified acconfig.h to get the sources compiling
* Allow auto-installation, patch by Roman Hodek. closes: bug #32782
* correct installation of info-files. closes: bug #36270
* included where the upstream sources came from and all maintainers
involved in the creation. closes: bug #38146, #39867
* removed duplicate dwww-entry. closes: bug #38699
* upgraded to standards-version 3.0.0
-- Thimo Neubauer <thimo@debian.org> Sun, 24 Oct 1999 21:37:47 +0200
gnuplot (3.7-1) unstable; urgency=low
* general clean-up of debian/rules
* New upstream release with new copyright
* added more architectures without svgalib to debian/rules
-- Thimo Neubauer <thimo@debian.org> Sun, 28 Mar 1999 21:10:23 +0200
gnuplot (3.5beta6.347-4) frozen unstable; urgency=low
* included documentation with doc-base (fixes #31178)
* gnuplot only depends on svgalib1g | svgalib1g-dummy iff binary depends on
any real svgalib. Now the dependencies should be correct for all archs
(fixes #30071, #27683)
* several cosmetic changes in debian/rules
-- Thimo Neubauer <thimo@debian.org> Mon, 28 Dec 1998 20:52:19 +0100
gnuplot (3.5beta6.347-3) frozen; urgency=low
* Changed gnuplotconfig to use /tmp in a secure manner (Thanks to
Richard Kettlewell <rjk@greenend.org.uk>). fixes #29280
* included dh_clean in binary-target (Thanks, Wichert!). fixes #29533
-- Thimo Neubauer <thimo@debian.org> Wed, 18 Nov 1998 14:53:20 +0100
gnuplot (3.5beta6.347-2) unstable; urgency=low
* Changed dependency from svgalibg1 to svgalibg1 | svgalib-dummyg1
(fixes bug #27252)
* Changed debian/rules to use debhelper
-- Thimo Neubauer <thimo@debian.org> Fri, 2 Oct 1998 20:39:42 +0200
gnuplot (3.5beta6.347-1) unstable; urgency=low
* New upstream release
* New maintainer
-- Thimo Neubauer <thimo@debian.org> Thu, 17 Sep 1998 23:38:35 +0200
gnuplot (3.5beta6.340-6) unstable; urgency=low
* gnuplot.el from the source dist added to /usr/doc/gnuplot/ as
suggested by <Emilio.Lopes@Physik.TU-Muenchen.DE> (fixes bug #23132)
-- tibor simko <simko@debian.org> Fri, 05 Jun 1998 13:00:00 +0100
gnuplot (3.5beta6.340-5) frozen unstable; urgency=low
* applied a patch sent by upstream gnuplot cgm terminal maintainer
jim van zandt <jrv@vanzandt.mv.com> to fix bad dashed lines problem
when using gnuplot's cgm terminal (fixes bug #20183)
* doesn't link to gnu's readline library anymore, since it probably
violates the library copyleft (gnuplot is "free" but non-gpl); gnuplot
uses now its internal readline facility instead
-- tibor simko <simko@debian.org> Fri, 27 Mar 1998 10:24:00 +0100
gnuplot (3.5beta6.340-4) frozen unstable; urgency=low
* after talking to upstream authors, gnuplot_x11 is moved to
/usr/lib/gnuplot directory; its manpage is left out of the dist
accordingly (this surely is a better solution to that missing
manpage problem with 340-2)
* applied a rather important patch sent from upstream gnuplot `hidden3d.c'
maintainer hans-bernhard broeker <broeker@physik.rwth-aachen.de>
* small bugs fixed in debian/rules
-- tibor simko <simko@debian.org> Fri, 20 Mar 1998 15:00:00 +0100
gnuplot (3.5beta6.340-3) frozen unstable; urgency=low
* lasergnu script is left out of the package, since (i) it uses csh,
(ii) it uses an insecure temporary file programming style ($$), and
(iii) the default gnuplot policy is *not* to install it; i've
contacted the upstream authors concerning the second item above and
will add lasergnu back to the dist when it is ready (fixes bug #19792)
* don't recommend c-shell anymore because lasergnu is left out
* two missing manpages added; i've written them myself, they are not
"official" as far as the gnuplot program is concerned
* `gnuplot.gih' is now in the correct /usr/share/gnuplot directory
* all the above changes makes lintian 0.3.1 satisfied
-- tibor simko <simko@debian.org> Wed, 18 Mar 1998 14:34:00 +0100
gnuplot (3.5beta6.340-2) unstable; urgency=low
* email address for sending gnuplot bugs changed to submit@bugs.debian.org,
as suggested by dirk eddelbuettel <edd@debian.org>
* sources split to .orig.tar.gz and .diff.gz while building .deb
* lintian 0.3.0 almost satisfied: it miss 2 manpages (they are not
really important, though)
-- tibor simko <simko@debian.org> Fri, 13 Mar 1998 11:34:00 +0100
gnuplot (3.5beta6.340-1) unstable; urgency=low
* new upstream release (pre 3.6pl340)
* portable network graphics (png) now works with gnuplot (fixes #16711)
* debian/rules now told to exclude libgd library, thanks to
james troup <jjtroup@comp.brad.ac.uk> (fixes #17207)
* specified gnuplot location in docs/latextut/Makefile.in, thanks to
james troup <jjtroup@comp.brad.ac.uk> (fixes #17207)
* a patch to correct an off-by-one error in `datafile.c' applied manually,
since the patch is still waiting to get into upstream sources (fixes #6923)
* a patch to compile `util.c' cleanly under alpha glibc2 applied manually,
since the patch is still waiting to get into upstream sources (fixes #13763)
* standards-version: 2.4.0.0
-- tibor simko <simko@debian.org> Mon, 16 Feb 1998 10:10:10 +0100
gnuplot (3.5beta6.336-3) unstable; urgency=low
* menu file rewritten (fixing bug #15746)
-- tibor simko <simko@debian.org> Tue, 9 Dec 1997 14:30:57 +0100
gnuplot (3.5beta6.336-2) unstable; urgency=low
* fixed a small bug in postinst: the script didn't really call install-info
and update-menus during the first install (upgrades were correct only)
-- tibor simko <simko@debian.org> Wed, 26 Nov 1997 15:37:12 +0100
gnuplot (3.5beta6.336-1) unstable; urgency=low
* new upstream release (pre 3.6pl336) (fixing bug #9231)
* compiled under libc6, xlib6g (fixing bug #13848)
* new docs structure, some obsolete files removed (fixing bugs #8182
and #10910)
* new debian rules (fixing bugs #12301, #12731, #13938)
* added suid root handling scripts (fixing bug #8013)
* new maintainer
-- tibor simko <simko@debian.org> Fri, 21 Nov 1997 15:37:12 +0100
gnuplot (3.5beta6.328-2) unstable; urgency=low
* Gnuplot now installs info and html docs (html docs appear in dwww menu).
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Sun, 6 Apr 1997 23:27:08 +0200
gnuplot (3.5beta6.328-1) unstable; urgency=low
* Upgraded upstream source
* removed old "set locale" patch, as upstream source now seems to have
much better patch (not sure though)
* removed some junk from the .diff file
* not yet using setuid manager, nor am I using "make install" in the
rules file.
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Wed, 19 Mar 1997 21:30:09 +0100
gnuplot (3.5beta6.319-3) unstable; urgency=low
* Included location of sourcefile in copyright.
* Removed 1/2 of example files, that really were not
interesting at all (Dirk Eddelbuettel)
* file mods of some documentation, /usr/local/bin/perl
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Fri, 7 Feb 1997 14:50:51 +0100
gnuplot (3.5beta6.319-2) unstable; urgency=low
* added "--prefix=/usr --datadir=/usr/lib --with-lasergnu
--with-gnu-readline=-lreadline " to configure commandline, fixing
bug 6429
* fixed core dump when gnuplot executes `set locale'
* Recommends c-shell (not csh), fixing bugs 6426 and 6432.
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Mon, 6 Jan 1997 11:20:38 +0100
gnuplot (3.5beta6.319-1) unstable; urgency=low
* Upgraded to upstream version
* Upstream version is actually "3.6 beta 319", but I don't think
I can call it 3.6beta319, as that will create problems when
the real 3.6 comes out (3.6beta319 > 3.6, so dselect will refuse
to install 3.6 over 3.6beta319). If I could have used a better name,
please tell me.
* This release doesn't have the debian-specific ../demo/defaults.ini
file, as I couldn't find a description for it in the debian files,
and the propper defaults may have changed a bit any way
* I allow configure/autoconf to make the configure/makefiles
in stead of including the makefiles from the distribution.
* Unfortunately, the csh lasergnu script changed too much for me
to be able to reliably pach it back to usebash (I don't use the
lasergnu script myself). So, gnuplot again recommends csh (sorry).
* package registers menuentry.
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Sat, 4 Jan 1997 12:24:49 +0100
gnuplot (3.5-7) unstable; urgency=low
* changed to new source format
* removed one set of examples
* included docs in .deb packag
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Fri, 25 Oct 1996 18:52:06 +0200
|