source: projects/specs/branches/6/c/coreutils/coreutils-vl.spec @ 3252

Revision 3252, 25.1 KB checked in by daisuke, 13 years ago (diff)

coreutils:

  • update ja.po
  • add BR: libcap-devel, gmp-devel, libattr-devel, libacl-devel
Line 
1Summary: The GNU core utilities: a set of tools commonly used in shell scripts
2Summary(ja): GNU コアユーティリティ: シェルスクリプトで用いるツール集
3Name:    coreutils
4Version: 8.10
5Release: 2%{?_dist_release}
6License: GPL
7Group:   System Environment/Base
8Url:     http://www.gnu.org/software/coreutils/
9
10Source0: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
11Source101:  coreutils-DIR_COLORS
12Source102:  coreutils-DIR_COLORS.xterm
13Source103:  coreutils-DIR_COLORS.256color
14Source105:  coreutils-colorls.sh
15Source106:  coreutils-colorls.csh
16Source200:  coreutils-su.pamd
17Source201:  coreutils-runuser.pamd
18Source202:  coreutils-su-l.pamd
19Source203:  coreutils-runuser-l.pamd
20
21# Vine sources
22Source1000: coreutils-8.10-ja.po
23
24# From upstream
25
26# Fedora patches
27#general patch to workaround koji build system issues
28Patch100: coreutils-6.10-configuration.patch
29#add note about no difference between binary/text mode on Linux - md5sum manpage
30Patch101: coreutils-6.10-manpages.patch
31#temporarily workaround probable kernel issue with TCSADRAIN(#504798)
32Patch102: coreutils-7.4-sttytcsadrain.patch
33#do display processor type for uname -p/-i based on uname(2) syscall
34Patch103: coreutils-8.2-uname-processortype.patch
35#df --direct
36Patch104: coreutils-df-direct.patch
37#add jar-like archives to colored ones
38Patch106: coreutils-8.5-dircolors.patch
39
40# sh-utils
41#Patch703: sh-utils-2.0.11-dateman.patch
42Patch704: sh-utils-1.16-paths.patch
43# RMS will never accept the PAM patch because it removes his historical
44# rant about Twenex and the wheel group, so we'll continue to maintain
45# it here indefinitely.
46Patch706: coreutils-8.5-pam.patch
47Patch713: coreutils-4.5.3-langinfo.patch
48
49# (sb) lin18nux/lsb compliance
50Patch800: coreutils-8.10-i18n.patch
51
52#Call setsid() in su under some circumstances (bug #173008).
53Patch900: coreutils-setsid.patch
54#make runuser binary based on su.c
55Patch907: coreutils-8.7-runuser.patch
56#getgrouplist() patch from Ulrich Drepper.
57Patch908: coreutils-getgrouplist.patch
58#Prevent buffer overflow in who(1) (bug #158405).
59Patch912: coreutils-overflow.patch
60#compile su with pie flag and RELRO protection
61Patch917: coreutils-8.4-su-pie.patch
62
63BuildRoot: %{_tmppath}/%{name}-%{version}-root
64BuildRequires:  gettext libtermcap-devel bison
65%{?!nopam:BuildRequires: pam-devel}
66BuildRequires: texinfo >= 4.3
67BuildRequires: autoconf >= 2.58, automake >= 1.10
68%{?!nopam:Requires: pam >= 0.66-12}
69BuildRequires: libcap-devel
70BuildRequires: libattr-devel
71BuildRequires: libacl-devel
72BuildRequires: gmp-devel
73
74Requires(pre):         install-info
75Requires(preun):      install-info
76Requires(post):        install-info, grep, findutils
77
78# Require a C library that doesn't put LC_TIME files in our way.
79Conflicts: glibc < 2.2
80
81Provides:       fileutils = %version, sh-utils = %version, stat, textutils = %version
82Obsoletes:      fileutils sh-utils stat textutils
83Provides:       mktemp = %version
84Obsoletes:      mktemp
85
86%description
87These are the GNU core utilities.  This package is the combination of
88the old GNU fileutils, sh-utils, and textutils packages.
89
90%description -l ja
91このパッケージには GNU のコアユーティリティが収録されています。
92コアユーティリティ(coreutilsパッケージ)は従来の fileutils,
93sh-utils, textutils を統合したパッケージです。
94
95
96%prep
97%setup -q
98
99# From upstream
100
101
102# Fedora patches
103%patch100 -p1 -b .chgrp
104%patch101 -p1 -b .manpages
105%patch102 -p1 -b .tcsadrain
106%patch103 -p1 -b .sysinfo
107%patch104 -p1 -b .dfdirect
108%patch106 -p1 -b .java
109
110# sh-utils
111#%patch703 -p1 -b .dateman
112%patch704 -p1 -b .paths
113%patch706 -p1 -b .pam
114%patch713 -p1 -b .langinfo
115
116# li18nux/lsb
117%patch800 -p1 -b .i18n
118
119# Coreutils
120%patch900 -p1 -b .setsid
121%patch907 -p1 -b .runuser
122%patch908 -p1 -b .getgrouplist
123%patch912 -p1 -b .overflow
124%patch917 -p1 -b .pie
125
126# copy updated ja.po
127mv po/ja.po po/ja.po.orig
128cp -f %{SOURCE1000} po/ja.po
129
130%build
131export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fpic"
132%{expand:%%global optflags %{optflags} -D_GNU_SOURCE=1}
133touch aclocal.m4 configure config.hin Makefile.in */Makefile.in
134aclocal -I m4
135autoconf --force
136automake --copy --force --add-missing
137%configure --enable-largefile --with-afs %{?!nopam:--enable-pam} \
138           --enable-install-program=su,hostname,arch \
139           --with-tty-group \
140           DEFAULT_POSIX2_VERSION=200112 alternative=199209 || :
141
142touch man/*.x
143
144%__make all %{?_smp_mflags} \
145        %{?!nopam:CPPFLAGS="-DUSE_PAM"} \
146        su_LDFLAGS="-pie %{?!nopam:-lpam -lpam_misc}"
147
148%__make -C po update-gmo
149
150[[ -f ChangeLog && -f ChangeLog.bz2  ]] || bzip2 -9f ChangeLog
151
152# XXX docs should say /var/run/[uw]tmp not /etc/[uw]tmp
153perl -pi -e 's,/etc/utmp,/var/run/utmp,g;s,/etc/wtmp,/var/run/wtmp,g' doc/coreutils.texi
154
155
156%install
157rm -rf $RPM_BUILD_ROOT
158%makeinstall
159
160# man pages are not installed with make install
161%__make mandir=$RPM_BUILD_ROOT%{_mandir} install-man
162
163# fix japanese catalog file
164if [ -d $RPM_BUILD_ROOT/%{_datadir}/locale/ja_JP.EUC/LC_MESSAGES ]; then
165   mkdir -p $RPM_BUILD_ROOT/%{_datadir}/locale/ja/LC_MESSAGES
166   mv $RPM_BUILD_ROOT/%{_datadir}/locale/ja_JP.EUC/LC_MESSAGES/*mo \
167                $RPM_BUILD_ROOT/%{_datadir}/locale/ja/LC_MESSAGES
168   rm -rf $RPM_BUILD_ROOT/%{_datadir}/locale/ja_JP.EUC
169fi
170
171# let be compatible with old fileutils, sh-utils and textutils packages :
172mkdir -p $RPM_BUILD_ROOT{/bin,%_bindir,%_sbindir,/sbin}
173%{?!nopam:mkdir -p $RPM_BUILD_ROOT%_sysconfdir/pam.d}
174for f in basename cat chgrp chmod chown cp cut date dd df echo env false \
175         link ln ls mkdir mknod mktemp mv nice pwd rm rmdir sleep sort \
176         stty sync touch true uname unlink
177do
178        mv $RPM_BUILD_ROOT/{%_bindir,bin}/$f
179done
180
181# chroot was in /usr/sbin :
182mv $RPM_BUILD_ROOT/{%_bindir,%_sbindir}/chroot
183# {cat,sort,cut} were previously moved from bin to /usr/bin and linked into
184for i in env cut; do ln -sf ../../bin/$i $RPM_BUILD_ROOT/usr/bin; done
185
186mkdir -p $RPM_BUILD_ROOT/etc/profile.d
187install -p -c -m644 %SOURCE101 $RPM_BUILD_ROOT%{_sysconfdir}/DIR_COLORS
188install -p -c -m644 %SOURCE102 $RPM_BUILD_ROOT%{_sysconfdir}/DIR_COLORS.lightbgcolor
189install -p -c -m644 %SOURCE103 $RPM_BUILD_ROOT%{_sysconfdir}/DIR_COLORS.256color
190install -p -c -m644 %SOURCE105 $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/colorls.sh
191install -p -c -m644 %SOURCE106 $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/colorls.csh
192
193# su
194install -m 4755 src/su $RPM_BUILD_ROOT/bin
195install -m 755 src/runuser $RPM_BUILD_ROOT/sbin
196
197# These come from util-linux and/or procps.
198for i in hostname uptime kill ; do
199        rm -f $RPM_BUILD_ROOT{%_bindir/$i,%_mandir/man1/$i.1}
200done
201
202%{?!nopam:install -p -m 644 %SOURCE200 $RPM_BUILD_ROOT%_sysconfdir/pam.d/su}
203%{?!nopam:install -p -m 644 %SOURCE202 $RPM_BUILD_ROOT%_sysconfdir/pam.d/su-l}
204%{?!nopam:install -p -m 644 %SOURCE201 $RPM_BUILD_ROOT%_sysconfdir/pam.d/runuser}
205%{?!nopam:install -p -m 644 %SOURCE203 $RPM_BUILD_ROOT%_sysconfdir/pam.d/runuser-l}
206
207bzip2 -f9 old/*/C* || :
208
209%find_lang %name
210
211# (sb) Deal with Installed (but unpackaged) file(s) found
212rm -f $RPM_BUILD_ROOT%{_datadir}/info/dir
213
214# FIXME: remove readlink which conflict with tetex's.
215#rm -f $RPM_BUILD_ROOT%{_bindir}/readlink
216#rm -f $RPM_BUILD_ROOT%{_mandir}/man1/readlink*
217
218
219%clean
220rm -rf $RPM_BUILD_ROOT
221
222%pre
223# Remove these old glibc files on upgrade (bug #84090).
224for file in $(find /usr/share/locale -type f -name LC_TIME); do
225        [ -x /bin/rm ] && /bin/rm -f "$file"
226done
227
228# We must desinstall theses info files since they're merged in
229# coreutils.info. else their postun'll be runned too last
230# and install-info'll faill badly because of doubles
231for file in sh-utils.info textutils.info fileutils.info; do
232        if [ -f /usr/share/info/$file.bz2 ]; then
233                /sbin/install-info /usr/share/info/$file.bz2 --dir=/usr/share/info/dir --remove &> /dev/null
234        fi
235done
236
237%preun
238if [ $1 = 0 ]; then
239    [ -f %{_infodir}/%{name}.info.gz ] && \
240      /sbin/install-info --delete %{_infodir}/%{name}.info.gz \
241        %{_infodir}/dir || :
242fi
243
244%post
245/bin/grep -v '(sh-utils)\|(fileutils)\|(textutils)' %{_infodir}/dir > \
246  %{_infodir}/dir.rpmmodify || exit 0
247    /bin/mv -f %{_infodir}/dir.rpmmodify %{_infodir}/dir
248[ -f %{_infodir}/%{name}.info.gz ] && \
249  /sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || :
250
251%files -f %{name}.lang
252%defattr(-,root,root)
253%config(noreplace) %{_sysconfdir}/DIR_COLORS*
254%config(noreplace) %{_sysconfdir}/profile.d/*
255%{?!nopam:%config(noreplace) %{_sysconfdir}/pam.d/su}
256%{?!nopam:%config(noreplace) %{_sysconfdir}/pam.d/su-l}
257%{?!nopam:%config(noreplace) %{_sysconfdir}/pam.d/runuser}
258%{?!nopam:%config(noreplace) %{_sysconfdir}/pam.d/runuser-l}
259%doc COPYING ABOUT-NLS ChangeLog.bz2 NEWS README THANKS TODO old/*
260/bin/*
261%{_bindir}/*
262%{_libdir}/coreutils
263%{_infodir}/coreutils*
264%{_mandir}/man*/*
265%{_sbindir}/chroot
266/sbin/runuser
267
268%changelog
269* Sat Apr 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.10-2
270- update ja.po
271- add BR: libcap-devel, gmp-devel, libattr-devel, libacl-devel
272
273* Sat Feb 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.10-1
274- update to 8.10
275
276* Mon Sep 29 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 6.11-2
277- rebuilt against curent toolchain
278- spec in UTF-8
279
280* Wed Apr 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 6.11-1
281- new upstream release
282- drop obsolete patches
283- import some patched from fedora-devel
284- add Obsoletes/Provides mktemp
285
286* Tue Jun 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 5.96-0vl1
287- new upstream release
288
289* Mon May 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 5.95-0vl1
290- new upstream release
291
292* Thu May 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 5.94-0vl1
293- new upstream release
294- drop opsolete patches
295- import some patches from FC
296
297* Sun Nov 13 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.2.1-40vl5
298- now readlink is kept as it is, since tetex-3.0 don't have readlink.
299
300* Sat Sep 17 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.2.1-40vl4
301- updated ja.po
302
303* Sat Feb 12 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 5.2.1-40vl3
304- remove selinux related pam-module from /etc/pam.d/su
305
306* Fri Feb 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 5.2.1-40vl2
307- update ja.po
308
309* Thu Feb 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 5.2.1-40vl1
310- initial build for Vine Linux
311  - some modifications are merged from fileutils-4.1-10.1vl4
312- disable make check
313
314* Sat Feb  5 2005 Tim Waugh <twaugh@redhat.com> 5.2.1-40
315- Undo last change (bug #145266).
316
317* Fri Feb  4 2005 Tim Waugh <twaugh@redhat.com> 5.2.1-38
318- Special case for ia32e in uname (bug #145266).
319
320* Thu Jan 13 2005 Tim Waugh <twaugh@redhat.com> 5.2.1-37
321- Fixed zh_CN translation (bug #144845).  Patch from Mitrophan Chin.
322
323* Mon Dec 28 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-36
324- Fix to only setdefaultfilecon if not overridden by command line
325
326* Mon Dec 27 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-35
327- Change install to restorecon if it can
328
329* Wed Dec 15 2004 Tim Waugh <twaugh@redhat.com>
330- Fixed small bug in i18n patch.
331
332* Mon Dec  6 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-34
333- Don't set fs uid until after pam_open_session (bug #77791).
334
335* Thu Nov 25 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-33
336- Fixed colorls.csh (bug #139988).  Patch from Miloslav Trmac.
337
338* Mon Nov  8 2004 Tim Waugh <twaugh@redhat.com>
339- Updated URL (bug #138279).
340
341* Mon Oct 25 2004 Steve Grubb <sgrubb@redhat.com> 5.2.1-32
342- Handle the return code of function calls in runcon.
343
344* Mon Oct 18 2004 Tim Waugh <twaugh@redhat.com>
345- Prevent compiler warning in coreutils-i18n.patch (bug #136090).
346
347* Tue Oct  5 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-31
348- getgrouplist() patch from Ulrich Drepper.
349- The selinux patch should be applied last.
350
351* Mon Oct  4 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-30
352- Mv runuser to /sbin
353
354* Mon Oct  4 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-28
355- Fix runuser man page.
356
357* Mon Oct  4 2004 Tim Waugh <twaugh@redhat.com>
358- Fixed build.
359
360* Fri Sep 24 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-26
361- Add runuser as similar to su, but only runable by root
362
363* Fri Sep 24 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-25
364- chown(1) patch from Ulrich Drepper.
365
366* Tue Sep 14 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-24
367- SELinux patch fix: don't display '(null)' if getfilecon() fails
368  (bug #131196).
369
370* Fri Aug 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-23
371- Fixed colorls.csh quoting (bug #102412).
372- Fixed another join LSB test failure (bug #121153).
373
374* Mon Aug 16 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-22
375- Fixed sort -t LSB test failure (bug #121154).
376- Fixed join LSB test failure (bug #121153).
377
378* Wed Aug 11 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-21
379- Apply upstream patch to fix 'cp -a' onto multiply-linked files (bug #128874).
380- SELinux patch fix: don't error out if lgetfilecon() returns ENODATA.
381
382* Tue Aug 10 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-20
383- Added 'konsole' TERM to DIR_COLORS (bug #129544).
384
385* Wed Aug  4 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-19
386- Added 'gnome' TERM to DIR_COLORS (bug #129112).
387- Worked around a bash bug #129128.
388- Fixed an i18n patch bug in cut (bug #129114).
389
390* Tue Aug  3 2004 Tim Waugh <twaugh@redhat.com>
391- Fixed colorls.{sh,csh} so that the l. and ll aliases are always defined
392  (bug #128948).
393
394* Tue Jul 13 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-18
395- Fixed field extraction in sort (bug #127694).
396
397* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com>
398- Added 'TERM screen.linux' to DIR_COLORS (bug #78816).
399
400* Wed Jun 23 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-17
401- Move pam-xauth to after pam-selinux
402
403* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
404- rebuilt
405
406* Mon Jun  7 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-15
407- Fix ls -Z (bug #125447).
408
409* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com>
410- Build requires bison (bug #125290).
411
412* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-14
413- Fix selinux patch causing problems with ls --format=... (bug #125238).
414
415* Thu Jun 3 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-13
416- Change su to use pam_selinux open and pam_selinux close
417
418* Wed Jun  2 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-12
419- Don't call access() on symlinks about to be removed (bug #124699).
420
421* Wed Jun  2 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-11
422- Fix ja translation (bug #124862).
423
424* Tue May 18 2004 Jeremy Katz <katzj@redhat.com> 5.2.1-10
425- rebuild
426
427* Mon May 17 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-9
428- Mention pam in the info for su (bug #122592).
429- Remove wheel group rant again (bug #122886).
430- Change default behaviour for chgrp/chown (bug #123263).  Patch from
431  upstream.
432
433* Mon May 17 2004 Thomas Woerner <twoerner@redhat.com> 5.2.1-8
434- compiling su PIE
435
436* Wed May 12 2004 Tim Waugh <twaugh@redhat.com>
437- Build requires new versions of autoconf and automake (bug #123098).
438
439* Tue May  4 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-7
440- Fix join -t (bug #122435).
441
442* Tue Apr 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-6
443- Fix 'ls -Z' displaying users/groups if stat() failed (bug #121292).
444
445* Fri Apr 9 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-5
446- Add ls -LZ fix
447- Fix chcon to handle "."
448
449* Wed Mar 17 2004 Tim Waugh <twaugh@redhat.com>
450- Apply upstream fix for non-zero seconds for --date="10:00 +0100".
451
452* Tue Mar 16 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-3
453- If preserve fails, report as warning unless user requires preserve
454
455* Tue Mar 16 2004 Dan Walsh <dwalsh@redhat.com> 5.2.1-2
456- Make mv default to preserve on context
457
458* Sat Mar 13 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-1
459- 5.2.1.
460
461* Fri Mar 12 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-9
462- Add '-Z' to 'ls --help' output (bug #118108).
463
464* Fri Mar  5 2004 Tim Waugh <twaugh@redhat.com>
465- Fix deref-args test case for rebuilding under SELinux (bug #117556).
466
467* Wed Feb 25 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-8
468- kill(1) offloaded to util-linux altogether.
469
470* Tue Feb 24 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-7
471- Ship the real '[', not a symlink.
472
473* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-6
474- Apply Paul Eggert's chown patch (bug #116536).
475- Merged chdir patch into pam patch where it belongs.
476
477* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-5
478- Fixed i18n patch bug causing sort -M not to work (bug #116575).
479
480* Sat Feb 21 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-4
481- Reinstate kill binary, just not its man page (bug #116463).
482
483* Sat Feb 21 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-3
484- Updated ls-stat patch.
485
486* Fri Feb 20 2004 Dan Walsh <dwalsh@redhat.com> 5.2.0-2
487- fix chcon to ignore . and .. directories for recursing
488
489* Fri Feb 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.0-1
490- Patch ls so that failed stat() is handled gracefully (Ulrich Drepper).
491- 5.2.0.
492
493* Thu Feb 19 2004 Tim Waugh <twaugh@redhat.com>
494- More AFS patch tidying.
495
496* Wed Feb 18 2004 Dan Walsh <dwalsh@redhat.com> 5.1.3-0.2
497- fix chcon to handle -h qualifier properly, eliminate potential crash
498
499* Wed Feb 18 2004 Tim Waugh <twaugh@redhat.com>
500- Stop 'sort -g' leaking memory (i18n patch bug #115620).
501- Don't ship kill, since util-linux already does.
502- Tidy AFS patch.
503
504* Mon Feb 16 2004 Tim Waugh <twaugh@redhat.com> 5.1.3-0.1
505- 5.1.3.
506- Patches ported forward or removed.
507
508* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 5.0-40
509- rebuilt
510
511* Tue Jan  20 2004 Dan Walsh <dwalsh@redhat.com> 5.0-39
512- Change /etc/pam.d/su to remove preservuser and add multiple
513
514* Tue Jan  20 2004 Dan Walsh <dwalsh@redhat.com> 5.0-38
515- Change is_selinux_enabled to is_selinux_enabled > 0
516
517* Tue Jan  20 2004 Dan Walsh <dwalsh@redhat.com> 5.0-37
518- Add pam_selinux to pam file to allow switching of roles within selinux
519
520* Fri Jan 16 2004 Tim Waugh <twaugh@redhat.com>
521- The textutils-2.0.17-mem.patch is no longer needed.
522
523* Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 5.0-36
524- Fixed autoconf test causing builds to fail.
525
526* Tue Dec  9 2003 Dan Walsh <dwalsh@redhat.com> 5.0-35
527- Fix copying to non xattr files
528
529* Thu Dec  4 2003 Tim Waugh <twaugh@redhat.com> 5.0-34.sel
530- Fix column widths problems in ls.
531
532* Tue Dec  2 2003 Tim Waugh <twaugh@redhat.com> 5.0-33.sel
533- Speed up md5sum by disabling speed-up asm.
534
535* Wed Nov 19 2003 Dan Walsh <dwalsh@redhat.com> 5.0-32.sel
536- Try again
537
538* Wed Nov 19 2003 Dan Walsh <dwalsh@redhat.com> 5.0-31.sel
539- Fix move on non SELinux kernels
540
541* Fri Nov 14 2003 Tim Waugh <twaugh@redhat.com> 5.0-30.sel
542- Fixed useless acl dependencies (bug #106141).
543
544* Fri Oct 24 2003 Dan Walsh <dwalsh@redhat.com> 5.0-29.sel
545- Fix id -Z
546
547* Tue Oct 21 2003 Dan Walsh <dwalsh@redhat.com> 5.0-28.sel
548- Turn on SELinux
549- Fix chcon error handling
550
551* Wed Oct 15 2003 Dan Walsh <dwalsh@redhat.com> 5.0-28
552- Turn off SELinux
553
554* Mon Oct 13 2003 Dan Walsh <dwalsh@redhat.com> 5.0-27.sel
555- Turn on SELinux
556
557* Mon Oct 13 2003 Dan Walsh <dwalsh@redhat.com> 5.0-27
558- Turn off SELinux
559
560* Mon Oct 13 2003 Dan Walsh <dwalsh@redhat.com> 5.0-26.sel
561- Turn on SELinux
562
563* Sun Oct 12 2003 Florian La Roche <Florian.LaRoche@redhat.de>
564- allow compiling without pam support
565
566* Fri Oct 10 2003 Tim Waugh <twaugh@redhat.com> 5.0-23
567- Make split(1) handle large files (bug #106700).
568
569* Thu Oct  9 2003 Dan Walsh <dwalsh@redhat.com> 5.0-22
570- Turn off SELinux
571
572* Wed Oct  8 2003 Dan Walsh <dwalsh@redhat.com> 5.0-21.sel
573- Cleanup SELinux patch
574
575* Fri Oct  3 2003 Tim Waugh <twaugh@redhat.com> 5.0-20
576- Restrict ACL support to only those programs needing it (bug #106141).
577- Fix default PATH for LSB (bug #102567).
578
579* Thu Sep 11 2003 Dan Walsh <dwalsh@redhat.com> 5.0-19
580- Turn off SELinux
581
582* Wed Sep 10 2003 Dan Walsh <dwalsh@redhat.com> 5.0-18.sel
583- Turn on SELinux
584
585* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 5.0-17
586- Turn off SELinux
587
588* Tue Sep 2 2003 Dan Walsh <dwalsh@redhat.com> 5.0-16.sel
589- Only call getfilecon if the user requested it.
590- build with selinux
591
592* Wed Aug 20 2003 Tim Waugh <twaugh@redhat.com> 5.0-14
593- Documentation fix (bug #102697).
594
595* Tue Aug 12 2003 Tim Waugh <twaugh@redhat.com> 5.0-13
596- Made su use pam again (oops).
597- Fixed another i18n bug causing sort --month-sort to fail.
598- Don't run dubious stty test, since it fails when backgrounded
599  (bug #102033).
600- Re-enable make check.
601
602* Fri Aug  8 2003 Tim Waugh <twaugh@redhat.com> 5.0-12
603- Don't run 'make check' for this build (build environment problem).
604- Another uninitialized variable in i18n (from bug #98683).
605
606* Wed Aug 6 2003 Dan Walsh <dwalsh@redhat.com> 5.0-11
607- Internationalize runcon
608- Update latest chcon from NSA
609
610* Wed Jul 30 2003 Tim Waugh <twaugh@redhat.com>
611- Re-enable make check.
612
613* Wed Jul 30 2003 Tim Waugh <twaugh@redhat.com> 5.0-9
614- Don't run 'make check' for this build (build environment problem).
615
616* Mon Jul 28 2003 Tim Waugh <twaugh@redhat.com> 5.0-8
617- Actually use the ACL patch (bug #100519).
618
619* Wed Jul 18 2003 Dan Walsh <dwalsh@redhat.com> 5.0-7
620- Convert to SELinux
621
622* Mon Jun  9 2003 Tim Waugh <twaugh@redhat.com>
623- Removed samefile patch.  Now the test suite passes.
624
625* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
626- rebuilt
627
628* Wed May 28 2003 Tim Waugh <twaugh@redhat.com> 5.0-5
629- Both kon and kterm support colours (bug #83701).
630- Fix 'ls -l' alignment in zh_CN locale (bug #88346).
631
632* Mon May 12 2003 Tim Waugh <twaugh@redhat.com> 5.0-4
633- Prevent file descriptor leakage in du (bug #90563).
634- Build requires recent texinfo (bug #90439).
635
636* Wed Apr 30 2003 Tim Waugh <twaugh@redhat.com> 5.0-3
637- Allow obsolete options unless POSIXLY_CORRECT is set.
638
639* Sat Apr 12 2003 Tim Waugh <twaugh@redhat.com>
640- Fold bug was introduced by i18n patch; fixed there instead.
641
642* Fri Apr 11 2003 Matt Wilson <msw@redhat.com> 5.0-2
643- fix segfault in fold (#88683)
644
645* Sat Apr  5 2003 Tim Waugh <twaugh@redhat.com> 5.0-1
646- 5.0.
647
648* Mon Mar 24 2003 Tim Waugh <twaugh@redhat.com>
649- Use _smp_mflags.
650
651* Mon Mar 24 2003 Tim Waugh <twaugh@redhat.com> 4.5.11-2
652- Remove overwrite patch.
653- No longer seem to need nolibrt, errno patches.
654
655* Thu Mar 20 2003 Tim Waugh <twaugh@redhat.com>
656- No longer seem to need danglinglink, prompt, lug, touch_errno patches.
657
658* Thu Mar 20 2003 Tim Waugh <twaugh@redhat.com> 4.5.11-1
659- 4.5.11.
660- Use packaged readlink.
661
662* Wed Mar 19 2003 Tim Waugh <twaugh@redhat.com> 4.5.10-1
663- 4.5.10.
664- Update lug, touch_errno, acl, utmp, printf-ll, i18n, test-bugs patches.
665- Drop fr_fix, LC_TIME, preserve, regex patches.
666
667* Wed Mar 12 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-21
668- Fixed another i18n patch bug (bug #82032).
669
670* Tue Mar 11 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-20
671- Fix sort(1) efficiency in multibyte encoding (bug #82032).
672
673* Tue Feb 18 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-19
674- Ship readlink(1) (bug #84200).
675
676* Thu Feb 13 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-18
677- Deal with glibc < 2.2 in %%pre scriplet (bug #84090).
678
679* Wed Feb 12 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-16
680- Require glibc >= 2.2 (bug #84090).
681
682* Tue Feb 11 2003 Bill Nottingham <notting@redhat.com> 4.5.3-15
683- fix group (#84095)
684
685* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.5.3-14
686- rebuilt
687
688* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com>
689- Fix rm(1) man page.
690
691* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-13
692- Fix re_compile_pattern check.
693- Fix su hang (bug #81653).
694
695* Tue Jan 14 2003 Tim Waugh <twaugh@redhat.com> 4.5.3-11
696- Fix memory size calculation.
697
698* Tue Dec 17 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-10
699- Fix mv error message (bug #79809).
700
701* Mon Dec 16 2002 Tim Powers <timp@redhat.com> 4.5.3-9
702- added PreReq on grep
703
704* Fri Dec 13 2002 Tim Waugh <twaugh@redhat.com>
705- Fix cp --preserve with multiple arguments.
706
707* Thu Dec 12 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-8
708- Turn on colorls for screen (bug #78816).
709
710* Mon Dec  9 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-7
711- Fix mv (bug #79283).
712- Add patch27 (nogetline).
713
714* Sun Dec  1 2002 Tim Powers <timp@redhat.com> 4.5.3-6
715- use the su.pamd from sh-utils since it works properly with multilib systems
716
717* Fri Nov 29 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-5
718- Fix test suite quoting problems.
719
720* Fri Nov 29 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-4
721- Fix scriplets.
722- Fix i18n patch so it doesn't break uniq.
723- Fix several other patches to either make the test suite pass or
724  not run the relevant tests.
725- Run 'make check'.
726- Fix file list.
727
728* Thu Nov 28 2002 Tim Waugh <twaugh@redhat.com> 4.5.3-3
729- Adapted for Red Hat Linux.
730- Self-host for help2man.
731- Don't ship readlink just yet (maybe later).
732- Merge patches from fileutils and sh-utils (textutils ones are already
733  merged it seems).
734- Keep the binaries where the used to be (in particular, id and stat).
735
736* Sun Nov 17 2002 Stew Benedict <sbenedict@mandrakesoft.com> 4.5.3-2mdk
737- LI18NUX/LSB compliance (patch800)
738- Installed (but unpackaged) file(s) - /usr/share/info/dir
739
740* Thu Oct 31 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.3-1mdk
741- new release
742- rediff patch 180
743- merge patch 150 into 180
744
745* Mon Oct 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-6mdk
746- move su back to /bin
747
748* Mon Oct 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-5mdk
749- patch 0 : lg locale is illegal and must be renamed lug (pablo)
750
751* Mon Oct 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-4mdk
752- fix conflict with procps
753
754* Mon Oct 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-3mdk
755- patch 105 : fix install -s
756
757* Mon Oct 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-2mdk
758- fix build
759- don't chmode two times su
760- build with large file support
761- fix description
762- various spec cleanups
763- fix chroot installation
764- fix missing /bin/env
765- add old fileutils, sh-utils & textutils ChangeLogs
766
767* Fri Oct 11 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 4.5.2-1mdk
768- initial release (merge fileutils, sh-utils & textutils)
769- obsoletes/provides: sh-utils/fileutils/textutils
770- fileutils stuff go in 1xx range
771- sh-utils stuff go in 7xx range
772- textutils stuff go in 5xx range
773- drop obsoletes patches 1, 2, 10 (somes files're gone but we didn't ship
774  most of them)
775- rediff patches 103, 105, 111, 113, 180, 706
776- temporary disable patch 3 & 4
777- fix fileutils url
Note: See TracBrowser for help on using the repository browser.