e2fsprogs-vl.spec 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. %bcond_with systemd
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. %define _root_sbindir /sbin
  4. %define _root_libdir /%{_lib}
  5. Summary: Utilities for managing ext2/3/4 filesystem.
  6. Summary(ja): ext2/3/4 ファイルシステム操作ユーティリティ
  7. Name: e2fsprogs
  8. Version: 1.46.5
  9. Release: 2%{?_dist_release}%{?with_systemd:.systemd}
  10. Group: admin-tools,system
  11. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. License: GPL
  14. URL: http://e2fsprogs.sourceforge.net/
  15. Source0: https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v%{version}/%{name}-%{version}.tar.xz
  16. Source1: ext2_types-wrapper.h
  17. Patch0: 0001-remove-local-PATH.patch
  18. Patch1000: CVE-2022-1304.patch
  19. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  20. BuildRequires: gettext, texinfo
  21. BuildRequires: pkgconfig, device-mapper-devel, gawk
  22. BuildRequires: libblkid-devel
  23. BuildRequires: libuuid-devel
  24. %if %{with systemd}
  25. BuildRequires: systemd
  26. %else
  27. BuildRequires: cronie
  28. Requires(post): chkconfig
  29. %endif
  30. Requires(pre): shadow-utils
  31. %description
  32. The e2fsprogs package contains a number of utilities for creating,
  33. checking, modifying, and correcting any inconsistencies in ext2/3/4
  34. filesystems. E2fsprogs contains e2fsck (used to repair filesystem
  35. inconsistencies after an unclean shutdown), mke2fs (used to
  36. initialize a partition to contain an empty ext2/3/4 filesystem),
  37. debugfs (used to examine the internal structure of a filesystem, to
  38. manually repair a corrupted filesystem, or to create test cases for
  39. e2fsck), tune2fs (used to modify filesystem parameters), and most of
  40. the other core ext2fs filesystem utilities.
  41. You should install the e2fsprogs package if you need to manage the
  42. performance of an ext2/3/4 filesystem.
  43. %description -l ja
  44. e2fsprogs パッケージには,ファイルシステムの作成/チェック/変更/修正など,
  45. ext2/3/4 ファイルシステムに対する様々な操作を行うユーティリティが収めら
  46. れています.e2fsck(正しくアンマウントされずにシャットダウンされた等して
  47. 破損したファイルシステムの不整合を修正する),mke2fs (パーティションを初
  48. 期化してまっさらの ext2 ファイルシステムを作成する),debugfs(ファイルシ
  49. ステムの内部構造を直接参照して破損したファイルシステムを手で直したり
  50. e2fsck のテストケースを作りだしたりするのに使う),tune2fs(ファイルシス
  51. テムのパラメータを修正するのに使う)等,その他 ext2 ファイルシステム用基
  52. 本ユーティリティが収められています.
  53. ext2/3/4 ファイルシステムのパフォーマンスをきちんと把握しておく為にも
  54. e2fsprogs パッケージを是非インストールしておきましょう.
  55. %package devel
  56. Summary: Ext2/3/4 filesystem-specific static libraries and headers.
  57. Summary(ja): ext2/3/4 ファイルシステム特有のライブラリとヘッダ
  58. Group: programming
  59. Requires: e2fsprogs = %{version}
  60. Requires(post): install-info
  61. %description devel
  62. E2fsprogs-devel contains the libraries and header files needed to
  63. develop ext2/3/4 filesystem-specific programs.
  64. %description devel -l ja
  65. e2fsprogs-devel には ext2/3/4 ファイルシステム固有のプログラムを開発する
  66. のに必要なライブラリとヘッダファイルが収められています.
  67. %package -n e2scrub
  68. Summary: Online Ext4 metadata consistency checking tool and service
  69. License: GPLv2 and LGPLv2
  70. Recommends: postfix
  71. %if %{with systemd}
  72. Requires: systemd
  73. %else
  74. BuildRequires: cronie
  75. %endif
  76. Requires: util-linux
  77. Requires: lvm2
  78. Requires: e2fsprogs%{?_isa} = %{version}-%{release}
  79. %description -n e2scrub
  80. This package includes e2scrub script that can check ext[234] file system
  81. metadata consistency while the file system is online. It also containes a
  82. systemd service that can be enabled to do consistency check periodically.
  83. The file system consistency check can be performed online and does not
  84. require the file system to be unmounted. It uses lvm snapshots to do this
  85. which means that it can only be done on file systems that are on a lvm
  86. managed device with some free space available in respective volume group.
  87. ## to build compat32 for x86_64 architecture support
  88. %package -n compat32-%{name}
  89. Summary: Utilities for managing ext2/3/4 filesystem.
  90. Group: system,legacy
  91. %description -n compat32-%{name}
  92. The e2fsprogs package contains a number of utilities for creating,
  93. checking, modifying, and correcting any inconsistencies in ext2/3/4
  94. filesystems. E2fsprogs contains e2fsck (used to repair filesystem
  95. inconsistencies after an unclean shutdown), mke2fs (used to initialize
  96. a partition to contain an empty ext2 filesystem), debugfs (used to
  97. examine the internal structure of a filesystem, to manually repair
  98. a corrupted filesystem, or to create test cases for e2fsck),
  99. tune2fs (used to modify filesystem parameters), and most of the
  100. other core ext2fs filesystem utilities.
  101. You should install the e2fsprogs package if you need to manage the
  102. performance of an ext2/3/4 filesystem.
  103. %package -n compat32-%{name}-devel
  104. Summary: Ext2/3/4 filesystem-specific static libraries and headers.
  105. Group: programming,legacy
  106. Requires: compat32-%{name} = %{version}
  107. %description -n compat32-%{name}-devel
  108. E2fsprogs-devel contains the libraries and header files needed to
  109. develop second extended (ext2) filesystem-specific programs.
  110. You should install e2fsprogs-devel if you want to develop ext2
  111. filesystem-specific programs. If you install e2fsprogs-devel, you'll
  112. also want to install e2fsprogs.
  113. %debug_package
  114. %prep
  115. %setup -q -n e2fsprogs-%{version}
  116. %patch0 -p1
  117. %patch1000 -p1
  118. # Remove flawed tests
  119. rm -rf tests/m_rootdir_acl
  120. %global _udevdir /lib/udev/rules.d
  121. %build
  122. %configure --with-udev-rules-dir=%{_udevdir} \
  123. --enable-elf-shlibs --enable-nls --disable-uuidd --disable-fsck \
  124. --disable-e2initrd-helper --disable-libblkid --disable-libuuid \
  125. --enable-quota
  126. make %{?_smp_mflags}
  127. %install
  128. rm -rf $RPM_BUILD_ROOT
  129. export PATH=/sbin:$PATH
  130. make install install-libs DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" \
  131. root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir}
  132. chmod 644 $RPM_BUILD_ROOT%{_libdir}/*.a
  133. %ifarch %{multilib_arches}
  134. mv -f %{buildroot}%{_includedir}/ext2fs/ext2_types.h \
  135. %{buildroot}%{_includedir}/ext2fs/ext2_types-%{_arch}.h
  136. install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/ext2fs/ext2_types.h
  137. %endif
  138. %find_lang %{name}
  139. %clean
  140. rm -rf $RPM_BUILD_ROOT
  141. %post -p /sbin/ldconfig
  142. %postun -p /sbin/ldconfig
  143. %files -f %{name}.lang
  144. %defattr(-,root,root)
  145. %doc README RELEASE-NOTES
  146. %config(noreplace) %{_sysconfdir}/mke2fs.conf
  147. %{_root_sbindir}/badblocks
  148. %{_root_sbindir}/debugfs
  149. %{_root_sbindir}/dumpe2fs
  150. %{_root_sbindir}/e2fsck
  151. %{_root_sbindir}/e2image
  152. %{_root_sbindir}/e2label
  153. %{_root_sbindir}/e2mmpstatus
  154. %{_root_sbindir}/e2undo
  155. %{_root_sbindir}/fsck.ext2
  156. %{_root_sbindir}/fsck.ext3
  157. %{_root_sbindir}/fsck.ext4
  158. %{_root_sbindir}/logsave
  159. %{_root_sbindir}/mke2fs
  160. %{_root_sbindir}/mkfs.ext2
  161. %{_root_sbindir}/mkfs.ext3
  162. %{_root_sbindir}/mkfs.ext4
  163. %{_root_sbindir}/resize2fs
  164. %{_root_sbindir}/tune2fs
  165. %{_sbindir}/filefrag
  166. %{_sbindir}/e2freefrag
  167. %{_sbindir}/e4crypt
  168. %{_sbindir}/e4defrag
  169. %{_sbindir}/mklost+found
  170. %{_root_libdir}/libcom_err.so.*
  171. %{_root_libdir}/libe2p.so.*
  172. %{_root_libdir}/libext2fs.so.*
  173. %{_root_libdir}/libss.so.*
  174. %{_bindir}/chattr
  175. %{_bindir}/lsattr
  176. %{_mandir}/man1/chattr.1*
  177. %{_mandir}/man1/lsattr.1*
  178. %{_mandir}/man5/e2fsck.conf.5*
  179. %{_mandir}/man5/ext2.5.gz
  180. %{_mandir}/man5/ext3.5.gz
  181. %{_mandir}/man5/ext4.5.gz
  182. %{_mandir}/man5/mke2fs.conf.5*
  183. %{_mandir}/man8/badblocks.8*
  184. %{_mandir}/man8/debugfs.8*
  185. %{_mandir}/man8/dumpe2fs.8*
  186. %{_mandir}/man8/e2fsck.8*
  187. %{_mandir}/man8/e2undo.8*
  188. %{_mandir}/man8/filefrag.8*
  189. %{_mandir}/man8/e2freefrag.8*
  190. %{_mandir}/man8/fsck.ext2.8*
  191. %{_mandir}/man8/fsck.ext3.8*
  192. %{_mandir}/man8/fsck.ext4.8*
  193. %{_mandir}/man8/e2image.8*
  194. %{_mandir}/man8/e2label.8*
  195. %{_mandir}/man8/e2mmpstatus.8.gz
  196. %{_mandir}/man8/e4crypt.8.gz
  197. %{_mandir}/man8/e4defrag.8*
  198. %{_mandir}/man8/logsave.8*
  199. %{_mandir}/man8/mke2fs.8*
  200. %{_mandir}/man8/mkfs.ext2.8*
  201. %{_mandir}/man8/mkfs.ext3.8*
  202. %{_mandir}/man8/mkfs.ext4.8*
  203. %{_mandir}/man8/mklost+found.8*
  204. %{_mandir}/man8/resize2fs.8*
  205. %{_mandir}/man8/tune2fs.8*
  206. %files devel
  207. %defattr(-,root,root)
  208. %{_infodir}/libext2fs.info*
  209. %{_bindir}/compile_et
  210. %{_bindir}/mk_cmds
  211. %{_libdir}/libcom_err.a
  212. %{_libdir}/libcom_err.so
  213. %{_libdir}/libe2p.a
  214. %{_libdir}/libe2p.so
  215. %{_libdir}/libext2fs.a
  216. %{_libdir}/libext2fs.so
  217. %{_libdir}/libss.a
  218. %{_libdir}/libss.so
  219. %{_libdir}/pkgconfig/*.pc
  220. %{_datadir}/et
  221. %{_datadir}/ss
  222. %{_includedir}/e2p
  223. %{_includedir}/et
  224. %{_includedir}/com_err.h
  225. %{_includedir}/ext2fs
  226. %{_includedir}/ss
  227. %{_mandir}/man1/compile_et.1*
  228. %{_mandir}/man1/mk_cmds.1*
  229. %{_mandir}/man3/com_err.3*
  230. %files -n e2scrub
  231. %config(noreplace) %{_sysconfdir}/e2scrub.conf
  232. %{_root_sbindir}/e2scrub
  233. %{_root_sbindir}/e2scrub_all
  234. %{_mandir}/man8/e2scrub.8*
  235. %{_mandir}/man8/e2scrub_all.8*
  236. %if %{with systemd}
  237. %{_libdir}/e2fsprogs/e2scrub_fail
  238. %{_unitdir}/e2scrub@.service
  239. %{_unitdir}/e2scrub_all.service
  240. %{_unitdir}/e2scrub_all.timer
  241. %{_unitdir}/e2scrub_fail@.service
  242. %{_unitdir}/e2scrub_reap.service
  243. %exclude %{_libdir}/e2fsprogs/e2scrub_all_cron
  244. %exclude %{_sysconfdir}/cron.d/e2scrub_all
  245. %else
  246. %{_libdir}/e2fsprogs/e2scrub_all_cron
  247. %{_sysconfdir}/cron.d/e2scrub_all
  248. %endif
  249. %{_udevdir}/96-e2scrub.rules
  250. %if %{build_compat32}
  251. %files -n compat32-%{name}
  252. %defattr(-,root,root)
  253. %{_root_libdir}/libcom_err.so.*
  254. %{_root_libdir}/libe2p.so.*
  255. %{_root_libdir}/libext2fs.so.*
  256. %{_root_libdir}/libss.so.*
  257. %files -n compat32-%{name}-devel
  258. %defattr(-,root,root)
  259. %{_libdir}/libcom_err.so
  260. %{_libdir}/libe2p.so
  261. %{_libdir}/libext2fs.so
  262. %{_libdir}/libss.so
  263. #{_libdir}/pkgconfig/*.pc
  264. %endif
  265. %changelog
  266. * Fri May 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.46.5-2
  267. - imported Patch1000 from upstream to fix CVE-2022-1304.
  268. * Fri May 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.46.5-1
  269. - new upstream release.
  270. * Wed Mar 10 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.46.2-1
  271. - new upstream release.
  272. * Mon Feb 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.46.1-1
  273. - new upstream release.
  274. * Tue Aug 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.45.6-1
  275. - new upstream release.
  276. * Wed Feb 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.45.5-1
  277. - new upstream release.
  278. * Fri Oct 25 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.45.4-1
  279. - new upstream release.
  280. * Wed Jul 16 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.42.11-1
  281. - new upstream release
  282. - remove static lib and pkgconfig file from compat32-e2fsprogs-devel
  283. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.42.6-1
  284. - new upstream reelase
  285. * Thu Jan 12 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.42-1
  286. - new upstram release
  287. * Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.14-1
  288. - new upstream release
  289. * Fri Oct 01 2010 Shu KONNO <owa@bg.wakwak.com> 1.41.10-2
  290. - rebuilt with rpm-4.8.1 for pkg-config
  291. * Sun Feb 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.10-1
  292. - new upstream release
  293. * Mon Oct 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.9-1
  294. - new upstream release
  295. - disable libuuid/uuidd/libblkid/fsck (replaced by util-linux-ng)
  296. * Thu Jan 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.4-1
  297. - new upstream release
  298. * Sat Jan 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.3-2
  299. - add Requires(pre): shadow-utils
  300. - add Requires(post): chkconfig
  301. * Tue Oct 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.3-1
  302. - new upstream release
  303. * Wed Sep 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.41.1-1
  304. - new upstream release
  305. - drop patch5 (merged in upstream)
  306. * Sun Aug 17 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.41.0-1
  307. - new upstream release
  308. - drop patch4 (included in upstream)
  309. - add e2undo and some ext4 related files in %%files section
  310. - add patch5 to fix "mount -l" segmentation fault
  311. * Fri Jul 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.40.10-1
  312. - new upstream release
  313. * Mon Apr 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.40.9-1
  314. - new upstream release
  315. * Fri Apr 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.40.8-1
  316. - new upstream release
  317. - drop unneeded patches
  318. - update fedora patches
  319. * Sat Dec 22 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.40.2-0vl3
  320. - removed %%if !%%{build_compat32} case condition
  321. * Mon Dec 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.40.2-0vl2
  322. - add Patch100 for CVE-2007-5497 (see also <BTS:316>)
  323. * Sun Dec 09 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.40.2-0vl1
  324. - new upstream release
  325. - import fedora patches
  326. - drop ext2resize(ext2online), online resize is now supported by resize2fs
  327. * Thu Mar 09 2006 Shu KONNO <owa@bg.wakwak.com> 1.38-2vl2
  328. - rebuilt for x86_64 architecture support
  329. - added compat32-* packages for x86_64
  330. * Sun Dec 11 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.38-2vl1
  331. - new upstream release based on Fedora package
  332. * Thu Nov 10 2005 Thomas Woerner <twoerner@redhat.com> 1.38-2.1
  333. - fixed file conflicts between 32bit and 64bit packages (#168815)
  334. - fixed mklost+found crashes with buffer overflow (#157773)
  335. Thanks to Arjan van de Ven for the patch
  336. * Thu Sep 8 2005 Thomas Woerner <twoerner@redhat.com> 1.38-1
  337. - Close File descriptor for unregognized devices (#159878)
  338. Thanks to David Milburn for the patch.
  339. Merged from RHEL-4
  340. - enable tune2fs to set and clear feature resize_inode (#167816)
  341. - removed outdated information from ext2online man page (#164383)
  342. * Mon Sep 5 2005 Karel Zak <kzak@redhat.com> - 1.37-5
  343. - fix swsuspend partition detection (#165863)
  344. - fix revalidate from ext2 to ext3 (#162927)
  345. - fix vfat without magic detection (#161873)
  346. * Wed Sep 1 2004 Stephen C. Tweedie <sct@redhat.com> 1.35-9.4
  347. - Build and package ext2online during the e2fsprogs build
  348. * Fri Jun 25 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.35-0vl2
  349. - import Patch7 from fedora package to fix 'check after next mount'
  350. for filesystems with maximum mount count -1
  351. * Sun Apr 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.35-0vl1
  352. - new upstream release
  353. * Mon Nov 17 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.34-0vl1
  354. - new upstream release
  355. * Sat May 24 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.33-2vl1
  356. - syncd with rawhide
  357. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.32-0vl1
  358. - new upstream release
  359. * Sun Sep 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.29-0vl1
  360. - new upstream release 1.29
  361. * Tue Mar 12 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.27-0vl1
  362. - updated to new upstream bugfix release 1.27
  363. (the fix associated with Patch10 has been merged)
  364. - added missing man pages
  365. * Tue Mar 05 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.26-0vl2
  366. - added Patch10 (upstream fix)
  367. * Thu Feb 14 2002 Toru Sagami <sagami@vinelinux.org> 1.26-0vl1
  368. - updated to current release 1.26 with minor spec fixes
  369. * Sun Oct 28 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.25-0vl1
  370. - updated to newest 1.25 release
  371. * Fri Aug 31 2001 Toru Sagami <sagami@vinelinux.org>
  372. - 1.24-0vl1: updated to 1.24
  373. * Thu Aug 16 2001 <sagami@vinelinux.org>
  374. - 1.23-0vl1: updated to 1.23 and added e2image files
  375. * Fri Jul 13 2001 <sagami@vinelinux.org>
  376. - 1.22-0vl1: updated to 1.22
  377. * Sun Jun 17 2001 <sagami@vinelinux.org>
  378. - 1.21-0vl1: updated to 1.21
  379. * Sun Jun 10 2001 <sagami@vinelinux.org>
  380. - 1.20-0vl1: updated to 1.20
  381. * Sat May 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  382. - 1.19-4vl2
  383. - added Japanese summary and description
  384. - revamp spec file
  385. * Wed May 09 2001 <sagami@vinelinux.org>
  386. - 1.19-4vl1: in sync with RH 1.19-4
  387. * added some documant entries in %doc
  388. * Fri Apr 06 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  389. - add further IDE and SCSI disks to a hardcoded list in fsck #34190
  390. * Tue Feb 27 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  391. - require the main rpm from the devel rpm
  392. * Thu Feb 22 2001 Helge Deller <hdeller@redhat.de>
  393. - fix fsck -A bug (#21242)
  394. * Mon Feb 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  395. - fix bug with 16 byte long labels #27071
  396. * Mon Sep 11 2000 Jeff Johnson <jbj@redhat.com>
  397. - build for Red Hat 7.1.
  398. * Tue Aug 8 2000 Jeff Johnson <jbj@redhat.com>
  399. - merge LABEL patch.
  400. - update to 1.19.
  401. * Tue Jul 25 2000 Erik Troan <ewt@redhat.com>
  402. - fixed LABEL handling
  403. * Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
  404. - rebuild to cope with glibc locale binary incompatibility
  405. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  406. - automatic rebuild
  407. * Mon Jun 26 2000 Matt Wilson <msw@redhat.com>
  408. - added resize2fs from the WIP snapshot
  409. * Thu Jun 15 2000 Matt Wilson <msw@redhat.com>
  410. - patched to build against linux 2.4 headers
  411. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  412. - FHS packaging.
  413. * Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
  414. - fix for ia64
  415. * Sat Feb 5 2000 Bill Nottingham <notting@redhat.com>
  416. - add install-info scripts
  417. * Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
  418. - Fix bug #8585 (Y2K problems in debugfs)
  419. * Wed Feb 02 2000 Jakub Jelinek <jakub@redhat.com>
  420. - allow multiline errors in et, so that other programs
  421. can use compile_et (from Kerberos)
  422. * Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
  423. - build 1.18 for 6.2.
  424. * Tue Oct 26 1999 Bill Nottingham <notting@redhat.com>
  425. - update to 1.17
  426. * Mon Oct 25 1999 Bill Nottingham <notting@redhat.com>
  427. - update to 1.16
  428. * Thu Oct 21 1999 Bill Nottingham <notting@redhat.com>
  429. - add patch to fix SIGUSR1 kills.
  430. * Mon Oct 04 1999 Cristian Gafton <gafton@redhat.com>
  431. - rebuild against new glibc in the sparc tree
  432. * Thu Sep 23 1999 Jakub Jelinek <jakub@redhat.com>
  433. - update mke2fs man page so that it reflects changes in mke2fs
  434. netweem 1.14 and 1.15
  435. * Thu Aug 5 1999 Bill Nottingham <notting@redhat.com>
  436. - fix lsattr on alpha
  437. * Thu Jul 29 1999 Jeff Johnson <jbj@redhat.com>
  438. - update to 1.15.
  439. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  440. - auto rebuild in the new build environment (release 4)
  441. * Tue Mar 16 1999 Cristian Gafton <gafton@redhat.com>
  442. - fix fsck segfault
  443. * Tue Feb 2 1999 Jeff Johnson <jbj@redhat.com>
  444. - update to 1.14
  445. - use %configure to generate config.sub on arm
  446. * Thu Jan 14 1999 Jeff Johnson <jbj@redhat.com>
  447. - fix /usr/bin/compile_et and doco for com_err.h (#673)
  448. * Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
  449. - build with prefix=/usr
  450. - add arm patch
  451. * Mon Dec 28 1998 Jeff Johnson <jbj@redhat.com>
  452. - update to 1.13.
  453. * Fri Aug 28 1998 Jeff Johnson <jbj@redhat.com>
  454. - recompile statically linked binary for 5.2/sparc
  455. * Mon Jul 13 1998 Jeff Johnson <jbj@redhat.com>
  456. - upgrade to 1.12.
  457. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  458. - translations modified for de, fr, tr
  459. * Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
  460. - include <asm/types.h> to match kernel types in utils
  461. * Tue Oct 14 1997 Donnie Barnes <djb@redhat.com>
  462. - spec file cleanups
  463. * Wed Oct 01 1997 Erik Troan <ewt@redhat.com>
  464. - fixed broken llseek() prototype
  465. * Wed Aug 20 1997 Erik Troan <ewt@redhat.com>
  466. - added patch to prototype llseek
  467. * Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
  468. - built against glibc