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
|
less (551-2+deb11u2) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
[ Milan Kupcevic ]
* Fix incorrect display when filename contains control chars
(Closes: #1069681)
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 02 May 2024 20:29:26 +0200
less (551-2+deb11u1) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* Shell-quote filenames when invoking LESSCLOSE (CVE-2022-48624)
(Closes: #1064293)
* Fix bug when viewing a file whose name contains a newline (CVE-2024-32487)
(Closes: #1068938)
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 19 Apr 2024 21:37:35 +0200
less (551-2) sid; urgency=medium
* remove /bin/less pager alternative before upgrade
(closes: #962590) (lp: #1874953)
* debian/lesspipe: use mktemp instead of tempfile (closes: #961690)
* do not install empty /bin/ directory
* remove unsafe mime mailcap placeholder entry quotes
* set standards version to 4.5.0
-- Milan Kupcevic <milan@debian.org> Sun, 05 Jul 2020 19:36:33 -0400
less (551-1) sid; urgency=low
* many thanks to Anibal Monsalve Salazar for a decade worth of contributions
to this package
* new maintainer (closes: #925018)
* new upstream release (closes: #925008, #892879, #178276, #473227, #922185,
#839103, #626348, #330241, #914197, #707824)
- don't count lines in initial screen if using -X with -F (closes: #906261)
- update unicode tables to 2017-03-08 (closes: #597918, #881350)
- mark truncated lines with a special character (closes: #547257)
* set standards version to 4.4.0
* set debhelper compatibility to 12
* build depend on libncurses-dev
* add VCS repository URLs
* gbp import pristine-tar
* move binaries back to /usr/bin (closes: #500092)
* update less-is-more patch
* update lesspipe man page (lp: #1839533)
-- Milan Kupcevic <milan@debian.org> Sat, 14 Sep 2019 22:28:16 -0400
less (487-0.1) unstable; urgency=medium
* Non-maintainer upload.
* New upstream version. Closes: #848336, #843541.
* Build depend on libncursesw5-dev.
* debian/lesspipe:
- Add snap support (Adam Collard).
- Fix typo that broke ddeb support (Adam Conrad). Closes: #832121.
- Add Support for .whl and .egg files (John T. Wodder). Closes: #862048.
* debian/patches/lp-1562308-fix_mkutable.patch:
- Fix east asian width problem (Mitsuya Shibata).
* CVE-2014-9488 fixed upstream in 475. Closes: #780247.
-- Matthias Klose <doko@debian.org> Fri, 01 Dec 2017 05:11:09 +0100
less (481-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Reconcile multiple postinst scripts so that less registers a pager
alternative again (closes: #812252).
-- Colin Watson <cjwatson@debian.org> Tue, 23 Feb 2016 10:51:48 +0000
less (481-2) unstable; urgency=medium
* Fix "files with the same name installed in / and /usr"
Patch by Marco d'Itri
Closes: #767928
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 11 Jan 2016 12:12:37 +0000
less (481-1) unstable; urgency=medium
* New upstream
Closes: #804025
* These are the differences between version 458 and version 481:
- Don't overwrite history file; just append to it. This behaves
better when multiple sessions are running less simultaneously and
using the same history file.
- New command ESC-G goes to end of currently buffered data in a pipe.
- Disable history feature when compiled with LESSHISTFILE set to "-".
- In more-compatible mode, make the -p option apply to every file
opened, not just the first one.
- In more-compatible mode, change the -e option to work like -E,
not -EF.
- Treat multiple CRs before LF are like one CR (all the CRs are
hidden).
- Allow "extra" string in lesskey file to append to a multi-char
command (like a search pattern), without executing the command.
- Ignore -u/-U setting while viewing help file, so that underline
and bold chars are displayed correctly.
- Improve detection of "binary" files in UTF-8 mode.
- Fix bug with ++ commands.
- Fix bug where prompt was sometimes not displayed with +G.
- Fix possible memory corruption
- Fix bugs and improve performance in ampersand filtering.
- Allow %% escape sequence in LESSOPEN variable.
- Automate construction of Unicode tables from Unicode database.
* debian/control: Standards-Version: 3.9.6
* Remove debian/source/options
* lesspipe: add support for OpenEmbedded .ipk files
Patch by Yann Dirson
Closes: #804024
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 08 Jan 2016 03:03:48 +0000
less (458-3) unstable; urgency=medium
* debian/control:
Priority: important
Standards-Version: 3.9.5
* debian/postinst: add (after adding the /bin/less alternative):
update-alternatives --quiet --remove pager /usr/bin/less
This change needs to get into one stable release.
Patch by Andreas Beckmann.
Closes: #694051.
* debian/rules:
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
* Refresh patches.
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 08 Sep 2014 05:35:17 +0100
less (458-2) unstable; urgency=low
* Merge 458-1ubuntu1
- debian/lesspipe{.1}: Make lesspipe treat ddebs the same as it does debs
and udebs (LP: #1180013).
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 06 Jun 2013 09:52:36 +1000
less (458-1ubuntu1) saucy; urgency=low
* Merge from Debian unstable (LP: #1180013). Remaining changes:
- debian/lesspipe{.1}: Make lesspipe treat ddebs the same as it does debs
and udebs.
-- Logan Rosen <logan@ubuntu.com> Tue, 14 May 2013 21:32:29 -0400
less (458-1) unstable; urgency=low
[ Anibal Monsalve Salazar ]
* New upstream
Major differences between version 451 and version 458:
- Allow backslash escaping of metacharacters in LESS environment variable if
the --use-backslash option is set.
- Don't quit if syntax errors are found in command line options.
- Increase sizes of some internal buffers.
- Fix configure bug with --with-regex=none.
- Fix crash with "stty rows 0".
- Fix display bug when using up/down arrow on the command line.
Major differences between version 451 and version 457:
- Allow backslash escaping of metacharacters in LESS environment variable if
the --use-backslash option is set.
- Don't quit if syntax errors are found in command line options.
- Increase sizes of some internal buffers.
- Fix configure bug with --with-regex=none.
- Fix crash with "stty rows 0".
Revert backslash handling in option string
Closes: #695361
* lesspipe: handle *.txz files
Patch by Tim Marston
Closes: #691981, #691991
[ Wookey ]
* Add Multi-Arch:foreign meta-data to allow cross-dependencies
Closes: #693318
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 11 May 2013 11:50:06 +1000
less (456-1ubuntu2) saucy; urgency=low
* Make lesspipe treat ddebs the same as it does debs and udebs.
-- Adam Conrad <adconrad@ubuntu.com> Wed, 08 May 2013 17:18:44 -0600
less (456-1ubuntu1) raring; urgency=low
* Add Multi-Arch: foreign meta-data to allow cross-dependencies
(LP: #1081611).
-- Wookey <wookey@wookware.org> Thu, 22 Nov 2012 13:09:54 +0000
less (456-1) unstable; urgency=low
* New upstream
Upload to unstable
Major differences between version 451 and version 456:
- Allow backslash escaping of metacharacters in LESS environment variable.
- Don't quit if syntax errors are found in command line options.
- Increase sizes of some internal buffers.
- Fix configure bug with --with-regex=none.
- Fix crash with "stty rows 0".
* man: fix 'There is no -l option ("less --help" for help)'
Closes: #692834
* Standards version is 3.9.4
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 12 Nov 2012 12:30:57 +1100
less (455-1) experimental; urgency=low
* New upstream
Major differences between version 451 and version 455:
- Allow backslash escaping of metacharacters in LESS environment variable.
- Don't quit if syntax errors are found in command line options.
- Increase sizes of some internal buffers.
- Fix configure bug with --with-regex=none.
- Fix crash with "stty rows 0".
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 08 Nov 2012 09:35:11 +1100
less (451-1) unstable; urgency=low
* New upstream
Major changes between versions 444 and 451:
- Add ESC-F command to keep reading data until a pattern is found.
- Use exit code of LESSOPEN script if LESSOPEN starts with "||".
- When up/down arrow is used on the command line immediately after
typing text, the next command starting with that text is found.
- Add support for GNU regex.
- Add configure option --with-regex=none and fix compile errors
when compiling with no regex library.
- Fix possible crashes caused by malformed LESSOPEN or LESSCLOSE
variables.
- Fix bug highlighting text which is discontiguous in the file due
to backspace processing.
- Fix bug in displaying status column when scrolling backwards with
-J and -S in effect.
* Merge 444-4ubuntu1
- Revert to gzip compression for the package's data tarball.
* Standards version is 3.9.4
* Configure less with --with-regex=gnu
Closes: #656694
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 15 Oct 2012 13:59:50 +1100
less (444-4ubuntu1) quantal; urgency=low
* Resynchronise with Debian. Remaining changes:
- Revert to gzip compression for the package's data tarball.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 11 Jun 2012 14:05:09 +0100
less (444-4) unstable; urgency=low
* Fix typo with CFLAGS in debian/rules
Patch by Simon Ruderich
Closes: #676909
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 11 Jun 2012 00:07:28 +1000
less (444-3) unstable; urgency=low
* Standards version is 3.9.3
* DH compatibility level is 9
* Use hardening options
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 09 Jun 2012 20:36:51 +1000
less (444-2ubuntu1) quantal; urgency=low
* Resynchronise with Debian. Remaining changes:
- Revert to gzip compression for the package's data tarball.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 22 May 2012 14:18:37 +0100
less (444-2) unstable; urgency=low
* More can also go backwards!
Add 02-655926-more_can_go_backwards.patch
Closes: 655926
* Add support for *.xz and *.tar.xz
Patch by Darren Salt
Closes: 572228
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 31 Jan 2012 14:43:42 +1100
less (444-1ubuntu1) oneiric; urgency=low
* Revert to gzip compression for the package's data tarball. Packages in
the base system may not use bzip2.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 10 Aug 2011 21:21:54 +0100
less (444-1) unstable; urgency=low
* New upstream
These are the differences between version 443 and version 444:
- Fix bug in unget handling that can cause strange effects on the
command line.
- Remove vestiges of obsolete -l option that can cause a crash.
* Fix debian-rules-missing-recommended-target
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 17 Jun 2011 22:20:38 +1000
less (443-1) unstable; urgency=low
* New upstream. Upload to unstable
Major changes between "less" versions 436 and 443
- Change search behavior such that when a search is given an explicit
pattern, the entire displayed screen is included in the search and
not just the portion after the target line.
- Add -A option to change search behavior to the old way: only
the portion of the screen after the target line is searched.
- Add %F formatting to prompt strings, replaced by the last component
of the input file.
- Control-G while editing a command exits the command.
- Less now exits with status 2 if control-C is pressed and -K is in effect.
- Fix "ungetc overflow" when passing long commands via the -p option.
- Fix bug in using line filtering via the & command
in combination with -i and -I.
- Fix bug in handling negative arguments to the -j option.
- Fix bug in handling %t in prompt strings.
- Improve handling of long option names.
- Improve percentage calculation for very large files.
* Debian policy version is 3.9.2
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 13 Apr 2011 12:53:32 +1000
less (441-1) experimental; urgency=low
* New upstream beta release
These are the differences between version 436 and version 441:
- Change search behavior such that when a search is given an explicit
pattern, the entire displayed screen is included in the search and not
just the portion after the target line.
- Add -A option to change search behavior to the old way: only the portion
of the screen after the target line is searched.
- Add %F formatting to prompt strings, replaced by the last component of
the input file.
- Less now exits with status 2 if control-C is pressed and -K is in
effect.
- Fix "ungetc overflow" when passing long commands via the -p option.
- Fix bug in using line filtering via the & command in combination with -i
and -I.
- Fix bug in handling negative arguments to the -j option.
- Fix bug in handling %t in prompt strings.
- Improve handling of long option names.
- Improve percentage calculation for very large files.
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 09 Mar 2011 10:11:38 +1100
less (440-2) experimental; urgency=low
* Add support for ar in lesspipe
Patch by arno.
Closes: 399681
* Add support for lzip in lesspipe
Patch by Antonio Diaz Diaz
Closes: 608485
* Add 7zr as a fallback in case 7za is not found by lesspipe
Patch by Tom Feiner
Closes: 543332
* Document support for *.7z files in lesspipe.1
Closes: 543338
* Use the -layout option for the *.pdf files in lesspipe
Patch by Karl Chen
Closes: 411775
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 18 Jan 2011 15:44:48 +1100
less (440-1) experimental; urgency=low
* New upstream beta release
These are the differences between version 436 and version 440:
- Add -A option to change search behavior such that when a search is
given an explicit pattern, the entire displayed screen is included
in the search and not just the portion after the target line.
- Add %F formatting to prompt strings, replaced by the last component
of the input file.
- Less now exits with status 2 if control-C is pressed and -K is in
effect.
- Fix "ungetc overflow" when passing long commands via the -p option.
- Fix bug in using line filtering via the & command in combination with
-i and -I.
- Fix bug in handling negative arguments to the -j option.
- Fix bug in handling %t in prompt strings.
- Improve handling of long option names.
- Improve percentage calculation for very large files.
-- Anibal Monsalve Salazar <anibal@debian.org> Sun, 09 Jan 2011 17:43:50 +1100
less (438-1) experimental; urgency=low
* New upstream beta release
These are the differences between version 436 and version 438:
- Add %F formatting to prompt strings, replaced by the last component
of the input file.
- Less now exits with status 2 if control-C is pressed and -K is in
effect.
- Fix "ungetc overflow" when passing long commands via the -p option.
- Fix bug in using line filtering via the & command in combination with
-i and -I.
- Fix bug in handling negative arguments to the -j option.
- Fix bug in handling %t in prompt strings.
- Improve handling of long option names.
- Improve percentage calculation for very large files.
* Fix out-of-date-standards-version
* Source/format is 3.0 (quilt)
* Pass parameters -Zbzip2 and -z9 to dpkg-deb via dh_builddeb
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 01 Jan 2011 17:00:59 +1100
less (436-1) unstable; urgency=low
* New upstream; upload to unstable
These are the differences between version 429 and version 436:
- Don't pass "-" to non-pipe LESSOPEN unless it starts with "-".
- Allow a fraction as the argument to the -# (--shift) option.
- Fix highlight bug when underlined/overstruck text matches at
end of line.
- Fix non-regex searches with ctrl-R.
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 29 Jul 2009 17:22:17 +1000
less (434~beta-1) experimental; urgency=low
* New upstream beta release; closes: 535606
* Fix out-of-date-standards-version
* Fix spelling-error-in-readme-debian
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 04 Jul 2009 13:27:27 +1000
less (429-2) unstable; urgency=low
* Drop 02-178276-empty_file_isnt_binary.patch; closes: #524779
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 20 Apr 2009 13:25:36 +1000
less (429-1) unstable; urgency=low
* New upstream; closes: #523981
- The characters $, =, %, and ~ are metacharacters; closes: #405001
* Standards version is 3.8.1
* debhelper compatibility is 7
* Run dh_prep instead of dh_clean -k
* Add debian/patches/02-178276-empty_file_isnt_binary.patch by Steve Kemp;
closes: #178276, #187021
* Update description; patch by Justin B Rye; closes: #432002
* Improve processing of .doc files; patch by Steve Kemp; closes: #397191
* Use tar --force-local; patch by Karl Chen; closes: #400686
* Support lzma in lesspipe; patch by Daniel Scheple and s_lange;
closes: #418943, #508951
* Move less to /bin; closes: #500092
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 17 Apr 2009 22:15:43 +1000
less (424-1) experimental; urgency=low
* New upstream; closes: #487772
* Standards version is 3.8.0
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 24 Jun 2008 18:48:32 +1000
less (418-1) unstable; urgency=low
* New upstream
* Removed debian/patches/02-446894-csi.patch, merged upstream
* Updated debian/copyright
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 22 Jan 2008 21:24:23 +1100
less (416-2) unstable; urgency=medium
* Fixed "-R option causes a crash by (at least) some Japanese contents".
Patch by Colin Watson <cjwatson@debian.org>. Closes: #446894
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 08 Jan 2008 22:37:35 +1100
less (416-1) unstable; urgency=low
* New upstream version. Closes: #453074
* Bumped Standards-Version to 3.7.3
* Moved homepage from description to pseudo header field in
debian/control
-- Anibal Monsalve Salazar <anibal@debian.org> Sun, 23 Dec 2007 20:35:30 +1100
less (409-1) unstable; urgency=low
* New upstream release.
* 02-446274-segfaults-searching-dvb-scan-output.patch was merged upstream.
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 22 Oct 2007 21:05:34 +1000
less (408-2) unstable; urgency=low
* Build-depends on quilt
* Fixed "less segfault when searching dvb scan output", closes: #446274
Patch by Mark Nudelman <markn@greenwoodsoftware.com>
* Fixed "LESS_IS_MORE is broken", closes: #434417
Patch by Jim Paris <jim@jtan.com>
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 12 Oct 2007 07:32:35 +1000
less (408-1) unstable; urgency=low
* New upstream release.
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 11 Oct 2007 07:38:52 +1000
less (406-0) unstable; urgency=low
* New upstream release.
* Fixed the following lintian messages:
- W: less source: debian-rules-sets-DH_COMPAT line 11
- W: less source: debian-rules-ignores-make-clean-error line 47
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 03 Jul 2007 22:21:33 +1000
less (394-4) unstable; urgency=low
* New maintainer.
* Set DH_COMPAT to 5.
* Added ${misc:Depends} to dependency list.
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 16 Oct 2006 20:52:24 +1000
less (394-3) unstable; urgency=low
* Print a message when catdoc or isoinfo are not installed.
Closes: #358704: lesspipe: treat catdoc and isoinfo like other helper
programs
* debian/control: Updated Standards-Version to 3.7.2. No changes needed.
-- Thomas Schoepf <schoepf@debian.org> Tue, 18 Jul 2006 11:16:11 +0200
less (394-2) unstable; urgency=low
* Closes: #350252: less does not show .ear files
* debian/rules: switched to dh_installman from dh_installmanpages.
* debian/watch: added watch file.
* debian/lesspipe: support .7z archives.
Closes: #347237: lesspipe: please add 7-Zip format support
-- Thomas Schoepf <schoepf@debian.org> Mon, 13 Mar 2006 11:07:24 +0100
less (394-1) unstable; urgency=low
* New upstream version.
* Closes: #297763: less: invokes nano as editor even though EDITOR
and VISUAL not set
* Closes: #338815: less: Missing prompt
-- Thomas Schoepf <schoepf@debian.org> Fri, 9 Dec 2005 23:36:49 +0100
less (393-1) unstable; urgency=low
* New upstream version.
* Closes: #333475: less no longer handles bold+underline overstriking
correctly
* Closes: #336864: manpages: problem with iconv manpage
* Closes: #334771: history file is created world-readable
* Closes: #336606: Formatting issue in the less.1 man page
-- Thomas Schoepf <schoepf@debian.org> Wed, 2 Nov 2005 21:33:38 +0100
less (392-1) unstable; urgency=low
* New upstream version
* Closes: #332671: early parts of overlong lines are missing when
single-stepping through file
* Closes: #333091: less -c displays garbage at the end of lines longer
than terminal width when searching
* Closes: #333140: line wrapping is buggy with less -c
* Closes: #333783: less: Does not work properly line length > 80
* Closes: #333920: less: very weird output
* debian/control: Standards-Version: 3.6.2. No changes required.
* debian/control: Build-Depends: debhelper (>= 4.0.0)
* debian/rules: s/DH_COMPAT=2/DH_COMPAT=4/
-- Thomas Schoepf <schoepf@debian.org> Fri, 14 Oct 2005 23:05:23 +0200
less (391-1) unstable; urgency=low
* New upstream version.
* Closes: #180625: less: doesn't correctly display multibyte chars in search
string
* Closes: #180618: less: wrong - signs in utf-8
* Closes: #226023: less: does not properly detect UTF-8 locales
* Closes: #237427: Segfault when directory is deleted while in help screen
* Closes: #249594: less: ignore-case in searches doesn't ignore case
* Closes: #257068: less: add [] to DEF_METACHARS
* Closes: #269993: less: search history across sessions would be nice
* Closes: #314248: less: Search command does not accept UTF-8
multibyte characters
* Closes: #314249: less should filter non-printable (raw) characters
of the filename
-- Thomas Schoepf <schoepf@debian.org> Wed, 5 Oct 2005 18:04:29 +0200
less (382-2) unstable; urgency=low
* debian/lesspipe: refuse to create temporary files in case 'tempfile'
is not installed, which does not happen on a sane Debian system.
Closes: #272267: Critical TMPFILE/root exploit in lesspipe
* debian/rules: Run configure with '--host' option on cross build.
Closes: #285413: less: [PATCH] cross build
-- Thomas Schoepf <schoepf@debian.org> Mon, 13 Dec 2004 16:08:26 +0100
less (382-1) unstable; urgency=medium
* New upstream release.
less-382 is identical to 381 except for the removal
of some copyrighted code for OS-9 support.
-- Thomas Schoepf <schoepf@debian.org> Thu, 1 Jul 2004 14:41:49 +0200
less (381-3) unstable; urgency=low
* debian/control: Standards-Version: 3.6.1. No changes required.
* debian/lesspipe.1: Put quotes around the command line examples
Closes: #201901: lesspipe: man page update for zsh
* Changed short description from
"A file pager program, similar to more(1)" to
"Pager programm similar to more".
Closes: #218836: poor short description
* debian/lesspipe: Support *.iso, *.raw, *.bin files.
Closes: #230556: lessfilter to list contents of ISO files (CD images)
-- Thomas Schoepf <schoepf@debian.org> Wed, 4 Feb 2004 15:25:37 +0100
less (381-2) unstable; urgency=low
* debian/lesspipe.1: document which extensions are handled.
Closes: #183138: lesspipe/lessfile manual page unclear about built-in
behavior
-- Thomas Schoepf <schoepf@debian.org> Sun, 2 Mar 2003 22:43:21 +0100
less (381-1) unstable; urgency=low
* New upstream version.
* Closes: #123988: less: can't backspace over UTF-8
* debian/lesspipe: Support *.xpi files.
* debian/lesspipe: Support *.pdf files.
Closes: #171648: less: Add support for pdf using xpdf's pdftotext?
* debian/lesspipe: Support *.udeb files.
Closes: #172285: less: udeb support for lesspipe
* debian/rules: Removed -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 from
CFLAGS. less' configure script detects large file support itself now.
* Removed mimehandler debconf question.
Closes: #168668: "less" file usr/lib/mime/packages/less
fails debsums test
Closes: #174719: less: Danish template translation
-- Thomas Schoepf <schoepf@debian.org> Wed, 22 Jan 2003 21:12:34 +0100
less (378-2) unstable; urgency=low
* debian/README.Debian: document that less can view Chinese text if
LESSCHARSET is set to utf-8
Closes: Bug#160920: less: problem+fix viewing Chinese in less
-- Thomas Schoepf <schoepf@debian.org> Sun, 6 Oct 2002 15:09:15 +0200
less (378-1) unstable; urgency=low
* New upstream version.
* debian/lessopen renamed to debian/lesspipe
* debian/lesspipe: Support unzoo to view .zoo files.
* Standards-Version: 3.5.7
-- Thomas Schoepf <schoepf@debian.org> Tue, 1 Oct 2002 22:40:12 +0200
less (376-3) unstable; urgency=low
* Closes:Bug#154856: debconf template translation for brazilian portuguese
-- Thomas Schoepf <schoepf@debian.org> Sat, 3 Aug 2002 14:20:22 +0200
less (376-2) unstable; urgency=low
* Closes:Bug#150675: less: Less source package includes config.cache
-- Thomas Schoepf <schoepf@debian.org> Sat, 22 Jun 2002 00:45:01 +0200
less (376-1) unstable; urgency=low
* New upstream version.
* Closes: Bug#118184: less displays files in incorrect order if a filename
is given multiple times
-- Thomas Schoepf <schoepf@debian.org> Wed, 19 Jun 2002 20:23:21 +0200
less (374-5) unstable; urgency=low
* Closes:Bug#145385: less: Blanks in description
-- Thomas Schoepf <schoepf@debian.org> Wed, 1 May 2002 22:36:21 +0200
less (374-4) unstable; urgency=low
* Closes:Bug#141167: less: updated French templates file
* Moved german translation from templates to templates.de
-- Thomas Schoepf <schoepf@debian.org> Thu, 4 Apr 2002 16:43:52 +0200
less (374-3) unstable; urgency=low
* Closes: Bug#140967: templates file points to /usr/doc/less/LESSOPEN
-- Thomas Schoepf <schoepf@debian.org> Wed, 3 Apr 2002 14:23:40 +0200
less (374-2) unstable; urgency=low
* Created a debconf template that asks whether to add a mime handler for
"application/*"
Closes: Bug#86349: Love-Love for lessopen!
Closes: Bug#133538: application/* breaks a lot
Closes: Bug#140356: less cannot display application/*
-- Thomas Schoepf <schoepf@debian.org> Sun, 31 Mar 2002 21:25:28 +0200
less (374-1) unstable; urgency=low
* New upstream version.
* Closes: Bug#132058: -x sets scroll lines rather than tab stops
-- Thomas Schoepf <schoepf@debian.org> Wed, 20 Feb 2002 17:39:49 +0100
less (373-3) unstable; urgency=low
* Closes: Bug#130804: over-allocate on really long lines
-- Thomas Schoepf <schoepf@debian.org> Mon, 18 Feb 2002 18:14:55 +0100
less (373-2) unstable; urgency=low
* Closes: Bug#129366: application/* should be handled without LESSOPEN, too
-- Thomas Schoepf <schoepf@debian.org> Thu, 17 Jan 2002 20:08:44 +0100
less (373-1) unstable; urgency=low
* New upstream version.
-- Thomas Schoepf <schoepf@debian.org> Mon, 14 Jan 2002 21:26:54 +0100
less (371-2) unstable; urgency=low
* Added a mime handler for "application/*".
* Closes: Bug#128038: add .rar viewing support to lesspipe
-- Thomas Schoepf <schoepf@debian.org> Sun, 13 Jan 2002 12:58:18 +0100
less (371-1) unstable; urgency=low
* New upstream version.
* Closes: Bug#69273: description of charset defaults in man page is
confusing
* Closes: Bug#87382: variable-width tabs
* Closes: Bug#123988: can't backspace over UTF-8
* Closes: Bug#126499: New upstream release available (version 370)
* Standards-Version: 3.5.6
* Closes: Bug#119999: please add # to DEF_METACHARS
which lets me remove the comment in lesspipe about filenames starting with
"#" (see Bug#79494). And this
Closes: Bug#122093: can't do 'eval `lessfile`' from prompt in tcsh
-- Thomas Schoepf <schoepf@debian.org> Fri, 4 Jan 2002 15:17:23 +0100
less (358-12) unstable; urgency=low
* Closes: Bug#83384: lessopen: full of bashisms
* Closes: Bug#117639: */* is not allowed by RFC-1524
-- Thomas Schoepf <schoepf@debian.org> Thu, 1 Nov 2001 11:36:23 +0100
less (358-11) unstable; urgency=low
* Compile with -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
Closes: Bug#83469: less doesn't handle files > 2GB
Closes: Bug#112999: less does not support files > 2gb
-- Thomas Schoepf <schoepf@debian.org> Fri, 26 Oct 2001 16:08:50 +0200
less (358-10) unstable; urgency=low
* Closes: Bug#114913: less: uses echo -e
-- Thomas Schoepf <schoepf@debian.org> Mon, 8 Oct 2001 21:50:46 +0200
less (358-9) unstable; urgency=low
* A system-wide lesskey file may be put to /etc/sysless.
Closes: Bug#74146: config file in /usr/bin !
-- Thomas Schoepf <schoepf@debian.org> Mon, 27 Aug 2001 21:54:07 +0200
less (358-8) unstable; urgency=low
* Closes: Bug#109643: less has a new homepage
-- Thomas Schoepf <schoepf@debian.org> Thu, 23 Aug 2001 12:51:42 +0200
less (358-7) unstable; urgency=low
* Standards-Version: 3.5.2
* lesspipe now handles .war (Java servlet archives).
-- Thomas Schoepf <schoepf@debian.org> Sun, 22 Jul 2001 18:55:38 +0200
less (358-6.1) unstable; urgency=low
* Non-maintainer upload
* Recompile to fix problems on ARM
-- Philip Blundell <philb@armlinux.org> Sun, 11 Mar 2001 07:33:48 -0500
less (358-6) unstable; urgency=low
* Closes: Bug#84402: Request addition to lesspipe
Additionally, support *.tar.dz
-- Thomas Schoepf <schoepf@debian.org> Fri, 2 Feb 2001 18:56:04 +0100
less (358-5) unstable; urgency=low
* Closes: Bug#80989: less: less on a deb file that does not exist
-- Thomas Schoepf <schoepf@debian.org> Mon, 1 Jan 2001 12:52:04 +0100
less (358-4) unstable; urgency=low
* Closes: Bug#79494: Lesspipe mishandles files with spaces, etc.
I removed the single quotes around %s in the LESSOPEN and LESSCLOSE
environment variables, although is re-actives an old bug (#25706). I still
thinks it's sensible, because with the quotes in place, you cannot view
any files with need-to-escape characters in their names, now you cannot
view only files with '#' as the first character, i.e. you can view them
when you write the path ahead (e.g. 'less ./#file').
Plus, I added a note to lesspipe that should lead people who fell into this
trap door to the right direction.
-- Thomas Schoepf <schoepf@debian.org> Tue, 26 Dec 2000 19:33:25 +0100
less (358-3) unstable; urgency=low
* debian/prerm: call update-alternatives only on removal not on upgrade etc.
* Install a manpage slave for pager.1
-- Thomas Schoepf <schoepf@debian.org> Mon, 7 Aug 2000 13:44:48 +0200
less (358-2) unstable; urgency=low
* Closes: #66990: debhelper should not be in Build-Depends-Indep
* Bumped Standards-Version to 3.2.0
* Switch to debhelper v2.
-- Thomas Schoepf <schoepf@debian.org> Sat, 5 Aug 2000 01:19:27 +0200
less (358-1) unstable; urgency=low
* New upstream version.
-- Thomas Schoepf <schoepf@debian.org> Sat, 15 Jul 2000 20:36:02 +0200
less (357-1) unstable; urgency=low
* New upstream version.
* Closes: #44058: less wordwrap bug
* Closes: #66309: lesspipe can't find imagemagick
-- Thomas Schoepf <schoepf@debian.org> Sun, 9 Jul 2000 00:38:24 +0200
less (354-2) unstable; urgency=low
* Corrected download address in copyright.
-- Thomas Schoepf <schoepf@debian.org> Mon, 29 May 2000 16:49:31 +0200
less (354-1) unstable; urgency=low
* New upstream version.
-- Thomas Schoepf <schoepf@debian.org> Fri, 31 Mar 2000 22:18:28 +0200
less (352-1) unstable; urgency=low
* New upstream version.
* Closes: #57123: lesspipe should display *.lha as well
* Documented the behavior, that bash sources the file referenced by
$BASH_ENV before executing a shell script (Closes: #50024).
-- Thomas Schoepf <schoepf@debian.org> Thu, 9 Mar 2000 11:34:54 +0100
less (346-7) frozen unstable; urgency=low
* Applied a patch that is now blessed by the upstream maintainer.
Closes: #35223: less: can't edit files with spaces in the filename
Closes: #36991: less doesn't quote filesnames when starting the editor
Closes: #53403: less: problem with filenames with spaces
-- Thomas Schoepf <schoepf@debian.org> Fri, 28 Jan 2000 19:53:17 +0100
less (346-6) frozen unstable; urgency=low
* Release Manager: Fixes a not yet reported bug that causes lesspipe to fail
on *.doc files without catdoc installed.
-- Thomas Schoepf <schoepf@debian.org> Thu, 20 Jan 2000 13:32:43 +0100
less (346-5) unstable; urgency=low
* Compiled against new libncurses5. (closes: #53934)
-- Thomas Schoepf <schoepf@debian.org> Mon, 3 Jan 2000 18:47:41 +0100
less (346-4) unstable; urgency=low
* Closes: #53614: Missing build dependencies
-- Thomas Schoepf <schoepf@debian.org> Tue, 28 Dec 1999 18:17:00 +0100
less (346-3) unstable; urgency=low
* Closes: #53303: please include catdoc in lesspipe for MS-Word
-- Thomas Schoepf <schoepf@debian.org> Thu, 23 Dec 1999 19:38:06 +0100
less (346-2) unstable; urgency=low
* Closes: #50201: lesspipe/lessfile: miniunz is now miniunzip
* debian/copyright: less may be distributed under the terms of either
the GPL or the Less License.
-- Thomas Schoepf <schoepf@debian.org> Mon, 15 Nov 1999 01:17:31 +0100
less (346-1) unstable; urgency=low
* New Upstream version.
* Standards-Version: 3.1.0 and Build Dependencies.
-- Thomas Schoepf <schoepf@debian.org> Sat, 6 Nov 1999 13:13:00 +0100
less (345-2) unstable; urgency=low
* debian/rules: Do not use target install-stamp anymore.
* Stop patching main.c now that $VISUAL is blessed by the policy.
-- Thomas Schoepf <schoepf@debian.org> Fri, 5 Nov 1999 21:50:07 +0100
less (345-1) unstable; urgency=low
* New upstream version.
* Closes: #20184: Default keybindings in less should be changed.
* Closes: #32166: Change default character set to latin1
* Closes: #36154, #36155: help screen describes -I option incorrectly
* Closes: #38498: lesskey patch
* Closes: #47535: segfault after typing h:d
-- Thomas Schoepf <schoepf@debian.org> Thu, 4 Nov 1999 22:36:04 +0100
less (340-5) unstable; urgency=low
* Allow user defined lesspipe/lessfile filters via $HOME/.lessfilter.
(closes: #46210)
-- Thomas Schoepf <schoepf@debian.org> Sat, 2 Oct 1999 13:31:19 +0200
less (340-4) unstable; urgency=low
* Added description of lesspipe's behavior on empty gzipped files to its
manpage. (closes: #24375)
-- Thomas Schoepf <schoepf@debian.org> Fri, 17 Sep 1999 00:26:41 +0200
less (340-3) unstable; urgency=low
* No longer use hard-coded paths for non-standard utilities in lesspipe.
(closes: #31012)
* No longer leave empty temporary files on the system when less is called on
non-existing files and LESSOPEN is set to "lessfile '%s'".
* Mime: text/* priority=2.
-- Thomas Schoepf <schoepf@debian.org> Fri, 10 Sep 1999 20:15:23 +0200
less (340-2) unstable; urgency=low
* Repackaged using debhelper.
* License is GPL.
* debian/control: Standards-Version: 3.0.1.
* Added mime support. (closes: #25891)
* Wrote manpages for lessecho and lesspipe. (closes: #15961)
* lessfile.1.gz is a symlink to lesspipe.1.gz.
* Modified lesspipe to use /bin/sh. (closes: #19049)
-- Thomas Schoepf <schoepf@debian.org> Thu, 9 Sep 1999 01:00:50 +0200
less (340-1) unstable; urgency=low
* New maintainer (Thanks Darren!).
* New upstream version. (closes: #38297, #39756)
* Added support for .tar.bz2 to lessopen. (closes: #32538)
* Added support for .jar to lessopen. (closes: #43388)
* Added support for miniunz to lessopen. (closes: #41294)
-- Thomas Schoepf <schoepf@debian.org> Tue, 7 Sep 1999 12:36:03 +0200
less (332-4.1) frozen unstable; urgency=low
* Non-maintainer upload
* Compiled with ncurses4
-- Joseph Carter <knghtbrd@debian.org> Sun, 1 Nov 1998 03:30:54 -0800
less (332-4) unstable frozen; urgency=low
* Actually fix arj entry. I'm not sure how the fix got reverted to the
old entry.
* Put '' around [:upper:] and [:lower:] in tr call to protect them from
the shell. Thanks to Alexey Marinichev <lyosha@math.uu.se>. (Fixes
Bug #22311)
* I wasn't paying attention and thought that tempfile just gave me a
filename rather than creating a file. This of course doesn't work.
Now we only create the file when we need to. Thanks to Roberto
Lumbreras <rover@lander.es> for pointing this out. (Fixes Bug #22320)
* Updated standards version to 2.4.1.0. Our one non-compliance was
insecure tempfiles.
-- Darren Stalder <torin@daft.com> Tue, 12 May 1998 02:19:45 -0700
less (332-3) unstable frozen; urgency=low
* Modified rules so that you no longer have to be root to build the
package. (Fixes Bug #15454)
* Made lessopen tmp-secure (depend on debianutils >= 1.8 for tempfile).
(Fixes Bugs #19796, #15463)
* Made the filename canonically lowercase for matching in lessopen.
* Added directories, .bz, .bz2, .rpm entries to lessopen. (Fixes Bugs
$14200, #17486)
* Fixed arj entry to use the correct options. (I didn't have any .arj
handy.) (Fixes Bugs #17114, #17520)
* Linked lesspipe.1.gz/lessfile.1.gz to undocumented.7.gz until I have
time to write a real manpage. (Works on Bug #15961)
-- Darren Stalder <torin@daft.com> Sun, 19 Apr 1998 23:54:53 -0700
less (332-2) unstable; urgency=low
* Quote the arguments to lesspipe so that it can handle filenames with
special characters such as '#'. Suggestion from Richard Braakman.
Thanks, Richard! (Bug #11859)
* Recompile with libc6. (Bug #11695)
* Use update-alternatives to register less(1) as /usr/bin/pager at level
77. (Bug #12474)
* Told less(1) to use /usr/bin/editor if the envar EDITOR isn't set.
Changed defines.h.in to not redefine EDIT_PGM and removed checking the
VISUAL envar for the program to use.
* Register bug on less since it should depend on -something- installing
/usr/bin/editor but nothing I've seen does yet.
-- Darren Stalder <torin@daft.com> Tue, 23 Sep 1997 01:23:28 -0700
less (332-1) unstable; urgency=low
* Upstream upgrade. This fixes bug #5483, #6492, and #9408.
* Removed changing the editor to ae. This closes bug #8036 and makes me
quite happy.
* Changed rules file to only ask for a password during clean if it needs
it.
* Included a LESSOPEN script. See /usr/doc/less/LESSOPEN for details.
This closes #3952 and #8111.
* Applied patch to screen.c from Herbert Thielen so that less properly
sets raw mode if stderr is redirected to /dev/null. This closes
#5512.
* NEWS is now installed as /usr/doc/less/changelog, mode 0644. This
closes #7835 and 7837.
* README is no longer included in the binary package since it's just
directions on how to install less. This closes #7836.
-- Darren Stalder <torin@daft.com> Wed, 18 Jun 1997 23:21:27 -0700
less (321-2) unstable; urgency=low
* Updated to dpkg standards version 2.1.1.2, changed the rules file to
the format that I'm used to. This fixes #3336.
* Convinced less to use ae as the default editor. I can't stand it but
it's guaranteed to be on every debian system. Changed defines.h.in so
that I don't get lots of redefine errors.
* Reformatted the Description in the control file to clear #3616
* It seems that the upstream release fixed the annoying 0 length bug.
This closes #4178, #4586, #4762, #6214, #6612
-- Darren Stalder <torin@daft.com> Sun, 2 Feb 1997 20:10:05 -0800
Tue Jul 23 13:52:10 1996 Erick Branderhorst <branderh@debian.org>
* mainstream update less 321.
* modified debian.control & debian.rules for version, architecture
* make install prefix instead of debian.rules specific install
1. Added debian.* files
The following changes are from Bill Mitchell:
Changes for less-290-8
elf package
* rebuilt using ncurses shared lib
* changed ncurses-runtime dependency to ncurses3.0
Changes for less-290-7
elf package
* added bugfix in #ifdef LINUX code in ch.c
Changes for less-290-6
elf package
* rebuilt for elf
Changes for less-290-5
aout package
* use alternative patch from Raul Miller to handle /proc files
Changes for less-290-4
aout package
* hacked filename.c with a workaround for a kernel bug
for files in /proc,
stat(filename) returns st_size set to 0
lseek(fd, (off_t) 0, 2) returns 0
this hack determines filesize by reading thru the file byte by byte
this doesn't address lseeek() being broken, and less(1) will
probably still misbehave if any /proc files are big enough
to make it want to use lseek()
Changes for less-290-3
1. Added #ifdef DEBIAN block in screen.c to abort on unknown
terminal types instead of attempting to continue (due to
an apparent libtermcap.a bug which segfaults on tgetflag("hc")
for unknown terminal types).
2. Added -DDEBAIN to cflags in debian.rules.
3. Added build as a dependency to binary: target in debian.rules.
4. Modified ./configure invocation handling in debian.rules.
Changes for less-290-2
1. Cleaned up description and extended description on debian.control.
** Local Variables: **
** mode:debian-changelog **
** change-log-default-name:"changelog" **
** fill-prefix:" " **
** End: **
|