coreutils-vl.spec 25 KB

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