coreutils-vl.spec 24 KB

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