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 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
|
sysstat (12.0.3-2) unstable; urgency=medium
* Upload to unstable.
-- Robert Luberda <robert@debian.org> Sat, 06 Apr 2019 09:18:26 +0200
sysstat (12.0.3-1) experimental; urgency=medium
* New upstream stable version:
+ sadf: Fix out of bound reads security issues (CVE-2018-19416 and
CVE-2018-19517, closes: #914384, #914553);
+ sadf: Fix possible infinite loop;
+ sar: Fortify remap_struct() function to prevent possible crashes on
reading binary datafiles generated by older versions of sysstat.
* systat.init.d: revert a change introduced in 11.5.5-1, as it caused
the start script to fail to execute the command that adds "Linux Restart"
marker into statistics file on systems on which systemd is not used.
Thanks to Georgios Zarkadas for noticing this (closes: #924864).
* debian/rules: replace deprecated dh_systemd_start by dh_installsystemd,
as suggested by lintian; the former command was ignored by debhelper v11,
what in turn resulted in the `--no-start' option being ignored, and the
restart markers were incorrectly added during package upgrades.
-- Robert Luberda <robert@debian.org> Sun, 17 Mar 2019 23:09:46 +0100
sysstat (12.0.1-1) unstable; urgency=medium
* New upstream stable version.
-- Robert Luberda <robert@debian.org> Tue, 07 Aug 2018 21:03:34 +0200
sysstat (12.0.0-1) unstable; urgency=medium
* New upstream stable version.
* Install images referenced by README.md in doc directory.
* Standards-Version: 4.2.0.
-- Robert Luberda <robert@debian.org> Tue, 07 Aug 2018 08:05:12 +0200
sysstat (11.7.4-2) unstable; urgency=medium
* Add 10-ignore-ut-failures.patch to fix FTBFS on a few architectures
by temporarily ignoring unit tests failures if the arch is big endian.
* Update 00-Makefile.patch to drop unconditional -O2 flag, so that
DEB_BUILD_OPTIONS=noopt now works as expected.
-- Robert Luberda <robert@debian.org> Sun, 03 Jun 2018 21:27:15 +0200
sysstat (11.7.4-1) unstable; urgency=medium
* New upstream (development) version.
-- Robert Luberda <robert@debian.org> Sun, 03 Jun 2018 15:54:37 +0200
sysstat (11.7.3-1) unstable; urgency=medium
* New upstream (development) version.
* Add 09-enable-colors.patch to replace /etc/profile.d/sysstat.sh
with a code change to obey Debian Policy (closes: #887152).
* Bump debhelper's compat version to 11.
* Switch VCS fields to salsa.
* Standards-Version: 4.1.4 (no changes).
-- Robert Luberda <robert@debian.org> Sun, 27 May 2018 22:34:12 +0200
sysstat (11.6.1-1) unstable; urgency=medium
* New upstream version (closes: #875656, #883863).
* Remove no longer needed patches 13-remove-sccsid.patch, and
14-fix-mtab-reading.patch.
* debian/control:
+ set Rules-Requires-Root to "no";
+ Standards-Version: 4.1.2 (no changes).
-- Robert Luberda <robert@debian.org> Sat, 23 Dec 2017 09:17:46 +0100
sysstat (11.6.0-1) unstable; urgency=medium
* New upstream version.
* Add 14-fix-mtab-reading.patch to fix a crash occurring in sadc while
reading really long lines in /etc/mtab (closes: #872926).
* Standards-Version: 4.1.0 (no changes).
-- Robert Luberda <robert@debian.org> Fri, 25 Aug 2017 22:08:58 +0200
sysstat (11.5.7-1) unstable; urgency=medium
* New upstream version.
* Drop 16-buffer-overflow.patch, applied upstream.
* Update 00-Makefile.patch and debian/rules to support the standard
build flags like CPPFLAGS or LDFLAGS.
-- Robert Luberda <robert@debian.org> Sat, 08 Jul 2017 12:03:13 +0200
sysstat (11.5.6-2) unstable; urgency=low
* Upload to unstable.
* Merge changes from 11.4.3-2.
* Standards-Version: 4.0.0 (no changes).
-- Robert Luberda <robert@debian.org> Tue, 20 Jun 2017 21:21:11 +0200
sysstat (11.5.6-1) experimental; urgency=low
* New upstream version.
* Update 00-Makefile.patch, 01-isag.patch, and remove the following patches,
applied by upstream: 9-format-warning.patch, 10-isag-menu-refresh.patch,
12-isag-new-format-support.patch, 14-spelling-typo.patch, 15-isag-xz.patch.
-- Robert Luberda <robert@debian.org> Sun, 21 May 2017 10:22:22 +0200
sysstat (11.5.5-1) experimental; urgency=low
* New upstream (development) version.
* Simplify 00-Makefile.patch and update it to restore generation of isag
script. Refresh other patches for new upstream version.
* Bump debhelper's compat version to 10.
* Simplify debian/rules, pass --docdir to configure, and enable all hardening
options.
* Install /etc/profile.d script to enable color output of sar(1).
* Install systemd start unit, based on the one provided by upstream.
* Remove unused parts of init.d file.
-- Robert Luberda <robert@debian.org> Sun, 23 Apr 2017 21:49:08 +0200
sysstat (11.4.3-2) unstable; urgency=medium
* Add 16-buffer-overflow.patch from Bernhard Übelacker to fix crash
of `sar -s 04:00' command (closes: #863197).
-- Robert Luberda <robert@debian.org> Thu, 25 May 2017 22:26:05 +0200
sysstat (11.4.3-1) unstable; urgency=medium
* New upstream (stable) version.
-- Robert Luberda <robert@debian.org> Sat, 28 Jan 2017 10:43:40 +0100
sysstat (11.4.1-1) unstable; urgency=medium
* New upstream (stable) version.
-- Robert Luberda <robert@debian.org> Sun, 09 Oct 2016 18:00:03 +0200
sysstat (11.3.5-1) unstable; urgency=medium
* New upstream version.
* Fix a typo in README.Debian.
-- Robert Luberda <robert@debian.org> Sun, 03 Jul 2016 13:11:51 +0200
sysstat (11.3.3-1) unstable; urgency=medium
* New upstream version.
* Drop 16-upstream-6dc2c71439.patch.
* Standards-Version: 3.9.8.
-- Robert Luberda <robert@debian.org> Sat, 16 Apr 2016 22:57:05 +0200
sysstat (11.3.2-1) unstable; urgency=medium
* New upstream version.
* New patches:
+ 14-spelling-typo.patch to fix a typo in man page spotted by lintian;
+ 15-isag-xz.patch to support .xz files in isag;
+ 16-upstream-6dc2c71439.patch taken from the upstream github repository
to fix incorrect display of some stats on 32-bit systems.
* debian/control:
+ depend on xz-utils instead of bzip2 (closes: #818956);
+ switch Vcs-Git to https, and Vcs-Browser to cgit;
+ sort the file with wrap-and-sort command.
-- Robert Luberda <robert@debian.org> Tue, 29 Mar 2016 23:57:41 +0200
sysstat (11.3.1-1) unstable; urgency=medium
* New upstream version.
* Standards-Version: 3.9.7 (no changes).
-- Robert Luberda <robert@debian.org> Thu, 03 Mar 2016 00:00:17 +0100
sysstat (11.2.0-1) unstable; urgency=medium
* New upstream version.
* Removed 11-nfsiostat-whatis-entry.patch - no longer applicable,
the nfsiostat-systat command was removed by upstream.
* Update package description not to mention the removed command.
* Enable `pie' and `bindnow' hardening flags.
* Use https protocol in Vcs-Browser control field.
-- Robert Luberda <robert@debian.org> Wed, 27 Jan 2016 23:19:49 +0100
sysstat (11.1.8-1) unstable; urgency=medium
* New upstream version.
* Removed isag.menu file to fix `command-in-menu-file-and-desktop-file'
given by lintian.
-- Robert Luberda <robert@debian.org> Mon, 26 Oct 2015 00:54:44 +0100
sysstat (11.1.7-1) unstable; urgency=medium
* New upstream version.
-- Robert Luberda <robert@debian.org> Sun, 27 Sep 2015 22:37:03 +0200
sysstat (11.1.6-2) unstable; urgency=medium
* Update 13-remove-sccsid.patch for tapestat.c to make builds
reproducible again (closes: #798469).
-- Robert Luberda <robert@debian.org> Thu, 10 Sep 2015 22:37:17 +0200
sysstat (11.1.6-1) unstable; urgency=medium
* New upstream version.
* Document newly added tapestat command in the package description,
and mention its source file in debian/copyright.
* Add cron-daemon alternative to sysstat's Recommends (closes: #796873).
-- Robert Luberda <robert@debian.org> Sun, 06 Sep 2015 15:50:14 +0200
sysstat (11.1.5-1) unstable; urgency=medium
* New upstream version.
-- Robert Luberda <robert@debian.org> Sat, 20 Jun 2015 11:35:30 +0200
sysstat (11.1.4-2) unstable; urgency=medium
* Upload to unstable.
-- Robert Luberda <robert@debian.org> Tue, 12 May 2015 20:59:00 +0200
sysstat (11.1.4-1) experimental; urgency=medium
* New upstream (development) version.
* Update patches for the new version.
* Simplify debian/rules, and add support for cross compiling.
* Switch debian/copyright to DEP5 format.
-- Robert Luberda <robert@debian.org> Tue, 14 Apr 2015 08:34:15 +0200
sysstat (11.1.3-1) experimental; urgency=medium
* New upstream (development) version.
* Update patches for the new version.
* Add 13-remove-sccsid.patch to remove usage of __DATE__ and __TIME__
macros in order to make builds reproducible.
* Install newly introduced contrib scripts irqstat and irqtop into
examples directory.
* Fix debian/watch file not to include "xz" extension in upstream version.
-- Robert Luberda <robert@debian.org> Sun, 15 Mar 2015 11:03:59 +0100
sysstat (11.0.1-1) unstable; urgency=medium
* New upstream (stable) version.
* Update debian/watch to prefer "xz" tarballs.
* Standards-Version: 3.9.6 (no changes).
-- Robert Luberda <robert@debian.org> Fri, 26 Sep 2014 10:03:15 +0200
sysstat (11.0.0-1) unstable; urgency=medium
* New upstream version:
+ The standard daily data files may now be named saYYYYMMDD instead
of saDD, especially when HISTORY variable is greater than 28.
* Update patches for the new version.
* Add 12-isag-new-format-support.patch to handle the newly introduced
saYYYYMMDD log files format.
-- Robert Luberda <robert@debian.org> Fri, 29 Aug 2014 08:33:19 +0200
sysstat (10.3.1-1) unstable; urgency=medium
* New upstream version (development):
+ Daily data files format has changed, and is *not* compatible with the
previous one.
+ sar/sadc/sadf: Now take into account a change of CPU count in datafiles.
The number of CPU is displayed in the RESTART messages (closes: #670215).
+ Rename nfsiostat to nfsiostat-sysstat and indicate it is now obsolete.
An nfsiostat command is already included in the nfs-common package.
* Remove 05-defaultfile_message.patch, merged upstream.
* Add 11-nfsiostat-whatis-entry.patch to fix `manpage-has-bad-whatis-entry'
lintian warning on nfsiostat-sysstat(1) man page.
* debian/control: Update information about the nfsiostat command.
* debian/rules: No longer pass --start option to dh_installinit to fix
the update-rc.d warnings appearing during installation time.
* Cleanup maintainer scripts: remove sysstat.preinst, and ancient parts
of sysstat.postinst.
-- Robert Luberda <robert@debian.org> Tue, 29 Apr 2014 22:09:36 +0200
sysstat (10.2.1-1) unstable; urgency=medium
* New upstream version.
* Add Keywords for isag.desktop (lintian).
* debian/rules:
+ pass new --enable-copy-only config option;
+ built binaries with LFS support (lintian);
+ minor cleanup.
* Add build-dependency on pkg-config used by the configure script.
-- Robert Luberda <robert@debian.org> Sun, 16 Mar 2014 23:29:52 +0100
sysstat (10.2.0-1) unstable; urgency=low
* New upstream stable version.
* debian/control:
+ replace `tk8.5' with `tk' in isag depends line (closes: #725696);
+ move `Homepage' to source package fields (lintian);
+ bump Standards-Version to 3.9.5.
-- Robert Luberda <robert@debian.org> Sun, 10 Nov 2013 10:25:19 +0100
sysstat (10.1.7-1) unstable; urgency=low
* New upstream version.
* Remove no longer needed 11-fix-concurrency-build-issue.patch.
-- Robert Luberda <robert@debian.org> Sat, 21 Sep 2013 22:27:45 +0200
sysstat (10.1.6-2) unstable; urgency=low
[ Louis Bouchard ]
* New 11-fix-concurrency-build-issue.patch: Extend explicit rules
to avoid build issues occurring during parallel build (closes: #714153).
-- Robert Luberda <robert@debian.org> Thu, 01 Aug 2013 08:41:15 +0200
sysstat (10.1.6-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Thu, 13 Jun 2013 22:27:39 +0200
sysstat (10.1.5-2) unstable; urgency=low
* Upload to unstable.
* New 10-isag-menu-refresh.patch: Add Refresh button to file menu to make
it possible to re-read contents of /var/log/sysstat directory in case
isag is running over midnight, and new file is created (LP: #924197).
Please note that (depending on /etc/sysstat/sysstat settings) the new file
created just after midnight can be replaced with a symbolic link, so it
might be necessary to use the Refresh button again in such cases.
* Standards-Version: 3.9.4 (no changes).
-- Robert Luberda <robert@debian.org> Fri, 10 May 2013 10:34:59 +0200
sysstat (10.1.5-1) experimental; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Sun, 07 Apr 2013 12:36:24 +0200
sysstat (10.1.4-1) experimental; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Sun, 24 Mar 2013 11:05:44 +0100
sysstat (10.0.5-1) unstable; urgency=low
* New upstream (stable) version.
* debian/control: Document the cifsiostat and nfsiostat tools in sysstat
package description (closes: #667618).
* debian-sa1, sysstat.cron.daily, sysstat.postinst, 04-configs.patch,
sysstat.init.d: Remove Debian-specific SA1_OPTIONS and SA2_OPTIONS
variables, use upstream-provided SADC_OPTIONS instead. Provide a
sysstat.NEWS entry for the change.
-- Robert Luberda <robert@debian.org> Sun, 20 May 2012 11:14:47 +0200
sysstat (10.0.4-1) unstable; urgency=low
* New upstream (stable) version.
* Update build-dependencies on debhelper.
* Standards-Version: 3.9.3 (no changes).
-- Robert Luberda <robert@debian.org> Tue, 13 Mar 2012 22:59:04 +0100
sysstat (10.0.3-1) unstable; urgency=low
* New upstream (stable) release.
* Switch to devhelper v9.
* debian/control: Add VCS fields, update source/options.
* debian/rules: remove .pc/.dpkg-source-unapply file in configure target
to fix broken behaviour of dpkg-buildpackage (see Bug#649521).
-- Robert Luberda <robert@debian.org> Sat, 03 Dec 2011 17:38:42 +0100
sysstat (10.0.2-2) unstable; urgency=low
* Update Dutch translation of debconf templates (closes: #643308).
-- Robert Luberda <robert@debian.org> Sun, 16 Oct 2011 23:24:15 +0200
sysstat (10.0.2-1) unstable; urgency=low
* New upstream (stable) release.
* debian/control: Set architecture to linux-any (closes: #619949).
* The debconf message has already been fixed in 8.1.8-2, (LP: #342655).
-- Robert Luberda <robert@debian.org> Sun, 28 Aug 2011 19:50:36 +0200
sysstat (10.0.1-1) unstable; urgency=low
* New upstream (stable) release.
* Add Danish translation of debconf templates (closes: #621367).
* Standards-Version: 3.9.2 (no changes).
* sysstat.{postinst,postrm}: register the ucf-managed file with ucfr.
* Sort dependency fields with wrap-and-sort command.
-- Robert Luberda <robert@debian.org> Wed, 15 Jun 2011 07:27:46 +0200
sysstat (10.0.0-1) unstable; urgency=low
* New upstream (stable) release:
+ Don't link sysstat's commands with sensors library if not
needed (closes: #612571).
+ [Adam Heath]: iostat incorrectly mapped device-mapper IDs
greater than 256. This is now fixed (closes: #614397).
* debian/rules: switch to using dh command.
* Remove 07-remove_fdatasync.patch, no longer needed.
-- Robert Luberda <robert@debian.org> Wed, 23 Mar 2011 13:26:07 +0100
sysstat (9.1.7-2) unstable; urgency=low
* Upload to unstable.
* debian/rules:
+ call dpkg-buildflags for initial values of CFLAGS & LDFLAGS;
+ use dh_auto_{configure,install,clean} debhelper commands;
+ provide build-arch and build-indep targets.
* Updated 00-Makefile.patch to make it possible to install isag only.
* 09-format-warning.patch: Fix a warning given by gcc -Wformat.
-- Robert Luberda <robert@debian.org> Mon, 07 Feb 2011 20:57:05 +0100
sysstat (9.1.7-1) experimental; urgency=low
* New upstream development release.
* Format of data files has changed again (BTW. the debconf message
was already fixed in 8.1.8-2, (LP: #342655)).
* Refresh patches. Also rename 05-scripts.patch to 08-scripts.patch.
-- Robert Luberda <robert@debian.org> Wed, 19 Jan 2011 22:07:33 +0100
sysstat (9.1.5-1) experimental; urgency=low
* New upstream development release.
* Standards-Version: 3.9.1 (no changes).
* Bump debhpelper's compat level to 8.
* Remove conflict with ancient version of atsar.
* Add libsensors-dev4 to build-depends.
-- Robert Luberda <robert@debian.org> Sun, 12 Sep 2010 16:18:47 +0200
sysstat (9.0.6.1-2) unstable; urgency=low
* Switch to dpkg-source 3.0 (quilt) format:
+ split *.diff.gz into patches 00 to 06;
+ omit some debugging cruft that was included in *.diff.gz by accident.
* 07-remove_fdatasync.patch: remove calls to fdatasync (closes: 559686).
-- Robert Luberda <robert@debian.org> Tue, 23 Mar 2010 22:21:52 +0100
sysstat (9.0.6.1-1) unstable; urgency=low
* New upstream release.
* sysstat.initd: add $remote_fs dependency (linitan).
* Remove asterisks from sysstat.NEWS (lintian).
* copyright: refer to non-symlinked GPL files (lintian).
* Standards-Version: 3.8.4 (no changes).
* Ignore erros from `update-alternatives --display' (closes: #563570).
-- Robert Luberda <robert@debian.org> Thu, 11 Mar 2010 15:37:21 +0100
sysstat (9.0.6-2) unstable; urgency=low
* Remove both stop link from rc1.d, and the lintian override
(closes: #562660).
* Fix spelling typo in isag(1).
-- Robert Luberda <robert@debian.org> Sun, 03 Jan 2010 15:00:37 +0100
sysstat (9.0.6-1) unstable; urgency=low
* New upstream release:
+ sadf improved (closes: #546259).
* Install a new sargraph script into examples.
-- Robert Luberda <robert@debian.org> Sat, 21 Nov 2009 21:34:09 +0100
sysstat (9.0.5-1) unstable; urgency=low
* New upstream release.
* Add an override for `init.d-script-possible-missing-stop' lintian's
warning.
-- Robert Luberda <robert@debian.org> Sun, 27 Sep 2009 09:04:11 +0200
sysstat (9.0.4-1) unstable; urgency=low
* New upstream release
+ memory corruption bug fixed by upstream (closes: #507659).
* Standards-Version: 3.8.3.
* Remove deprecated dh_desktop call from debian/rules.
-- Robert Luberda <robert@debian.org> Tue, 18 Aug 2009 06:29:03 +0200
sysstat (9.0.3-2) unstable; urgency=low
* Remove some debugging cruft left by accident.
-- Robert Luberda <robert@debian.org> Sun, 07 Jun 2009 21:37:20 +0200
sysstat (9.0.3-1) unstable; urgency=low
* New upstream release
* Standards-Version: 3.8.1 (no changes)
* Update Brazilian Portuguese debconf translation (closes: #519253).
* Support status action in init.d script (closes: #526051).
* Mention cron.daily's job in README.Debian (closes: #524219).
-- Robert Luberda <robert@debian.org> Sun, 07 Jun 2009 09:38:31 +0200
sysstat (9.0.1-1) unstable; urgency=low
* New upstream release:
+ sar man page now mentions dependencies on sadc options (closes: #518438).
* Makefile.in: don't update sysstat.pot in clean.
-- Robert Luberda <robert@debian.org> Sun, 08 Mar 2009 19:01:43 +0100
sysstat (9.0.0-1) unstable; urgency=low
* New upstream release.
* sa_common.c: fixed double-free.
* Fixed typo in Polish translation of debconf templates.
* Makefile.in: don't automatically update sysstat.pot file.
-- Robert Luberda <robert@debian.org> Sat, 07 Mar 2009 23:11:46 +0100
sysstat (8.1.8-2) unstable; urgency=low
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #513671
* Debconf translation updates:
- Galician. Closes: #514162
- Swedish. Closes: #514174
- Basque. Closes: #514178
- Vietnamese. Closes: #514308
- Slovak. Closes: #514383
- Czech. Closes: #514440
- Japanese. Closes: #514507
- Catalan. Closes: #514638
- Russian. Closes: #514895
- Italian. Closes: #515169
- German. Closes: #515680
- Spanish. Closes: #515723
- Portuguese. Closes: #516021
- French. Closes: #516077
- Finnish. Closes: #516334
[ Robert Luberda ]
* Applied Christian's patch from bug#513671. Many thanks to him, and all
the people who worked on improving the debconf templates.
* Updated Polish debconf translations.
* debian/copyright: sysstat is distributed under the terms of GPL ver. 2
*or later* (fixes lintian's `copyright-refers-to-versionless-license...').
-- Robert Luberda <robert@debian.org> Sun, 22 Feb 2009 20:25:20 +0100
sysstat (8.1.8-1) unstable; urgency=low
* New upstream release.
* Add debian-sa1 script and run it from cron.d job (closes: #499461).
* If sar cannot open a data file, print a message indicating that sysstat
might not be enabled (closes: #511418).
* Remove stop links from rc0 and rc6 run levels (cf. #495545).
* Remove the "sysstat not enabled" warning from out init script (closes:
#507493).
* Switch to v7 debhelper's compat level, use dh_prep instead of `dh_clean -k'.
-- Robert Luberda <robert@debian.org> Mon, 19 Jan 2009 23:01:18 +0100
sysstat (8.1.7-1) unstable; urgency=low
* New upstream release.
-- Robert Luberda <robert@debian.org> Thu, 13 Nov 2008 19:46:29 +0100
sysstat (8.1.6-2) unstable; urgency=low
* Upload to unstable.
-- Robert Luberda <robert@debian.org> Sun, 09 Nov 2008 09:11:06 +0100
sysstat (8.1.6-1) experimental; urgency=low
* New upstream release:
+ Daily data files format has changed again.
+ NFS v4 support added to sar -n (closes: #434442);
+ All sysstat commands are made consistent with how parameters are
interpreted: "COMMAND <interval>" now generates a report continuously,
"COMMAND <interval> 0" causes an error, "COMMAND 0" displays a report
since system startup (closes: #475707);
+ Option -S added to sadc, which replaces previous options -I or -d. Existing
defaults file should be updated.
* Standards-Version: 3.8.0 (no changes).
* Merge the following change from Ubuntu:
- remove call to execvp() as it's not needed and has potential
security problems.
*
-- Robert Luberda <robert@debian.org> Sat, 01 Nov 2008 10:36:17 +0100
sysstat (8.1.2-2) unstable; urgency=low
* Initial Finnish translations of debconf templates (closes: #472620).
* Update isag dependency from `tk8.3|wish' to `tk8.5|wish'
* Upload to unstable.
-- Robert Luberda <robert@debian.org> Sun, 13 Apr 2008 17:59:13 +0200
sysstat (8.1.2-1) experimental; urgency=low
* New upstream version.
* Change doc-base section to System/Monitoring.
-- Robert Luberda <robert@debian.org> Thu, 20 Mar 2008 21:31:25 +0100
sysstat (8.1.1-1) experimental; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* sysstat.postinst: while removing daily data files also remove the
bzip2-compressed ones.
* Update debian/copyright.
* sysstat.sysconfig.in: remove @PACKAGE_VERSION@ from the file to avoid
unnecessary dpkg conffile change prompt on each upgrade.
* Build with debhelper v6.
-- Robert Luberda <robert@debian.org> Sun, 02 Mar 2008 15:16:27 +0100
sysstat (8.0.4-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Sun, 06 Jan 2008 15:20:52 +0100
sysstat (8.0.3-2) unstable; urgency=low
* Fix upstream Makefile not to install bogus directory under /usr/share/doc.
* Remove Encoding line from isag.desktop and add dh_desktop call (lintian).
* Try to fix hyphens in installed man pages.
* Standards-Version: 3.7.3 (no changes).
-- Robert Luberda <robert@debian.org> Thu, 03 Jan 2008 23:28:52 +0100
sysstat (8.0.3-1) unstable; urgency=low
* New upstream version (stable).
* Update upstream URL in debian/{copyright,watch,control}.
* Switch to the new Homepage field.
* Add dependency on bzip2, used to compress log files.
-- Robert Luberda <robert@debian.org> Tue, 20 Nov 2007 23:24:52 +0100
sysstat (8.0.2-1) unstable; urgency=low
* New upstream version (stable).
-- Robert Luberda <robert@debian.org> Sun, 28 Oct 2007 09:29:49 +0100
sysstat (8.0.1-1) unstable; urgency=low
* New upstream version (stable).
-- Robert Luberda <robert@debian.org> Mon, 08 Oct 2007 23:55:13 +0200
sysstat (8.0.0-1) unstable; urgency=low
* New upstream version (stable):
+ daily data files format has changed again.
* Change isag's menu section to Applications/System/Monitoring (lintian).
* Update upstream e-mail in the copyright file.
-- Robert Luberda <robert@debian.org> Mon, 03 Sep 2007 19:55:11 +0200
sysstat (7.1.6-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
-- Robert Luberda <robert@debian.org> Sun, 08 Jul 2007 17:38:12 +0200
sysstat (7.1.5-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* Fix and reformat package description (closes: #427929).
* Use ${source:Version} instead of ${Source-Version} (lintian).
* Do not ignore clean errors in debian/rules (lintian).
-- Robert Luberda <robert@debian.org> Sun, 01 Jul 2007 12:07:12 +0200
sysstat (7.1.4-1) unstable; urgency=low
* New upstream version (development).
-- Robert Luberda <robert@debian.org> Thu, 03 May 2007 11:05:07 +0200
sysstat (7.1.3-1) experimental; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* Register FAQ with doc-base.
* Rename /etc/sysstat/config to /etc/sysstat/sysstat to be consistent with
the file name used by upstream.
-- Robert Luberda <robert@debian.org> Fri, 30 Mar 2007 21:29:43 +0200
sysstat (7.1.2-1) experimental; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* debian/rules: Adjust for the new autoconf stuff introduced by upstream.
* Small isag enhancements:
+ add support for log subdirectories and compressed log files,
+ auto load the latest log file,
+ use standard tk_messageBox to display error messages,
+ "save picture" prompts user for choosing path.
Patch sent upstream, so it eventually gets included in they tarball.
-- Robert Luberda <robert@debian.org> Sat, 17 Mar 2007 13:06:07 +0100
sysstat (7.0.4-4) unstable; urgency=low
* Small isag enhancements, backported from version 7.1.3:
+ add support for log subdirectories and compressed log files,
+ auto load the latest log file,
+ use standard tk_messageBox to display error messages,
+ "save picture" prompts user for choosing path.
* Register FAQ with doc-base.
-- Robert Luberda <robert@debian.org> Thu, 29 Mar 2007 20:47:12 +0200
sysstat (7.0.4-3) unstable; urgency=low
* Add 'exit 0' at the end of sa2.in (closes: #414491).
-- Robert Luberda <robert@debian.org> Mon, 12 Mar 2007 21:56:29 +0100
sysstat (7.0.4-2) unstable; urgency=low
* Test and improve support for keeping sar logs for more then one month.
* sysstat.init: call sa1 instead of sadc in order not to duplicate part
of sa1 code which would have to be added otherwise.
-- Robert Luberda <robert@debian.org> Sun, 11 Mar 2007 20:34:13 +0100
sysstat (7.0.4-1) unstable; urgency=low
* New upstream version.
* Merge changes done in sysstat 7.0.0-4.
-- Robert Luberda <robert@debian.org> Sun, 4 Mar 2007 20:23:44 +0100
sysstat (7.0.3-1) experimental; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Wed, 31 Jan 2007 00:28:05 +0100
sysstat (7.0.0-4) unstable; urgency=low
* Initial translations of debconf templates:
+ Portuguese (closes: #411747),
+ Galician (closes: #412230).
* Make isag depend on gnuplot-x11 rather than on transitional gnuplot
package (closes: #410228).
-- Robert Luberda <robert@debian.org> Mon, 26 Feb 2007 21:40:18 +0100
sysstat (7.0.0-3) unstable; urgency=low
* sysstat.config: don't overwrite sysstat/enable debconf variable unless
/etc/default/sysstat exists (closes: #306504).
* Add Swedish PO translation (closes: #386136).
* ioconf.c: Fix FTBFS on GNU/kFreeBSD (closes: #395038).
* sysstat.init.d: Fix typo in Short-Description tag name (lintian).
-- Robert Luberda <robert@debian.org> Sun, 14 Jan 2007 13:09:54 +0100
sysstat (7.0.0-2) unstable; urgency=low
* common.c: Fix FTBFS on powerpc (closes: #384307).
-- Robert Luberda <robert@debian.org> Sun, 27 Aug 2006 23:49:02 +0200
sysstat (7.0.0-1) unstable; urgency=low
* New upstream version.
* debian/{copyright,control,watch}: Update upstream homepage URL.
* Add desktop file for isag (closes: #382199).
* sadc.c: simple fix allowing sadc to work with old data files.
* debian/control: isag now suggests the rcs package for the Help->About
menu option (Ubuntu#54558).
-- Robert Luberda <robert@debian.org> Thu, 10 Aug 2006 23:12:51 +0200
sysstat (6.1.3-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* debian/control: Standards-Version: 3.7.2 (no changes needed).
* debian/watch: prefer downloads from the upstream site.
-- Robert Luberda <robert@debian.org> Mon, 29 May 2006 20:11:57 +0200
sysstat (6.1.2-1) unstable; urgency=low
* New upstream version (development).
* Update Russian debconf templates translation (closes: #361117).
* Fix typo in debconf message (closes: #363284).
* debian/watch: update the download URL.
-- Robert Luberda <robert@debian.org> Mon, 24 Apr 2006 20:49:53 +0200
sysstat (6.1.1-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
-- Robert Luberda <robert@debian.org> Thu, 23 Feb 2006 21:59:28 +0100
sysstat (6.0.2-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Tue, 29 Nov 2005 00:33:10 +0100
sysstat (6.0.1-4) unstable; urgency=low
* Review changes made by upstream in 6.0.x versions to improve handling
of transition from previous versions (closes: #316713).
Sorry about doing this so late - one and a half year since the version 6
was released.
* Re-enable collecting disk statistics by default (closes: #316855):
+ /etc/default/sysstat:
- add `-d' option to OPTIONS passed to sadc by the init.d
- introduce SA1_OPTIONS variable with `-d' as default value
- for completion add SA2_OPTIONS, empty by default.
+ /etc/cron.d/sysstat: pass $SA1_OPTIONS to sa1 and $SA2_OPTIONS to sa2.
+ add NEWS.Debian file saying about the above change.
* ioconf.c: Fix overflow in ioc_conv() (closes: #334305).
Many thanks to Andrew Patterson for the patch!
* Edit build-time configuration and change the default behaviour of
the sa2 command: generate daily summary for the *previous* day, not
for the current as before.
* As a result of the above, move the sa2 invocation from cron.d to
the new cron.daily job.
* /etc/cron.d/sysstat: run sa1 around midnight to have the daily
statistics file properly rotated.
* Made the init.d script LSB-compliant.
* Makefile: remove hard-coded setting CC to gcc-4.0, which me added in
6.0.1-1 to test #314652 and than forgot to remove.
* debian/sysstat.{postinst,postrm}: handle /etc/default/sysstat with ucf.
* debian/compat: bump debhelper compatibility level to 5.
* debian/sysstat.config: remove some old cruft.
* debian/control: add dependency on ucf & lsb-base and update
build-dependency on dephelper.
* Remove lintian source overrides file, it's not needed.
-- Robert Luberda <robert@debian.org> Sat, 26 Nov 2005 10:26:33 +0100
sysstat (6.0.1-3) unstable; urgency=low
* Swedish debconf templates translation (closes: #331184).
-- Robert Luberda <robert@debian.org> Wed, 5 Oct 2005 20:44:33 +0200
sysstat (6.0.1-2) unstable; urgency=low
* Add Vietnamese translation of debconf templates (closes: #319857).
-- Robert Luberda <robert@debian.org> Sat, 20 Aug 2005 13:15:25 +0200
sysstat (6.0.1-1) unstable; urgency=low
* New upstream version:
+ fixed a memory leak in ioconf parsing functions used by sar
and iostat (closes: #310402).
+ sar -b works again (closes: #314436, #204057).
+ sysstat can be compiled with gcc-4.0.1 now (closes: #314652).
* sysstat.postinst: fix rm command call (closes: #313429).
* templates,po/*: merge the message about necessity of deleting old log
files with question about permission to do it (closes: #314438).
* Bump debhelper's version number in build-depends field to have the menu
file moved to /usr/share.
* Standards-Versions: 3.6.2 (no changes).
-- Robert Luberda <robert@debian.org> Fri, 8 Jul 2005 19:47:10 +0200
sysstat (6.0.0-2) unstable; urgency=low
* Upload to unstable:
+ Number of days to keep log files in configurable since version 5.1.2
(closes: #312726).
-- Robert Luberda <robert@debian.org> Sat, 11 Jun 2005 19:15:30 +0200
sysstat (6.0.0-1) experimental; urgency=low
* New upstream version (stable).
-- Robert Luberda <robert@debian.org> Wed, 18 May 2005 20:36:13 +0200
sysstat (5.1.5-1) experimental; urgency=low
* New upstream version (development).
* Include sysstat.dtd in the documentation directory (for XML generated by
sadf -x).
-- Robert Luberda <robert@debian.org> Thu, 10 Mar 2005 22:57:33 +0100
sysstat (5.1.4-2) experimental; urgency=low
* Merge changes from 5.0.6-4 and 5.0.6-5.
-- Robert Luberda <robert@debian.org> Mon, 31 Jan 2005 19:15:34 +0100
sysstat (5.1.4-1) experimental; urgency=low
* New upstream version (development).
* sar.c: Fix FTBFS on amd64 with gcc-4.0 (closes: #288582).
-- Robert Luberda <robert@debian.org> Thu, 6 Jan 2005 18:02:36 +0100
sysstat (5.1.3-2) experimental; urgency=low
* Merge changes from 5.0.6-3.
-- Robert Luberda <robert@debian.org> Wed, 8 Dec 2004 09:49:19 +0100
sysstat (5.1.3-1) experimental; urgency=low
* New upstream version (development).
* Install newly added sysstat.ioconfig file in /etc/sysstat, not
in RedHat-ish /etc/sysconfig.
* With the above mentioned file installed, the iostat command display
abbreviated device names (closes: #265130).
* Move HISTORY settings from /etc/default/sysstat to /etc/sysstat/config.
* Merge changes from 5.0.6-2.
-- Robert Luberda <robert@debian.org> Sun, 28 Nov 2004 22:50:12 +0100
sysstat (5.1.2-1) experimental; urgency=low
* New upstream version (development).
* sa2.sh: use /etc/default/sysstat instead of RedHat-ish
/etc/syssconfig/default for HISTORY config.
* sysstat.postinst: handle update of default file.
-- Robert Luberda <robert@debian.org> Sun, 14 Nov 2004 12:07:47 +0100
sysstat (5.1.1-1) experimental; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
+ new tool: sadf
* Updated sysstat package description.
-- Robert Luberda <robert@debian.org> Sun, 24 Oct 2004 12:53:38 +0200
sysstat (5.0.6-5) unstable; urgency=medium
* init.d: enclose condition with square brackets (closes: #298722).
-- Robert Luberda <robert@debian.org> Wed, 9 Mar 2005 22:08:08 +0100
sysstat (5.0.6-4) unstable; urgency=low
* sar.c: Fix FTBFS on amd64 with gcc-4.0 (closes: 288582).
* Initial Czech translation of sysstat debconf templates (closes: #293006).
Thanks to Miroslav Kure <kurem@upcase.inf.upol.cz>.
-- Robert Luberda <robert@debian.org> Mon, 31 Jan 2005 19:09:24 +0100
sysstat (5.0.6-3) unstable; urgency=low
* Updated Spanish translation of debconf templates.
Thanks to Carlos Alberto Martín Edo <carlos@dat.etsit.upm.es>.
-- Robert Luberda <robert@debian.org> Wed, 8 Dec 2004 09:47:34 +0100
sysstat (5.0.6-2) unstable; urgency=low
* Updated German translations of debconf templates (closes: #281224).
Thanks to Erik Schanze <schanzi_usenet@gmx.de>.
* Added README.Debian file and the 'Debian note' to sa1 and sa2 man pages
to explain source of common problems (closes: #279049, #269712).
-- Robert Luberda <robert@debian.org> Thu, 25 Nov 2004 23:07:11 +0100
sysstat (5.0.6-1) unstable; urgency=low
* New upstream (stable) version.
-- Robert Luberda <robert@debian.org> Thu, 26 Aug 2004 20:09:05 +0200
sysstat (5.0.5-3) testing-proposed-updates; urgency=low
* Updated Brazilian Portuguese templates translation (closes: #267189).
* sadc.c: The value for file-sz reported by sar -v was a number
of free handles, and not a number of used ones. Fix backported
from upstream version 5.0.6.
-- Robert Luberda <robert@debian.org> Thu, 26 Aug 2004 01:06:29 +0200
sysstat (5.0.5-2) unstable; urgency=low
* Updated Dutch translation of debconf template (closes: #260288).
-- Robert Luberda <robert@debian.org> Tue, 27 Jul 2004 23:17:02 +0200
sysstat (5.0.5-1) unstable; urgency=low
* New upstream (stable) version.
-- Robert Luberda <robert@debian.org> Tue, 15 Jun 2004 18:47:50 +0200
sysstat (5.0.4-2) unstable; urgency=low
* Updated Japanese po-debconf template translation (closes: #252343).
Thanks to Hideki Yamane <henrich@samba.gr.jp>.
* Added debian/watch file.
-- Robert Luberda <robert@debian.org> Sat, 5 Jun 2004 17:55:54 +0200
sysstat (5.0.4-1) unstable; urgency=low
* New upstream (stable) version:
+ when trying to lock file, sadc now checks for both EWOULDBLOCK
and EAGAIN error codes to be portable (closes: #248772).
* Update French translation of debconf templates (closes: #247364).
Thanks to Christian Perrier <bubulle@debian.org>.
* Add Italian translation of debconf templates (closes: #249174).
Thanks to Luca Monducci <luca.mo@tiscali.it>.
* Remove lintian override file for `shell-script-fails-syntax-check',
it's not needed for the newest lintian.
* Add lintian source overrides for `cvsignore-file-in-source'.
-- Robert Luberda <robert@debian.org> Sat, 22 May 2004 15:14:36 +0200
sysstat (5.0.3-1) unstable; urgency=low
* New upstream (stable) version:
+ iostat now reads the number of sectors in /proc/diskstats
or from sysfs as 64-bit unsigned values (closes: #237047).
* isag: reapplied changes with creating temporary directory and fixed
sag_save_graph procedure which got broken in this upstream version.
* Give the administrator capability to disable collecting statistics
by our cron and init scripts (closes: #194576):
+ add /etc/default/sysstat, created by postinst
+ introduced new debconf question: sysstat/enable
+ modified cron.d and init.d scripts.
-- Robert Luberda <robert@debian.org> Tue, 27 Apr 2004 20:40:24 +0200
sysstat (5.0.2-1) unstable; urgency=high
* New upstream (stable) version.
* isag: SECURITY FIX for temporary files handling vulnerability described
in DSA-460 and CVE CAN-2004-0108.
Create temporary directory with `mktemp -t -d' and ensure that all used
temporary files are put there (closes: #237297).
* Add Catalan translation of debconf templates (closes: #236648).
Thanks to Aleix Badia i Bosch <abadia@ica.es>.
-- Robert Luberda <robert@debian.org> Thu, 11 Mar 2004 22:38:29 +0100
sysstat (5.0.1-1) unstable; urgency=low
* New upstream (stable) version.
* debian/sysstat.init:
+ pass -F and -L options to sadc, just like in the init script
provided by upstream.
+ explicity specify system activity data file
+ set umask 022
-- Robert Luberda <robert@debian.org> Tue, 3 Feb 2004 23:19:26 +0100
sysstat (5.0.0-2) unstable; urgency=low
* Added Japanese translation of debconf template (closes: #225801).
Thanks to Hideki Yamane <henrich@samba.gr.jp>.
-- Robert Luberda <robert@debian.org> Mon, 12 Jan 2004 20:51:18 +0100
sysstat (5.0.0-1) unstable; urgency=low
* New upstream (stable) version.
-- Robert Luberda <robert@debian.org> Wed, 12 Nov 2003 22:00:19 +0100
sysstat (4.1.7-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
-- Robert Luberda <robert@debian.org> Sat, 4 Oct 2003 12:02:41 +0200
sysstat (4.1.6-1) unstable; urgency=low
* New upstream version (development):
+ daily data files format has changed again.
* Added Dutch translation of debconf template (closes: #206328).
Thanks to Bart Cornelis <cobaco@linux.be>.
* Added link to homepage to binary packages' descriptions.
* Standards-Version: 3.6.1 (no changes).
-- Robert Luberda <robert@debian.org> Wed, 3 Sep 2003 22:01:35 +0200
sysstat (4.1.5-2) unstable; urgency=low
* Fix a typo in fr.po (closes: #203481).
-- Robert Luberda <robert@debian.org> Wed, 30 Jul 2003 19:24:59 +0200
sysstat (4.1.5-1) unstable; urgency=low
* New upstream version (development):
+ Warning: daily data files format has changed once again and
old data files must be deleted from /var/log/sysstat!
* Added Spanish translation of debconf templates (closes: #201565).
Thanks to Carlos Alberto Martín Edo <carlos@dat.etsit.upm.es>.
* Standards-Version: 3.6.0 (no changes).
-- Robert Luberda <robert@debian.org> Fri, 25 Jul 2003 18:22:12 +0200
sysstat (4.1.4-1) unstable; urgency=low
* New upstream version (development):
+ Warning: daily data files format has changed once again and
old data files must be deleted from /var/log/sysstat!
* Standards-Version: 3.5.10 (no changes).
-- Robert Luberda <robert@debian.org> Wed, 2 Jul 2003 23:17:34 +0200
sysstat (4.1.3-2) unstable; urgency=low
* Added French translation of templates (closes: #193766).
Thanks to Christian Perrier <bubulle@debian.org>.
-- Robert Luberda <robert@debian.org> Mon, 30 Jun 2003 22:53:06 +0200
sysstat (4.1.3-1) unstable; urgency=low
* New upstream version (development):
+ NOTE (from the upstream home page): iostat should now be fully compliant
with 2.5/2.6 kernels. But it will no longer look for statistics in the
/proc/partitions file. Those who need to display extended statistics
with iostat while still using an older 2.4 kernel must use sysstat 4.1.2
-- Robert Luberda <robert@debian.org> Sat, 17 May 2003 18:47:46 +0200
sysstat (4.1.2-3) unstable; urgency=low
* Update German and Russian translations of debconf templates from DDTP.
* Removed build dependency on po-debconf, as debhelper depends on it.
* Standards-Version: 3.5.9.
-- Robert Luberda <robert@debian.org> Sat, 22 Mar 2003 22:01:43 +0100
sysstat (4.1.2-2) unstable; urgency=low
* debian/po/pt_BR.po: updated (closes: #179358).
Thanks to André Luís Lopes <andrelop@ig.com.br>.
* Recode this changelog to UTF-8.
-- Robert Luberda <robert@debian.org> Sun, 2 Feb 2003 16:05:36 +0100
sysstat (4.1.2-1) unstable; urgency=low
* New upstream version (development):
+ Daily data files format has changed once again.
* Change a bit our cron.d entry (closes: #177727).
-- Robert Luberda <robert@debian.org> Wed, 29 Jan 2003 23:13:30 +0100
sysstat (4.1.1-1) unstable; urgency=low
* New upstream (development) release:
+ Warning: Daily data files format has changed (again), and is
*not* compatible with the previous one! Delete existing data
files in /var/log/sysstat directory!
* debian/sysstat.{postinst,config}: Update $S_VERSION to show debconf
warning about above mentioned incompatibility.
* debian/sysstat.templates: Do not misuse `yes'/`no' words (closes: #173788).
* Update Polish translation of templates.
* Add the override file for the following lintian false error:
`shell-script-fails-syntax-check ./usr/bin/isag'.
-- Robert Luberda <robert@debian.org> Sun, 19 Jan 2003 15:32:31 +0100
sysstat (4.0.7-2) unstable; urgency=low
* Applied patches from Junichi Uekawa:
+ common.c: set LC_CTYPE in nls_init() (closes: #172903).
+ sysstat.postinst: call /usr/lib/sysstat/sa1 (closes: #172904).
Thanks for the patches, Junichi!
* nls/*/*.po: specify correct charset and encoding.
* Remove dot from the first line of isag package description (lintian).
* Convert debconf translations to po-debconf.
* Standards-Version: 3.5.8 (no changes).
-- Robert Luberda <robert@debian.org> Tue, 17 Dec 2002 09:15:48 +0100
sysstat (4.0.7-1) unstable; urgency=low
* New upstream version.
* Don't run /etc/init.d/sysstat on package install/upgrade (use
`dh_installinit --no-start' for this).
* debian/rules, debian/fix.sh: minor changes in the build process.
-- Robert Luberda <robert@debian.org> Sun, 17 Nov 2002 21:30:45 +0100
sysstat (4.0.6-2) unstable; urgency=low
* Standards-Version: 3.5.7
* Support DEB_BUILD_OPTIONS=noopt instead of debug.
-- Robert Luberda <robert@debian.org> Thu, 24 Oct 2002 07:56:55 +0200
sysstat (4.0.6-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Mon, 5 Aug 2002 20:51:32 +0200
sysstat (4.0.5-1) unstable; urgency=low
* New upstream version.
* Add new sargon script to examples directory.
* Update debian/rules to debhelper v4 (esp. use dh_install instead of
dh_movefiles).
* Oops, upstream changelog hasn't been included into binary package since
version 3.3.5-1. Fixed now.
-- Robert Luberda <robert@debian.org> Thu, 16 May 2002 00:28:57 +0200
sysstat (4.0.4-1) unstable; urgency=low
* New upstream version.
* Added Brazilian Portuguese templates translation (closes: #141541).
Thanks to Andre Luis Lopes <andrelop@ig.com.br>.
-- Robert Luberda <robert@debian.org> Mon, 8 Apr 2002 18:28:32 +0200
sysstat (4.0.3-2) unstable; urgency=low
* sar.c: fixed a typo (closes: #135540).
Thanks to Marcin Owsiany <porridge@debian.org> for a patch.
* Added Russian translation of debconf templates (closes: #137689).
Thanks to Ilgiz Kalmetev <ilgiz@bashtelecom.ru>.
-- Robert Luberda <robert@debian.org> Thu, 14 Mar 2002 20:16:46 +0100
sysstat (4.0.3-1) unstable; urgency=low
* New upstream version.
* Standards-Version: 3.5.6 (no changes).
-- Robert Luberda <robert@debian.org> Tue, 29 Jan 2002 00:02:17 +0100
sysstat (4.0.2-2) unstable; urgency=low
* Applied patch YAMASHITA Junji to fix buffer overflow in some locales
(closes: #123089).
-- Robert Luberda <robert@debian.org> Sat, 22 Dec 2001 21:41:38 +0100
sysstat (4.0.2-1) unstable; urgency=low
* New upstream version:
+ isag: LC_NUMERIC should be set instead of LC_ALL (closes: #101545).
-- Robert Luberda <robert@debian.org> Sun, 23 Sep 2001 22:23:42 +0200
sysstat (4.0.1-1) unstable; urgency=low
* New upstream version.
* isag: set LC_ALL to sane value to prevent breakage if current
locale specifies a comma decimal separator (closes: #101545).
-- Robert Luberda <robert@debian.org> Wed, 4 Jul 2001 22:36:18 +0200
sysstat (4.0.0-2) unstable; urgency=high
* Set umask in sa[12] scripts (closes: #95561).
* Also in postinst: `chmod go-w' files from /var/log/sysstat.
-- Robert Luberda <robert@debian.org> Mon, 30 Apr 2001 13:00:18 +0200
sysstat (4.0.0-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Sun, 8 Apr 2001 16:03:02 +0200
sysstat (3.3.6-1) unstable; urgency=low
* New upstream version:
- Warning: format of daily statistics has changed again!
- isag shows only sa?? files in the file menu by default (closes: #86771).
* Standards-Version: 3.5.2 (no changes).
-- Robert Luberda <robert@debian.org> Thu, 15 Mar 2001 19:51:51 +0100
sysstat (3.3.5-1) unstable; urgency=low
* New upstream version.
* This version includes new command isag - nice GUI for sar. As isag
requires wish and gnuplot, I put it in a separate package isag.
* Included informations about isag in the copyright file.
* Repackaged with debhelper v3.
* Standards-Version: 3.5.0 (no changes).
* Added debconf-utils to Build-Depends.
-- Robert Luberda <robert@debian.org> Wed, 14 Feb 2001 21:26:58 +0100
sysstat (3.3.4-2) unstable; urgency=low
* Added German translation of debconf templates (closes: #84843).
Thanks to Joerg.Rieger@informatik.med.uni-giessen.de for a patch.
* Polish translation added too.
-- Robert Luberda <robert@debian.org> Mon, 5 Feb 2001 23:06:45 +0100
sysstat (3.3.4-1) unstable; urgency=low
* New upstream version.
-- Robert Luberda <robert@debian.org> Wed, 31 Jan 2001 18:35:26 +0100
sysstat (3.3.3-3) unstable; urgency=low
* Modified init script - `restart' now acts like `start' (closes: #84058).
* Fixed some problems with debconf support.
-- Robert Luberda <robert@debian.org> Tue, 30 Jan 2001 08:00:14 +0100
sysstat (3.3.3-2) unstable; urgency=low
* Fix typo in postinst (closes: #83980).
-- Robert Luberda <robert@debian.org> Mon, 29 Jan 2001 20:21:52 +0100
sysstat (3.3.3-1) unstable; urgency=low
* New upstream version.
* Added debconf interface to ask user about removing old files
from /var/log/sysstat because format of these files had changed
and is not compatible with the previous one.
-- Robert Luberda <robert@debian.org> Tue, 23 Jan 2001 22:51:39 +0100
sysstat (3.3.2-2) unstable; urgency=low
* sa2 executes sar.sysstat instead of sar.
* Add gettext to Build-Depends.
-- Robert Luberda <robert@debian.org> Sun, 17 Dec 2000 12:09:18 +0100
sysstat (3.3.2-1) unstable; urgency=low
* Initial release. (closes: #78140)
* Rename (/usr/lib|/var/log)/sa to $1/sysstat.
-- Robert Luberda <robert@debian.org> Sun, 3 Dec 2000 23:33:02 +0100
|