auto-import changelog data from coreutils-5.2.1-7.src.rpm
Tue May 04 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-7 - Fix join -t (bug #122435). Tue Apr 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-6 - Fix 'ls -Z' displaying users/groups if stat() failed (bug #121292). Fri Apr 09 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-5 - Add ls -LZ fix - Fix chcon to handle "." Wed Mar 17 2004 Tim Waugh <twaugh@redhat.com> - Apply upstream fix for non-zero seconds for --date="10:00 +0100".
This commit is contained in:
parent
5adf0da3ed
commit
4d15f3c577
@ -3424,7 +3424,7 @@
|
||||
char *sep;
|
||||
for (; (sep = memchr (ptr, t, lim - ptr)) != NULL; ptr = sep + 1)
|
||||
extract_field (line, ptr, sep - ptr);
|
||||
@@ -262,6 +281,147 @@
|
||||
@@ -262,6 +281,148 @@
|
||||
extract_field (line, ptr, lim - ptr);
|
||||
}
|
||||
|
||||
@ -3449,6 +3449,7 @@
|
||||
+ char *sep = ptr;
|
||||
+ for (; ptr < lim; ptr = sep + 1)
|
||||
+ {
|
||||
+ sep = ptr;
|
||||
+ while (sep < lim)
|
||||
+ {
|
||||
+ state_bak = state;
|
||||
@ -3572,7 +3573,7 @@
|
||||
/* Read a line from FP into LINE and split it into fields.
|
||||
Return true if successful. */
|
||||
|
||||
@@ -282,6 +442,11 @@
|
||||
@@ -282,6 +443,11 @@
|
||||
line->nfields_allocated = 0;
|
||||
line->nfields = 0;
|
||||
line->fields = NULL;
|
||||
@ -3584,7 +3585,7 @@
|
||||
xfields (line);
|
||||
return true;
|
||||
}
|
||||
@@ -336,56 +501,116 @@
|
||||
@@ -336,56 +502,116 @@
|
||||
keycmp (struct line const *line1, struct line const *line2)
|
||||
{
|
||||
/* Start of field to compare in each file. */
|
||||
@ -3724,7 +3725,7 @@
|
||||
}
|
||||
|
||||
/* Print field N of LINE if it exists and is nonempty, otherwise
|
||||
@@ -410,11 +635,18 @@
|
||||
@@ -410,11 +636,18 @@
|
||||
|
||||
/* Print the join of LINE1 and LINE2. */
|
||||
|
||||
@ -3744,7 +3745,7 @@
|
||||
|
||||
outlist = outlist_head.next;
|
||||
if (outlist)
|
||||
@@ -430,12 +662,12 @@
|
||||
@@ -430,12 +663,12 @@
|
||||
if (o->file == 0)
|
||||
{
|
||||
if (line1 == &uni_blank)
|
||||
@ -3759,7 +3760,7 @@
|
||||
line = line1;
|
||||
field = join_field_1;
|
||||
}
|
||||
@@ -449,7 +681,7 @@
|
||||
@@ -449,7 +682,7 @@
|
||||
o = o->next;
|
||||
if (o == NULL)
|
||||
break;
|
||||
@ -3768,7 +3769,7 @@
|
||||
}
|
||||
putchar ('\n');
|
||||
}
|
||||
@@ -467,23 +699,23 @@
|
||||
@@ -467,23 +700,23 @@
|
||||
prfield (join_field_1, line1);
|
||||
for (i = 0; i < join_field_1 && i < line1->nfields; ++i)
|
||||
{
|
||||
@ -3796,7 +3797,7 @@
|
||||
prfield (i, line2);
|
||||
}
|
||||
putchar ('\n');
|
||||
@@ -678,7 +910,7 @@
|
||||
@@ -678,7 +911,7 @@
|
||||
valid = true;
|
||||
}
|
||||
else
|
||||
@ -3805,7 +3806,7 @@
|
||||
/* `0' must be all alone -- no `.FIELD'. */
|
||||
error (0, 0, _("invalid field specifier: `%s'"), s);
|
||||
}
|
||||
@@ -817,7 +1049,23 @@
|
||||
@@ -817,7 +1050,23 @@
|
||||
break;
|
||||
|
||||
case 't':
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@
|
||||
Summary: The GNU core utilities: a set of tools commonly used in shell scripts
|
||||
Name: coreutils
|
||||
Version: 5.2.1
|
||||
Release: 3
|
||||
Release: 7
|
||||
License: GPL
|
||||
Group: System Environment/Base
|
||||
Url: ftp://alpha.gnu.org/gnu/coreutils/
|
||||
@ -43,10 +43,12 @@ Patch800: coreutils-i18n.patch
|
||||
|
||||
Patch904: coreutils-5.0-allow_old_options.patch
|
||||
|
||||
# From upstream
|
||||
Patch920: coreutils-dateseconds.patch
|
||||
|
||||
#SELINUX Patch
|
||||
%if %{WITH_SELINUX}
|
||||
Patch950: coreutils-selinux.patch
|
||||
Patch951: coreutils-ls-stat.patch
|
||||
%endif
|
||||
|
||||
BuildRoot: %_tmppath/%{name}-root
|
||||
@ -95,10 +97,12 @@ the old GNU fileutils, sh-utils, and textutils packages.
|
||||
# Coreutils
|
||||
%patch904 -p1 -b .allow_old_options
|
||||
|
||||
# From upstream
|
||||
%patch920 -p1 -b .dateseconds
|
||||
|
||||
%if %{WITH_SELINUX}
|
||||
#SELinux
|
||||
%patch950 -p1 -b .selinux
|
||||
%patch951 -p1 -b .ls-stat
|
||||
%endif
|
||||
|
||||
|
||||
@ -225,6 +229,19 @@ fi
|
||||
%_sbindir/chroot
|
||||
|
||||
%changelog
|
||||
* Tue May 4 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-7
|
||||
- Fix join -t (bug #122435).
|
||||
|
||||
* Tue Apr 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-6
|
||||
- Fix 'ls -Z' displaying users/groups if stat() failed (bug #121292).
|
||||
|
||||
* Fri Apr 9 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-5
|
||||
- Add ls -LZ fix
|
||||
- Fix chcon to handle "."
|
||||
|
||||
* Wed Mar 17 2004 Tim Waugh <twaugh@redhat.com>
|
||||
- Apply upstream fix for non-zero seconds for --date="10:00 +0100".
|
||||
|
||||
* Tue Mar 16 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-3
|
||||
- If preserve fails, report as warning unless user requires preserve
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user