- Backport a patch to ignore LS_COLOR codes introduced in newer coreutils

(#186037)
This commit is contained in:
Miloslav Trmac 2006-03-23 02:09:08 +00:00
parent 5533df3a65
commit bed8c67a16
2 changed files with 21 additions and 1 deletions

14
tcsh-6.14.00-colors.patch Normal file
View File

@ -0,0 +1,14 @@
--- tcsh-6.14.00/tw.color.c.colors 2006-03-23 02:59:40.000000000 +0100
+++ tcsh-6.14.00/tw.color.c 2006-03-23 03:00:44.000000000 +0100
@@ -80,6 +80,11 @@
#endif
VAR(NOS, "rc", "m"), /* Right code */
VAR(NOS, "ec", ""), /* End code (replaces lc+no+rc) */
+ VAR(NOS, "su", ""), /* Setuid file (u+s) */
+ VAR(NOS, "sg", ""), /* Setgid file (g+s) */
+ VAR(NOS, "tw", ""), /* Sticky and other writable dir (+t,o+w) */
+ VAR(NOS, "ow", ""), /* Other writable dir (o+w) but not sticky */
+ VAR(NOS, "st", ""), /* Sticky dir (+t) but not other writable */
};
enum FileType {

View File

@ -3,7 +3,7 @@
Summary: An enhanced version of csh, the C shell. Summary: An enhanced version of csh, the C shell.
Name: tcsh Name: tcsh
Version: 6.14 Version: 6.14
Release: 7 Release: 8
License: distributable License: distributable
Group: System Environment/Shells Group: System Environment/Shells
Source: ftp://ftp.astron.com/pub/tcsh/tcsh-%{version}.00.tar.gz Source: ftp://ftp.astron.com/pub/tcsh/tcsh-%{version}.00.tar.gz
@ -15,6 +15,7 @@ Patch4: tcsh-6.14.00-dashn.patch
Patch5: tcsh-6.14.00-read.patch Patch5: tcsh-6.14.00-read.patch
Patch6: tcsh-6.14.00-sigint.patch Patch6: tcsh-6.14.00-sigint.patch
Patch7: tcsh-6.14.00-wide-crash.patch Patch7: tcsh-6.14.00-wide-crash.patch
Patch8: tcsh-6.14.00-colors.patch
Provides: csh = %{version} Provides: csh = %{version}
Prereq: fileutils, grep Prereq: fileutils, grep
URL: http://www.tcsh.org/ URL: http://www.tcsh.org/
@ -39,6 +40,7 @@ like syntax.
%patch5 -p1 -b .read %patch5 -p1 -b .read
%patch6 -p1 -b .sigint %patch6 -p1 -b .sigint
%patch7 -p1 -b .wide-crash %patch7 -p1 -b .wide-crash
%patch8 -p1 -b .colors
nroff -me eight-bit.me > eight-bit.txt nroff -me eight-bit.me > eight-bit.txt
@ -106,6 +108,10 @@ fi
%{_mandir}/*/* %{_mandir}/*/*
%changelog %changelog
* Thu Mar 23 2006 Miloslav Trmac <mitr@redhat.com> - 6.14-8
- Backport a patch to ignore LS_COLOR codes introduced in newer coreutils
(#186037)
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 6.14-7 * Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 6.14-7
- Fix a crash when reading scripts with multibyte characters (#183267) - Fix a crash when reading scripts with multibyte characters (#183267)
- Block SIGINT while waiting for children (#177366) - Block SIGINT while waiting for children (#177366)