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
|
htop (3.4.1-5) unstable; urgency=medium
* Fix stack buffer overflow in CommandScreen
-- Daniel Lange <DLange@debian.org> Fri, 11 Jul 2025 10:48:00 +0200
htop (3.4.1-4) unstable; urgency=medium
* Fix temperature reading on older Intel CPUs
-- Daniel Lange <DLange@debian.org> Fri, 25 Apr 2025 22:56:00 +0200
htop (3.4.1-3) unstable; urgency=medium
* Fix left / right scroll while following a process (F key)
-- Daniel Lange <DLange@debian.org> Mon, 14 Apr 2025 19:23:00 +0200
htop (3.4.1-2) unstable; urgency=medium
* Prevent dangling README symlink
-- Daniel Lange <DLange@debian.org> Fri, 11 Apr 2025 18:15:00 +0200
htop (3.4.1-1) unstable; urgency=medium
* New upstream version 3.4.1
* Drop the two relevant upstream patches previously backported
-- Daniel Lange <DLange@debian.org> Fri, 11 Apr 2025 15:12:00 +0200
htop (3.4.0-5) unstable; urgency=medium
* Improve documentation of the --user option
* Rename an autopkgtest to keep lintian happy
* Make patch 001 DEP-3 compliant
-- Daniel Lange <DLange@debian.org> Tue, 08 Apr 2025 07:28:00 +0200
htop (3.4.0-2) unstable; urgency=medium
* Add dh-sequence-single-binary
* Fix htoprc autopkgtest for debci testbeds
-- Daniel Lange <DLange@debian.org> Wed, 12 Mar 2025 08:52:01 +0100
htop (3.4.0-1) unstable; urgency=medium
* Import upstream 3.4.0 release
* Drop all upstreamed patches
* Add patch to fix the version string (drop -dev appendix)
* Update Standards-Version to 4.7.2 (no changes), update copyright years
* Update dependencies (renamed / consolidated Debian packages)
* Add autopkgtests
-- Daniel Lange <DLange@debian.org> Mon, 10 Mar 2025 06:50:00 +0100
htop (3.3.0-5) unstable; urgency=medium
* Backport upstream fix for possible buffer OOB access when
parsing the stat file for a process
-- Daniel Lange <DLange@debian.org> Sun, 09 Feb 2025 13:47:00 +0100
htop (3.3.0-4) unstable; urgency=medium
* Apply upstream fix for broken Kernel Thread names when
the "Show Program Path" setting was disabled
-- Daniel Lange <DLange@debian.org> Sun, 28 Jan 2024 17:08:00 +0100
htop (3.3.0-3) unstable; urgency=medium
* Apply upstream fix for broken tree mode sorting
* Apply upstream fix for missing sort direction arrow update on mouse click
-- Daniel Lange <DLange@debian.org> Wed, 17 Jan 2024 10:28:00 +0100
htop (3.3.0-2) unstable; urgency=medium
* Apply upstream fix for number of running tasks show as zero
-- Daniel Lange <DLange@debian.org> Fri, 12 Jan 2024 11:26:00 +0100
htop (3.3.0-1) unstable; urgency=medium
* Import upstream 3.3.0 release
* Drop Debian patch (Remove LXC special handling for CPUs)
* Multiple refactorings and code improvements
* Shorten docker container IDs to 12 characters
* Settings: preserve empty header
* Fix execlp() argument without pointer cast
* OpenFilesScreen: Make column sizing dynamic for file size, offset and inode
* HeaderLayout: add "3 columns - 40/30/30", "... 30/40/30" & "... 30/30/40"
* Meter: use correct unicode characters for digit '9'
* Note in manual re default memory units of KiB
* Add column for process container name
* Add logic to filter the container name (+type) from the CGroup name
* Change NetworkIOMeter value unit from KiB/s to bytes/second
* Cap DiskIOMeter "utilisation" percentage at 100%
* Shorten podman/libpod container IDs to 12 characters
* Write configuration to temporary file first
* Incorporate shared memory in bar text
* Move shared memory next to used memory
* Correct order of memory meter in help
* Add recalculate to Ctrl-L refresh
* Update process list on thread visibility toggling
* Support dynamic screens with 'top-most' entities beyond processes
* Introduce Row and Table classes for screens beyond top-processes
* Rework ZramMeter and remove MeterClass.comprisedValues
* More robust logic for CPU process percentages
* Show year as start time for processes older than a year
* Short-term fix for docker container detection
* default color preset: use bold blue for better visibility
* Document 'O' keyboard shortcut
* Implement logic for '--max-iterations'
* Update F5 key label on tab switch (Tree <-> List)
* Force re-sorting of the process list view after switching between list/treeview mode
* Linux: (hack) work around the fact that Zswapped pages may be SwapCached
* Linux: implement zswap support
* {Memory,Swap}Meter: add "compressed memory" metrics
* Fix scroll relative to followed process
* ZramMeter: update bar mode
* Increase Search and Filter max string length to 128
* Improve CPU computation code
* Remove LXC special handling for the CPU count
* Create new File Descriptor meter
* Linux: add IRQ PSI meter
* Linux: highlight username if process has elevated privileges
* Add support for scheduling policies
* Add a systemd user meter to monitor user units.
-- Daniel Lange <DLange@debian.org> Wed, 10 Jan 2024 11:30:00 +0100
htop (3.2.2-2) unstable; urgency=medium
* Remove LXC special handling for CPUs
-- Daniel Lange <DLange@debian.org> Sun, 26 Feb 2023 12:50:00 +0100
htop (3.2.2-1) unstable; urgency=medium
* Import upstream 3.2.2 release
* CPUMeter now can show frequency in text mode
* Add option to render distribution path prefixes shadowed
* DiskIOMeter converts to bytes per second (not per interval)
* DiskIOMeter uses complete units, including missing "iB/s"
* DiskIOMeter indicates read and write in meter mode
* NetworkIOMeter converts to packets per second, shows packet rate
* Allow continued process following when changing display settings
* Update the panel header when changing to another tab
* Drop margin around the header if there are no meters
* Use Unicode replacement character for non-printable characters
* Default color preset uses bold blue for better visibility
* Update the Panel header on sort order inversions ('I')
* Toggle the header meters with pound key
* Fix ScreenPanel to handle quitting the panel while renaming
* Add fallback for HOME environment variable using passwd database
* Replace meaningless ID column with FD column in lock screen
* Use device format in the lock screen matching the files screen
* On Linux, improvements to file-descriptor lock detection
* On Linux, further distinguish systemd states in the SystemdMeter
* On Linux, improvements to cgroup and container identification
* On Linux, support openat(2) without readlinkat(2) platforms
* Handle invalid process columns from the configuration file
* Avoid undefined behaviour with deeply nested processes
* Fix crash when removing the currently active screen
* Prevent possible crash on a very early error path
* Include automake for Debian/Ubuntu
* Restore non-mouse support
* Reject unsupported command line arguments
* Document idle process state
* Clarify M_TRS/M_DRS columns
-- Daniel Lange <DLange@debian.org> Sun, 05 Feb 2023 03:59:59 +0100
htop (3.2.1-1) unstable; urgency=medium
* Import upstream 3.2.1 release
* Update policy to 4.6.1 (no changes required)
* Fix setting to show all branches collapsed by default
* Restore functionality of stripExeFromCmdline setting
* Fix some command line display settings not being honored without restart
(Closes: #1010780)
* Display single digit precision for CPU% greater than 99.9%
* Consider only shrinkable ZFS ARC as cache
* Increase field width of CPUD% and SWAPD% columns
* Colorize process state characters in help screen
* Use mousemask(3X) to enable and disable mouse control
* Fix heap buffer overflow in Vector_compact
* Resolve processes exiting interfering with sampling
* Fix ProcessList quadratic removal when scanning processes
* Under LXC, limit CPU count to that given by /proc/cpuinfo
* Improve container detection for LXC
* Some minor documentation fixes
-- Daniel Lange <DLange@debian.org> Fri, 03 Jun 2022 09:00:00 +0200
htop (3.2.0-1) unstable; urgency=medium
* Import upstream 3.2.0 release
(Closes: #1004582)
* Drop Debian patches applied upstream
* This version now has Screen tabs in the user interface
(use the tab key to switch)
* Allow multiple filter and search terms (logical OR, separate by "|")
* Add heuristics for guessing LXC or Docker from /proc/1/mounts
(this fixes a bug with memory reporting in containers while using ZFS
on the host)
* Many more performance and small functionality improvements
-- Daniel Lange <DLange@debian.org> Mon, 02 May 2022 16:27:00 +0200
htop (3.1.0-1) UNRELEASED; urgency=medium
* Import upstream 3.1.0 release
* Drop all Debian patches (have been applied upstream or superseded)
-- Daniel Lange <DLange@debian.org> Tue, 21 Sep 2021 08:55:00 +0200
htop (3.0.5-7) unstable; urgency=medium
* Fix division by 0 on ZfsCompressedArcMeter (when no ZFS volume is mounted)
* Update watch file to match Github URL schema change
-- Daniel Lange <DLange@debian.org> Sun, 02 May 2021 13:00:00 +0200
htop (3.0.5-6) unstable; urgency=medium
* Fix cleaning the infoscreen before a next scan
-- Daniel Lange <DLange@debian.org> Mon, 01 Mar 2021 09:00:00 +0100
htop (3.0.5-5) unstable; urgency=medium
* Fix forced sort order when switching to tree mode
* Allow btime=0 on some embedded systems (i.e. no RTC)
* Fix ZFS coloring to match other meters
-- Daniel Lange <DLange@debian.org> Mon, 15 Feb 2021 11:11:11 +0100
htop (3.0.5-4) unstable; urgency=medium
* Fix mouse use / scrolling in Infoscreens
* Fix Shift-F3 (prev hit in search mode) for QT based terminals
* Harden string handling routine, sort timeout
* Improve initial setup of CPU meters for systems with many cores
-- Daniel Lange <DLange@debian.org> Fri, 05 Feb 2021 08:50:00 +0100
htop (3.0.5-3) unstable; urgency=medium
[ Daniel Lange ]
* Overhaul of the column sorting logic
Note to users: This may invert the sort logic for some columns over what
is stored in your htoprc. Please press 'I' to invert the sort order and
save the htoprc (by exiting htop) to restore your startup sort order.
* Another update to the hurd patch
* Fix PROCDIR for the hurd build
* Disable sensors for hurd build (no libsensors-dev available)
* Add patch to silence kFreeBSD compiler warnings
* Build-dep on libsensors-dev (Closes: #980731)
* Drop configure options from d/rules that were made unconditional upstream
[ Graham Inggs ]
* Add lm-sensors to Suggests
-- Daniel Lange <DLange@debian.org> Mon, 25 Jan 2021 11:11:00 +0100
htop (3.0.5-2) unstable; urgency=medium
* Backport patches to fix:
- Possible segfault in colored ("rich") string handling
- Issue in field background coloring
- Build for GNU/hurd (missing PATH_MAX in their limits.h)
-- Daniel Lange <DLange@debian.org> Fri, 15 Jan 2021 08:00:00 +0100
htop (3.0.5-1) unstable; urgency=medium
* New upstream release 3.0.5
* Remove Debian patches upstreamed
* BUGFIX / SECURITY: InfoScreen: fix uncontrolled format string
* BUGFIX: Improve white text in the Light Terminal colour scheme
* Enable the function bar on the main screen to be hidden (see Setup -> Display options)
* BUGFIX: Reduce layout issues esp. around printing wide characters (not complete yet)
* BUGFIX: Make the follow function exit cleanly after followed process died
* Update help and man page for improved -t / -s options
* Drop usage of formatted error messages from <err.h>
* Show arrow indicating order of sorted process column
* Lots of plumbing around the internal Hashtable, hardening and code cleanups
* LibSensors: add support for Ryzen CPUs
* BUGFIX: Fix CPU percentage on M1 silicon Macs
* LoadMeter: dynamically adjust color and total of bar
* Enable going back to previous search matches (Shift-F3)
* Added keybind 'N' for sorting by PID (drops 'n'/'N' as not used before much)
-- Daniel Lange <DLange@debian.org> Mon, 11 Jan 2021 20:45:00 +0100
htop (3.0.3-2) unstable; urgency=medium
[ Daniel Lange ]
* Fix display in tree mode
* Fix pausing screen updates (press Z key) in tree mode
[ Graham Inggs ]
* Fix kFreeBSD build
-- Daniel Lange <DLange@debian.org> Fri, 11 Dec 2020 21:00:00 +0100
htop (3.0.3-1) unstable; urgency=medium
* New upstream release 3.0.3
* Enable delayacct support, closes: #908636
* Enable libsensors support
* Add svg icon, closes: #663635
* Enable pausing screen updates (press Z key), closes: #821904
* Hide process selection on ESC
* Enable process sorting in 'tree' mode
* Add screen for active file locks
* Calculate library size (M_LRS column) from maps file
* Add multiple new meters (Zram, systemd, network I/O, SELinux, date/time)
* Add Linux cwd, security attributes, disk I/O process, context switch columns
* Add support to change numeric options in settings screen
* Rename virtual memory column from M_SIZE to M_VIRT
* Enable showing CPU temperature in CPU meter
* Read CPU frequency from sysfs by default
* Add octuple-column CPU meters
* BUGFIX: On Linux consider ZFS ARC to be cache
* BUGFIX: Limit screen title length to window width
* Show selected command wrapped in a separate window
* Allow starting an item search with '/'
* Document implicit incremental search
* Handle 'q' as quit if first character
* Merged view for COMM, EXE and cmdline (press m key)
* Enhance highlighting of semi-large and large numbers
* Code hardening, speedups, fd and memory leak fixes
* Number CPUs from zero by default
* Plus more minor changes and fixes from upstream
* Update standards version to 4.5.1, no changes needed.
-- Daniel Lange <DLange@debian.org> Mon, 07 Dec 2020 11:30:00 +0100
htop (3.0.2-1) unstable; urgency=medium
* New upstream release 3.0.2
* Drop 'vim_mode' - several issues, needs rethink
* fix regression in -u optional-argument handling
* Build system rework to remove python, header generation
-- Daniel Lange <DLange@debian.org> Tue, 15 Sep 2020 08:02:00 +0200
htop (3.0.1-1) unstable; urgency=medium
* New upstream release 3.0.1
* Fix early exit with longer sysfs battery paths
* Improve OOM output, fix sorting
* Rework check buttons and tree open/closed
* Add -U/--no-unicode option to disable unicode
* Improvements to the affinity panel
-- Daniel Lange <DLange@debian.org> Thu, 03 Sep 2020 12:40:00 +0200
htop (3.0.0-1) unstable; urgency=medium
* Switch upstream to htop-dev
* New upstream release 3.0.0
* Drop Debian patches merged upstream
-- Daniel Lange <DLange@debian.org> Thu, 27 Aug 2020 08:37:00 +0200
htop (2.2.0-3) unstable; urgency=medium
[ Graham Inggs ]
* Switch to debhelper 13
* Avoid FTBFS with GCC 10 (Closes: #957344)
* Close pipe after lsof
[ Debian Janitor ]
* Set upstream metadata fields: Bug-Database, Repository, Repository-
Browse.
* Update standards version to 4.4.1, no changes needed.
* Set upstream metadata fields: Bug-Submit.
* Update standards version to 4.5.0, no changes needed.
-- Graham Inggs <ginggs@debian.org> Fri, 03 Jul 2020 09:29:55 +0000
htop (2.2.0-2) unstable; urgency=medium
* Switch to debhelper 12
* Set Rules-Requires-Root: no
* Run MakeHeader.py in Python 3
* Drop trailing whitespace in debian/changelog
* Bump Standards-Version to 4.4.0, no changes
-- Graham Inggs <ginggs@debian.org> Sun, 21 Jul 2019 23:06:13 +0000
htop (2.2.0-1) unstable; urgency=medium
* New upstream release 2.2.0
* Update uscan to v4 and add gpg verification of upstream tarball
* Drop patches that were merged upstream
* Remove OpenVZ patch that wasn't merged upstream
(for now, upstream issue 464)
* Add upstream issue 780 patch
* Fix compile issue with regenerated header files (patch)
* Update policy to 4.1.4 (no changes required)
-- Daniel Lange <DLange@debian.org> Thu, 26 Apr 2018 21:10:00 +0200
htop (2.1.0-3) unstable; urgency=medium
* Fix case of dyscalculia in changelog entry for 2.1.0-1
* Update Daniel Lange's email address
* Add debian/clean to remove autogenerated headers
* Refresh debian/patches/601-openvz-new-ctid-vpid.patch
* Fix issue with small terminals (Closes: #889693)
* Fix preservation of LDFLAGS value during configure script
* Handle unexpected values for character passed to isalnum
-- Graham Inggs <ginggs@debian.org> Sat, 17 Feb 2018 18:27:46 +0000
htop (2.1.0-2) unstable; urgency=medium
* Add missing build-dependency on pkg-config
-- Graham Inggs <ginggs@debian.org> Mon, 05 Feb 2018 16:59:56 +0000
htop (2.1.0-1) unstable; urgency=medium
[ Graham Inggs ]
* New upstream release 2.1.0 (Closes: #889634)
* Refresh debian/patches/601-openvz-new-ctid-vpid.patch
* Update Vcs-* URIs for move to salsa.debian.org
* Turn debhelper up to 11
* Update debian/copyright
* Remove trailing whitespace from debian/changelog
* Use secure URI in Homepage and debian/watch
* Bump Standards-Version to 4.1.3, no changes
[ Helmut Grohne ]
* Fix FTCBFS: Annotate python-minimal build dependency with :native.
(Closes: #864672)
-- Graham Inggs <ginggs@debian.org> Mon, 05 Feb 2018 13:22:25 +0000
htop (2.0.2-1) unstable; urgency=medium
* Update to upstream version 2.0.2
- Use SOURCE_DATE_EPOCH instead of current year in copyright message
to make build reproducible. (Closes: #822963)
- Fix build to detect the Hurd as a Linux platform. (Closes: #821747)
- Fix crash when setting CPU affinity and -fPIE. (LP: #1589549)
* Bump Standards to 3.9.8 (no changes required)
-- Daniel Lange <dl.ml1@usrlocal.de> Mon, 25 Jul 2016 19:46:17 +0200
htop (2.0.1-1) unstable; urgency=medium
* New upstream release 2.0.1. (Closes: #814401, #783893, #774930)
* Clean up patches from 1.0.3 -> 2.0.1
* Update compat -> 9, rules -> debhelper/9
* Update debian/copyright to copyright-format/1.0 (Closes: #749850)
* Add lsof as suggested (Closes: #817918)
* Change maintainership jackyf -> DLange, jackyf and ginggs will
co-maintain. Jackyf: Thank you very much for 8 years of htop
maintenance!
-- Daniel Lange <dl.ml1@usrlocal.de> Thu, 14 Apr 2016 10:25:45 +0200
htop (1.0.3-1) unstable; urgency=low
* New upstream release.
* debian/watch:
- Updated to use new download location (http://hisham.hm/htop/releases).
* debian/patches:
- 600-openvz-veid-on-kernels-gt-2.6.18.patch: refreshed.
- 610-io-priority-only-on-linux.patch: ported to new upstream version.
- 700-ltrace-support.patch: ported to new upstream version.
* debian/control:
- Bumped Standards-Version to 3.9.5, no changes needed.
- Updated Homepage to 'http://hisham.hm/htop/'.
-- Eugene V. Lyubimkin <jackyf@debian.org> Thu, 01 May 2014 13:16:56 +0300
htop (1.0.2-3) unstable; urgency=low
* debian/patches:
- New patch 610-io-priority-only-on-linux.patch which should fix building
on non-Linux kernels.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sat, 05 Oct 2013 13:17:13 +0300
htop (1.0.2-2) unstable; urgency=low
* Upload to unstable.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sat, 29 Jun 2013 22:25:41 +0300
htop (1.0.2-1) experimental; urgency=low
* New upstream release.
- Ability to update process names on refreshes. (Closes: #475254)
- More precise value of CPU%. (Closes: #668410)
- Columns line up properly even when for more-than-5-digits process ids.
(Closes: #687280)
* debian/control:
- Bumped Standards-Version to 3.9.4, no changes needed.
* debian/patches:
- Deleted 200-dont-delete-htoprc-if-symlink.patch, applied upstream.
- 700-ltrace-support.patch: ported to new upstream version.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sat, 01 Dec 2012 11:55:43 +0200
htop (1.0.1-4) unstable; urgency=low
* debian/rules:
- Retrieve and pass also CPPFLAGS and LDFLAGS. Patch by Simon Ruderich.
(Closes: #685670)
-- Eugene V. Lyubimkin <jackyf@debian.org> Sat, 01 Sep 2012 14:29:59 +0300
htop (1.0.1-3) unstable; urgency=low
* debian/rules:
- Retrieve CFLAGS from dpkg-buildflags as dpkg-buildpackage stopped to
export them. Thanks to Felix Geyer and Cyril Brulebois.
(Closes: #685670)
* debian/control:
- Build-depend on dpkg (>= 1.16.1) for using dpkg-buildflags.
-- Eugene V. Lyubimkin <jackyf@debian.org> Mon, 27 Aug 2012 19:51:54 +0300
htop (1.0.1-2) unstable; urgency=low
* debian/patches:
- New patch 200-dont-delete-htoprc-if-symlink.patch from upstream VCS.
(Closes: #662087)
-- Eugene V. Lyubimkin <jackyf@debian.org> Mon, 30 Jul 2012 19:12:16 +0300
htop (1.0.1-1) unstable; urgency=low
* New upstream release.
- Don't crash when trying to kill already finished process.
(Closes: #652563, 657675)
-- Eugene V. Lyubimkin <jackyf@debian.org> Sun, 19 Feb 2012 10:24:46 +0200
htop (1.0-1) unstable; urgency=low
* New upstream release.
- Don't die after a terminal resize. (Closes: #464852)
- Don't abort when a number of processes are removed from the list at
once. (Closes: #541417)
- Fixed the inconsistency in the documentation about "[" and "]" keys.
(Closes: #610329)
* debian/patches:
- 100-fix-cgroups-crash.patch: deleted, upstream fixed it in a different
way.
- 600-openvz-veid-on-kernels-gt-2.6.18.patch: ported to new upstream
version.
- 700-ltrace-support.patch: ported to new upstream version.
- 700-ltrace-support.patch: ltrace hotkey is 'L', not 'l'.
* debian/control:
- Add libhwloc-dev to Build-Depends on non-linux architectures.
- Add libncursesw5-dev to Build-Depends, enabling unicode support.
* debian/rules:
- Enable native affinity functions on linux architectures and use hwloc
library everywhere else.
* debian/copyright:
- Updated upstream copyright years.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sat, 26 Nov 2011 15:58:33 +0200
htop (0.9-4) unstable; urgency=low
* debian/rules:
- Added 'build-arch' and 'build-indep' targets as suggested by Lintian.
* debian/patches:
- New patch 100-fix-cgroups-crash.patch fixing a crash when htop receives
an unexpected input from a cgroups file. (Closes: #628040)
-- Eugene V. Lyubimkin <jackyf@debian.org> Wed, 21 Sep 2011 21:17:17 +0300
htop (0.9-3) unstable; urgency=low
* debian/rules:
- Enable cgroups support. (Closes: #627545)
* debian/README.source:
- added with standard instructions how to use quilt.
* debian/control:
- Fixed spelling as suggested by lintian.
- Bumped Standards-Version to 3.9.2, no changes needed.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sun, 22 May 2011 12:05:09 +0300
htop (0.9-2) unstable; urgency=low
* Upload to unstable.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sun, 13 Feb 2011 10:41:53 +0200
htop (0.9-1) experimental; urgency=low
* New upstream release. (Closes: #610229)
- Fixed by-process IO stats in some cases. (Closes: #526070)
- Do not display nan% as CPU load sometimes. (Closes: #590535)
* debian/patches:
- 600-openvz-veid-on-kernels-gt-2.6.18.patch: ported to new upstream
version.
- 700-ltrace-support.patch: refreshed.
* debian/control:
- Bumped Standards-Version to 3.9.1, no changes needed.
- Updated my mail address.
- Removed 'DM-Upload-Allowed' flag as not needed anymore.
* debian/copyright:
- Updated author copyright years.
* debian/watch:
- Removed 'uupdate' option, not needed for my workflow.
-- Eugene V. Lyubimkin <jackyf@debian.org> Sun, 16 Jan 2011 19:36:07 +0200
htop (0.8.3-1) unstable; urgency=low
* New upstream release:
- 0.8.2 (LP: #385862):
- Integrated lsof output. (Closes: #426003)
- Handling of absend CPU should work now. (Closes: #494057, #476273)
- Fixed a crash when sorting by USER column. (Closes: #526362)
- Fixed display of gigabyte-sized values.
- Fixed incremental search. (Closes: #521376)
- Option to display hostname in the meters area.
- 0.8.3
* debian/control:
- Suggested strace and ltrace. (Closes: #530449)
- Bumped Standards-Version to 3.8.2, no changes needed.
* debian/patches:
- 700-ltrace-support.patch: modified to not contradict with new upstream
release, the hotkey for ltrace output changed from 'l' to 'L'.
* debian/README:
- Added with note about ltrace support.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Mon, 29 Jun 2009 13:08:39 +0300
htop (0.8.1+svn149-2) unstable; urgency=low
* debian/rules:
- Build with VServer support. (Closes: #522905)
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Fri, 17 Apr 2009 21:54:45 +0300
htop (0.8.1+svn149-1) unstable; urgency=low
* New upstream development snapshot:
- Allow building without PLPA support. (Closes: #521861)
* debian/patches:
- 010-make-desktop-file-valid.patch: deleted, merged upstream.
- 100-upstream-sort-by-processor-and-session.patch: deleted, merged
upstream.
- 110-upstream-fix-page-size-on-BSD.patch: deleted, merged upstream.
- 120-upstream-explain-cpu-bars-in-monochrome-mode.patch: deleted, merged
upstream.
- 200-filter-non-printable-characters.patch: deleted, upstream has own
version of this patch.
- 610-rename-veid-to-ctid.patch: deleted, merged upstream.
- 600-openvz-veid-on-kernels-gt-2.6.18.patch: refreshed.
- 800-tree-view-without-userland-threads.patch: deleted, merged upstream.
- 700-ltrace-support.patch: refreshed, added the description.
* debian/rules:
- Deal more robustly with config.{sub,guess} files, thanks to Roger Leigh.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sun, 05 Apr 2009 11:51:34 +0300
htop (0.8.1-6) unstable; urgency=low
* debian/patches:
- debian/patches/110-upstream-fix-page-size-on-BSD.patch was accidentally
incorrectly applied, causing zeroes in memory columns. Fixed.
* debian/rules:
- File Process.c somewhy is not regenerated during normal build process.
Regenerate it by hand.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sun, 29 Mar 2009 22:37:49 +0300
htop (0.8.1-5) unstable; urgency=low
* debian/patches:
- New 100-upstream-sort-by-processor-and-session.patch, cherry-picked from
upstream svn: allow sorting by 'processor' and 'session' columns.
(Closes: #501317)
- New debian/patches/110-upstream-fix-page-size-on-BSD.patch,
cherry-picked from upstream svn: fix page size on BSD systems.
(Closes: #485277)
- New debian/patches/120-upstream-explain-cpu-bars-in-monochrome-mode.patch,
cherry-picked from upstream svn: document meanings of chars in CPU bars
in monochrome mode. (Closes: #477222)
- 600-openvz-veid-on-kernels-gt-2.6.18.patch: added a description.
- 610-rename-veid-to-ctid.patch: added a description.
- 800-tree-view-without-userland-threads.patch: added a description.
* debian/control:
- Bump 'Standards-Version' to 3.8.1, no changes needed.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sun, 29 Mar 2009 19:49:53 +0300
htop (0.8.1-4) unstable; urgency=low
* debian/patches:
- New 600-openvz-veid-on-kernels-gt-2.6.18.patch: fix determining veid on
openvz-enabled kernels greater than 2.6.18. Patch by
Thorsten Schifferdecker <tsd@debian.systs.org>. (Closes: #516846)
- New 610-rename-veid-to-ctid.patch: openvz: renames 'veid' -> 'ctid' since
it's now a preferred term. Patch by
Thorsten Schifferdecker <tsd@debian.systs.org>. (Closes: #516847)
- New 700-ltrace-support.patch: add ltrace(1) support in addition to strace
support. Patch by <knotor@users.sourceforge.net>.
- New 800-tree-view-with-userland-threads.patch: patch to fix tree view when
userland threads are hidden, taken from Ubuntu.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Mon, 02 Mar 2009 23:17:04 +0200
htop (0.8.1-3) unstable; urgency=low
* debian/rules:
- Don't ship empty directories in the package.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sun, 15 Feb 2009 13:56:41 +0200
htop (0.8.1-2) experimental; urgency=low
* Disabled unicode support, it has both build and work problems yet.
(Closes: #507423)
* debian/patches:
- New patch 200-filter-non-printable-characters.patch to filter
non-printable characters in process names. Thanks to Josh Triplett
and Andrew O. Shadoura. (Closes: #504144)
- 010-make-desktop-file-valid.patch: comment added.
* debian/control:
- Added '${misc:Depends}' to 'Depends', fixes lintian warning.
- Added 'python-minimal' to 'Build-Depends' for MakeHeader.py.
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sat, 06 Dec 2008 11:03:18 +0200
htop (0.8.1-1) experimental; urgency=low
* New maintainer. Thanks for work, Bartosz Fenski!
* New upstream release:
- Changes in 0.8.1 (Closes: #499928):
- Linux-VServer support.
- Battery meter (Closes: #484771).
- Fixed collection of IO stats in multithreaded processes.
- Removed assertion that fails on hardened kernels.
- Changes in 0.8.0 (Closes: #494646, #486213):
- Ability to change sort column with the mouse by
clicking column titles.
- Added support for Linux per-process IO statistics.
- Added Unicode support.
- Fixed display of CPU count for threaded processes.
- Avoid crashing when using many meters.
- Other fixes:
- Significantly increased line length limit (to 65535).
(Closes: #470280)
* debian/control:
- Bumped 'Standards-Version' to 3.8.0, no changes needed.
- Changed Build-Depends on debhelper to (>= 7) and 'libncurses5-dev' ->
'libncursesw5-dev'. Added dependency on quilt (>= 0.40).
* debian/rules:
- Some cleanup, used debhelper v7 commands.
- Pass '--enable-taskstats' and '--enable-unicode' options to configure.
- Pass '--enable-openvz' to configure. (Closes: #480541)
* debian/patches:
- New 010-make-desktop-file-valid.patch: makes desktop file valid.
Thanks to Nathan Handler <nathan.handler@gmail.com> (Closes: #488912)
* debian/copyright:
- Fixed path for GPLv2 license.
* debian/menu:
- Set proper section, removed hint (now useless).
-- Eugene V. Lyubimkin <jackyf.devel@gmail.com> Sun, 16 Nov 2008 20:36:18 +0200
htop (0.7-1) unstable; urgency=low
* New upstrem version. (Closes: #452634)
* Move URL to homepage header.
* Bumped Standards-Version (no changes needed).
* Fixed watch file. (Closes: #449631)
-- Bartosz Fenski <fenio@debian.org> Sat, 26 Apr 2008 13:57:14 +0200
htop (0.6.6+svn20070915-1) unstable; urgency=low
* New upstream snapshot with dedication to Nico Golde
(Closes: #410398, #410391, #427127)
- fixes problems with trailing newline in confi (Closes: #420856)
- fixes segfault on missing command line args (Closes: #435651)
- fixes FTBS with GCC 4.3 branch (Closes: #416852)
-- Bartosz Fenski <fenio@debian.org> Sat, 15 Sep 2007 14:37:41 +0200
htop (0.6.3-1) unstable; urgency=low
* New upstream version.
- allows to rekill tagged group of processes (Closes: #375219)
* Bumped Standards-Version to 3.7.2 (no changes needed).
-- Bartosz Fenski <fenio@debian.org> Mon, 14 Aug 2006 13:03:15 +0200
htop (0.6.2-1) unstable; urgency=low
* New upstream version.
- doesn't segfault running as root. (Closes: #354258)
-- Bartosz Fenski <fenio@debian.org> Tue, 4 Jul 2006 07:53:58 +0200
htop (0.6-1) unstable; urgency=low
* New upstream version.
- doesn't show pipe when some value is equal to zero. (Closes: #325058)
- allows renicing group of processes. (Closes: #317391)
-- Bartosz Fenski <fenio@debian.org> Thu, 29 Dec 2005 13:22:07 +0100
htop (0.5.4-1) unstable; urgency=low
* New upstream version.
- does not leave cruft on console on exit. (Closes: #334657)
-- Bartosz Fenski <fenio@debian.org> Fri, 4 Nov 2005 17:25:27 +0100
htop (0.5.3-1) unstable; urgency=low
* New upstream version.
* Bumped Standards-Version to 3.6.2 (no changes needed).
-- Bartosz Fenski <fenio@debian.org> Tue, 20 Sep 2005 10:49:52 +0200
htop (0.5.2-1) unstable; urgency=low
* New upstream bugfix release.
-- Bartosz Fenski <fenio@debian.org> Wed, 8 Jun 2005 20:02:19 +0200
htop (0.5.1-1) unstable; urgency=low
* New upstream version.
- correctly honors limits for nice values (Closes: #291502)
-- Bartosz Fenski <fenio@debian.org> Sun, 10 Apr 2005 17:49:12 +0200
htop (0.5-2) unstable; urgency=low
* watch file changed a little to handle weird upstream versions
* s/fenio@o2.pl/fenio@debian.org/
-- Bartosz Fenski <fenio@debian.org> Thu, 7 Apr 2005 12:00:11 +0200
htop (0.5-1) unstable; urgency=low
* New upstream version.
- fixes problem with wrongly displayed CPU bar (Closes: #283212)
-- Bartosz Fenski <fenio@o2.pl> Sat, 27 Nov 2004 10:10:17 +0100
htop (0.4.1-3) unstable; urgency=low
* Fixed handling of non-alphanumeric chars during search.
Thanks to Gian Piero Carrubba for noticing it (Closes: #269060)
* Added description of recursive search of processes to the manpage.
Should be now clear how does it work so (Closes: #269061)
-- Bartosz Fenski <fenio@o2.pl> Tue, 31 Aug 2004 21:40:15 +0200
htop (0.4.1-2) unstable; urgency=low
* Included updated manpage. (Closes: #269064)
Thanks to Gian Piero Carrubba for provided patch.
-- Bartosz Fenski <fenio@o2.pl> Tue, 31 Aug 2004 21:08:13 +0200
htop (0.4.1-1) unstable; urgency=low
* New upstream version.
- fixes FTBFS on some archs (Closes: #268373)
-- Bartosz Fenski <fenio@o2.pl> Fri, 27 Aug 2004 14:01:11 +0200
htop (0.4-1) unstable; urgency=low
* New upstream version.
* Added debian/menu file.
-- Bartosz Fenski <fenio@o2.pl> Sun, 22 Aug 2004 13:09:12 +0200
htop (0.3.3-1) unstable; urgency=low
* New upstream version.
* Added debian/watch file.
-- Bartosz Fenski <fenio@o2.pl> Sun, 20 Jun 2004 10:33:13 +0200
htop (0.3.1-1) unstable; urgency=low
* New upstream version.
* Hopefully first official Debian release. (Closes: #248939)
Thanks for sponsoring goes to Cedric Delfosse.
* debian/rules:
- removed dh_installman, cause it's now included by upstream.
-- Bartosz Fenski <fenio@o2.pl> Mon, 31 May 2004 05:37:15 +0200
htop (0.3-1) unstable; urgency=low
* New upstream version.
-- Bartosz Fenski <fenio@o2.pl> Thu, 20 May 2004 01:15:05 +0200
htop (0.2.1-1) unstable; urgency=low
* New upstream version.
* Some updates to manual page.
-- Bartosz Fenski <fenio@o2.pl> Sat, 15 May 2004 10:15:03 +0200
htop (0.2-1) unstable; urgency=low
* Initial Release.
-- Bartosz Fenski <fenio@o2.pl> Fri, 14 May 2004 10:37:04 +0200
|