Whamcloud - gitweb
e2fsck: add support for dirdata feature
[tools/e2fsprogs.git] / e2fsprogs-RHEL-6.spec.in
1 %define _root_sbindir   /sbin
2 %define _root_libdir    /%{_lib}
3
4 Summary: Utilities for managing ext2, ext3, and ext4 file systems
5 Name: e2fsprogs
6 Version: @E2FSPROGS_PKGVER@
7 Release: 0%{?dist}
8
9 # License tags based on COPYING file distinctions for various components
10 License: GPLv2
11 Group: System Environment/Base
12 Source0: https://www.kernel.org/pub/linux/kernel/people/tytso/%{name}/v%{version}/%{name}-%{version}.tar.gz
13
14 Url: https://downloads.whamcloud.com/public/e2fsprogs/
15 Provides: ldiskfsprogs = %{version}
16 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17 Requires: e2fsprogs-libs = %{version}-%{release}
18 Requires: libcom_err = %{version}-%{release}
19 Requires: libss = %{version}-%{release}
20
21 # e4fsprogs was a parallel ext4-capable package in RHEL5.x
22 %if 0%{?rhel} > 0
23 Obsoletes: e4fsprogs < %{version}-%{release}
24 Provides: e4fsprogs = %{version}-%{release}
25 %endif
26
27 BuildRequires: pkgconfig, texinfo, libselinux-devel, gcc
28 BuildRequires: libsepol-devel
29 BuildRequires: libblkid-devel
30 BuildRequires: libuuid-devel
31 BuildRequires: gettext
32
33 %description
34 The e2fsprogs package contains a number of utilities for creating,
35 checking, modifying, and correcting any inconsistencies in second,
36 third and fourth extended (ext2/ext3/ext4) file systems. E2fsprogs
37 contains e2fsck (used to repair file system inconsistencies after an
38 unclean shutdown), mke2fs (used to initialize a partition to contain
39 an empty ext2 file system), debugfs (used to examine the internal
40 structure of a file system, to manually repair a corrupted
41 file system, or to create test cases for e2fsck), tune2fs (used to
42 modify file system parameters), and most of the other core ext2fs
43 file system utilities.
44
45 You should install the e2fsprogs package if you need to manage the
46 performance of an ext2, ext3, or ext4 file system.
47
48 %package libs
49 Summary: Ext2/3/4 file system specific shared libraries
50 Group: Development/Libraries
51 License: GPLv2 and LGPLv2
52 Requires: libcom_err = %{version}-%{release}
53
54 %description libs
55 E2fsprogs-libs contains libe2p and libext2fs, the libraries of the
56 e2fsprogs package.
57
58 These libraries are used to directly access ext2/3/4 file systems
59 from user space.
60
61 %package static
62 Summary: Ext2/3/4 file system specific static libraries
63 Group: Development/Libraries
64 License: GPLv2 and LGPLv2
65
66 %description static
67 E2fsprogs-static contains all static libraries built from e2fsprogs,
68 including libext2fs, libcom_err, libe2p, and libss.
69
70 These libraries are used to directly access ext2/3/4 file systems
71 from user space, and perform other useful functions.
72
73 %package devel
74 Summary: Ext2/3/4 file system specific libraries and headers
75 Group: Development/Libraries
76 License: GPLv2 and LGPLv2
77 Requires: e2fsprogs-libs = %{version}-%{release}
78 Requires: libcom_err-devel = %{version}-%{release}
79 Requires: gawk
80 Requires: pkgconfig
81 Requires(post): info
82 Requires(preun): info
83
84 %description devel
85 E2fsprogs-devel contains the libraries and header files needed to
86 develop second, third and fourth extended (ext2/ext3/ext4)
87 file system specific programs.
88
89 You should install e2fsprogs-devel if you want to develop ext2/3/4
90 file system specific programs. If you install e2fsprogs-devel, you'll
91 also want to install e2fsprogs.
92
93 %package -n libcom_err
94 Summary: Common error description library
95 Group: Development/Libraries
96 License: MIT
97
98 %description -n libcom_err
99 This is the common error description library, part of e2fsprogs.
100
101 libcom_err is an attempt to present a common error-handling mechanism.
102
103 %package -n libcom_err-devel
104 Summary: Common error description library
105 Group: Development/Libraries
106 License: MIT
107 Requires: libcom_err = %{version}-%{release}
108 Requires: pkgconfig
109
110 %description -n libcom_err-devel
111 This is the common error description development library and headers,
112 part of e2fsprogs.  It contains the compile_et command, used
113 to convert a table listing error-code names and associated messages
114 messages into a C source file suitable for use with the library.
115
116 libcom_err is an attempt to present a common error-handling mechanism.
117
118 %package -n libss
119 Summary: Command line interface parsing library
120 Group: Development/Libraries
121 License: MIT
122 Requires: libcom_err = %{version}-%{release}
123
124 %description -n libss
125 This is libss, a command line interface parsing library, part of e2fsprogs.
126
127 This package includes a tool that parses a command table to generate
128 a simple command-line interface parser, the include files needed to
129 compile and use it.
130
131 It was originally inspired by the Multics SubSystem library.
132
133 %package -n libss-devel
134 Summary: Command line interface parsing library
135 Group: Development/Libraries
136 License: MIT
137 Requires: libss = %{version}-%{release}
138 Requires: pkgconfig
139
140 %description -n libss-devel
141 This is the command line interface parsing (libss) development library
142 and headers, part of e2fsprogs.  It contains the mk_cmds command, which
143 parses a command table to generate a simple command-line interface parser.
144
145 It was originally inspired by the Multics SubSystem library.
146
147 %prep
148 %setup -q
149
150 %build
151 %configure --enable-elf-shlibs --enable-nls --disable-uuidd --disable-fsck \
152            --disable-e2initrd-helper --disable-libblkid --disable-libuuid \
153            --enable-quota --disable-fuse2fs \
154            %{?extra_config_flags:%extra_config_flags}
155 make V=1 %{?_smp_mflags}
156
157 %install
158 rm -rf %{buildroot}
159 export PATH=/sbin:$PATH
160 make install install-libs DESTDIR=%{buildroot} INSTALL="%{__install} -p" \
161         root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir}
162
163 # ugly hack to allow parallel install of 32-bit and 64-bit -devel packages:
164 %define multilib_arches %{ix86} x86_64 ppc ppc64 s390 s390x sparcv9 sparc64
165
166 %ifarch %{multilib_arches}
167 mv -f %{buildroot}%{_includedir}/ext2fs/ext2_types.h \
168       %{buildroot}%{_includedir}/ext2fs/ext2_types-%{_arch}.h
169 mv -f %{buildroot}%{_includedir}/ext2fs/ext2_types-wrapper.h \
170       %{buildroot}%{_includedir}/ext2fs/ext2_types.h
171 %endif
172
173 # Hack for now, otherwise strip fails.
174 chmod +w %{buildroot}%{_libdir}/*.a
175
176 %find_lang %{name}
177
178 %check
179 make check
180
181 %post libs -p /sbin/ldconfig
182 %postun libs -p /sbin/ldconfig
183
184 %post devel
185 # Test for file; if installed with --excludedocs it may not be there
186 if [ -f %{_infodir}/libext2fs.info.gz ]; then
187    /sbin/install-info %{_infodir}/libext2fs.info.gz %{_infodir}/dir || :
188 fi
189
190 %preun devel
191 if [ $1 = 0 -a -f %{_infodir}/libext2fs.info.gz ]; then
192    /sbin/install-info --delete %{_infodir}/libext2fs.info.gz %{_infodir}/dir || :
193 fi
194 exit 0
195
196 %post -n libcom_err -p /sbin/ldconfig
197 %postun -n libcom_err -p /sbin/ldconfig
198
199 %post -n libss -p /sbin/ldconfig
200 %postun -n libss -p /sbin/ldconfig
201
202 %files -f %{name}.lang
203 %defattr(-,root,root)
204 %doc NOTICE README RELEASE-NOTES
205
206 %config(noreplace) /etc/mke2fs.conf
207 %{_root_sbindir}/badblocks
208 %{_root_sbindir}/debugfs
209 %{_root_sbindir}/dumpe2fs
210 %{_root_sbindir}/e2fsck
211 %{_root_sbindir}/e2image
212 %{_root_sbindir}/e2label
213 %{_root_sbindir}/e2mmpstatus
214 %{_root_sbindir}/e2undo
215 %{_root_sbindir}/fsck.ext2
216 %{_root_sbindir}/fsck.ext3
217 %{_root_sbindir}/fsck.ext4
218 %{_root_sbindir}/logsave
219 %{_root_sbindir}/mke2fs
220 %{_root_sbindir}/mkfs.ext2
221 %{_root_sbindir}/mkfs.ext3
222 %{_root_sbindir}/mkfs.ext4
223 %{_root_sbindir}/resize2fs
224 %{_root_sbindir}/tune2fs
225 %{_sbindir}/filefrag
226 %{_sbindir}/e2freefrag
227 %{_sbindir}/e4defrag
228 %{_sbindir}/mklost+found
229 %{_sbindir}/e4crypt
230
231 %{_bindir}/chattr
232 %{_bindir}/lsattr
233 %{_mandir}/man1/chattr.1*
234 %{_mandir}/man1/lsattr.1*
235
236 %{_mandir}/man5/ext2.5*
237 %{_mandir}/man5/ext3.5*
238 %{_mandir}/man5/ext4.5*
239 %{_mandir}/man5/e2fsck.conf.5*
240 %{_mandir}/man5/mke2fs.conf.5*
241
242 %{_mandir}/man8/badblocks.8*
243 %{_mandir}/man8/debugfs.8*
244 %{_mandir}/man8/dumpe2fs.8*
245 %{_mandir}/man8/e2fsck.8*
246 %{_mandir}/man8/e4crypt.8*
247 %{_mandir}/man8/filefrag.8*
248 %{_mandir}/man8/e2freefrag.8*
249 %{_mandir}/man8/e4defrag.8*
250 %{_mandir}/man8/fsck.ext2.8*
251 %{_mandir}/man8/fsck.ext3.8*
252 %{_mandir}/man8/fsck.ext4.8*
253 %{_mandir}/man8/e2image.8*
254 %{_mandir}/man8/e2label.8*
255 %{_mandir}/man8/e2mmpstatus.8*
256 %{_mandir}/man8/e2undo.8*
257 %{_mandir}/man8/logsave.8*
258 %{_mandir}/man8/mke2fs.8*
259 %{_mandir}/man8/mkfs.ext2.8*
260 %{_mandir}/man8/mkfs.ext3.8*
261 %{_mandir}/man8/mkfs.ext4.8*
262 %{_mandir}/man8/mklost+found.8*
263 %{_mandir}/man8/resize2fs.8*
264 %{_mandir}/man8/tune2fs.8*
265
266 %files libs
267 %defattr(-,root,root)
268 %doc NOTICE
269 %{_root_libdir}/libe2p.so.*
270 %{_root_libdir}/libext2fs.so.*
271
272 %files static
273 %defattr(-,root,root)
274 %doc NOTICE
275 %{_libdir}/*.a
276
277 %files devel
278 %defattr(-,root,root)
279 %{_infodir}/libext2fs.info*
280 %{_libdir}/libe2p.so
281 %{_libdir}/libext2fs.so
282 %{_libdir}/pkgconfig/e2p.pc
283 %{_libdir}/pkgconfig/ext2fs.pc
284
285 %{_includedir}/e2p
286 %{_includedir}/ext2fs
287
288 %files -n libcom_err
289 %defattr(-,root,root)
290 %doc NOTICE
291 %{_root_libdir}/libcom_err.so.*
292
293 %files -n libcom_err-devel
294 %defattr(-,root,root)
295 %{_bindir}/compile_et
296 %{_libdir}/libcom_err.so
297 %{_datadir}/et
298 %{_includedir}/et
299 %{_includedir}/com_err.h
300 %{_mandir}/man1/compile_et.1*
301 %{_mandir}/man3/com_err.3*
302 %{_libdir}/pkgconfig/com_err.pc
303
304 %files -n libss
305 %defattr(-,root,root)
306 %doc NOTICE
307 %{_root_libdir}/libss.so.*
308
309 %files -n libss-devel
310 %defattr(-,root,root)
311 %{_bindir}/mk_cmds
312 %{_libdir}/libss.so
313 %{_datadir}/ss
314 %{_includedir}/ss
315 %{_mandir}/man1/mk_cmds.1*
316 %{_libdir}/pkgconfig/ss.pc
317
318 %changelog
319 * Tue Jul 10 2018 Lukas Czerner <lczerner@redhat.com> 1.44.3-0
320 - New upstream release
321 - Remove multiarch wrappers
322 - Remove needless use of %defattr
323
324 * Wed Apr 04 2018 Lukas Czerner <lczerner@redhat.com> 1.44.1-1
325 - New upstream release
326 - tests: use mke2fs and debugfs from the build tree
327 - remove custom patch to ignose sb feature differences
328 - e2fsprogs: fix metadata image handling on big endian systems
329 - fix spelling errors in spec file
330 - remove custom e2fsck.conf
331
332 * Mon Mar 12 2018 Lukas Czerner <lczerner@redhat.com> 1.44.0-2
333 - e2fsck: fix endianness problem when reading htree nodes
334 - use make fullcheck in %check section to run all the tests
335
336 * Thu Mar 08 2018 Lukas Czerner <lczerner@redhat.com> 1.44.0-1
337 - New upstream release
338 - Add gcc to the BuildRequires to comply with packaging guidelines
339
340 * Mon Mar 05 2018 Lukas Czerner <lczerner@redhat.com> 1.43.9-1
341 - New upstream release
342
343 * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.43.8-2
344 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
345
346 * Tue Jan 9 2018 Lukas Czerner <lczerner@redhat.com> 1.43.8-1
347 - New upstream release
348 - Fix build failure swapfs.c on big-endian
349
350 * Wed Oct 18 2017 Eric Sandeen <sandeen@redhat.com> 1.43.7-1
351 - New upstream release
352
353 * Wed Aug 30 2017 Eric Sandeen <sandeen@redhat.com> 1.43.6-1
354 - New upstream release
355
356 * Fri Aug 11 2017 Kalev Lember <klember@redhat.com> 1.43.5-2
357 - Bump and rebuild for an rpm signing issue
358
359 * Tue Aug 08 2017 Eric Sandeen <sandeen@redhat.com> 1.43.5-1
360 - New upstream release
361
362 * Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.43.4-4
363 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
364
365 * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.43.4-3
366 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
367
368 * Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.43.4-2
369 - Add missing %%license macro
370
371 * Tue Jan 31 2017 Eric Sandeen <sandeen@redhat.com> 1.43.4-1
372 - New upstream release
373
374 * Mon Sep 05 2016 Eric Sandeen <sandeen@redhat.com> 1.43.3-1
375 - New upstream release
376
377 * Mon Sep 05 2016 Eric Sandeen <sandeen@redhat.com> 1.43.2-1
378 - New upstream release (broken on i686, not built)
379
380 * Thu Jun 16 2016 Eric Sandeen <sandeen@redhat.com> 1.43.1-2
381 - Fix e2undo endian issues (#1344636)
382
383 * Wed Jun 08 2016 Eric Sandeen <sandeen@redhat.com> 1.43.1-1
384 - New upstream release
385
386 * Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.42.13-4
387 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
388
389 * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42.13-3
390 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
391
392 * Mon Jun 08 2015 Eric Sandeen <sandeen@redhat.com> 1.42.13-2
393 - Add -fno-strict-aliasing (#1211582)
394
395 * Mon May 18 2015 Eric Sandeen <sandeen@redhat.com> 1.42.13-1
396 - New upstream release
397
398 * Thu Apr 30 2015 Eric Sandeen <sandeen@redhat.com> 1.42.12-5
399 - Don't trigger full check within time fudge window (#1202024)
400
401 * Tue Feb 24 2015 Eric Sandeen <sandeen@redhat.com> 1.42.12-4
402 - Fix potential buffer overflow in closefs (#1193947, CVE-2015-1572)
403 - Fix dumpe2fs segfault with no arguments (#1194063)
404 - Don't require fsck prior to resize2fs -P (#1170803)
405
406 * Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.42.12-3
407 - Rebuilt for Fedora 23 Change
408   https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
409
410 * Tue Feb 17 2015 Eric Sandeen <sandeen@redhat.com> 1.42.12-2
411 - Fix use after free (#1192861)
412 - Fix time-based fsck if set in superblock (e2fsck.conf, #963283)
413
414 * Fri Aug 29 2014 Eric Sandeen <sandeen@redhat.com> 1.42.12-1
415 - New upstream release
416
417 * Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42.11-3
418 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
419
420 * Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> 1.42.11-2
421 - fix license handling
422
423 * Fri Jul 11 2014 Eric Sandeen <sandeen@redhat.com> 1.42.11-1
424 - New upstream release
425
426 * Tue Jul 01 2014 Dan Horák <dan@danny.cz> - 1.42.10-5
427 - Rebuilt for buggy rpm 4.12 alpha -
428   https://lists.fedoraproject.org/pipermail/devel/2014-June/200633.html
429
430 * Mon Jun 30 2014 Dan Horák <dan[at]danny.cz> - 1.42.10-4
431 - Add missing dependency info for quota.c - fixes build on s390(x)
432
433 * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42.10-3
434 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
435
436 * Wed May 21 2014 Eric Sandeen <sandeen@redhat.com> 1.42.10-2
437 - Fix large file handling on 32-bit builds
438
439 * Mon May 19 2014 Eric Sandeen <sandeen@redhat.com> 1.42.10-1
440 - New upstream release
441 - Enable userspace quota
442
443 * Mon Jan 20 2014 Eric Sandeen <sandeen@redhat.com> 1.42.9-2
444 - Fix up Source0 URL
445
446 * Thu Jan 02 2014 Eric Sandeen <sandeen@redhat.com> 1.42.9-1
447 - New upstream release
448 - Re-enable disabled tests for now
449
450 * Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42.8-3
451 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
452
453 * Mon Jul 22 2013 Eric Sandeen <sandeen@redhat.com> 1.42.8-2
454 - Interpackage dependencies should be for same arch
455 - Remove newly added but failing resize2fs tests for now
456
457 * Wed Jun 26 2013 Eric Sandeen <sandeen@redhat.com> 1.42.8-1
458 - New upstream release
459
460 * Tue Jan 29 2013 Eric Sandeen <sandeen@redhat.com> 1.42.7-2
461 - Tighten up inter-package dependencies
462
463 * Tue Jan 22 2013 Eric Sandeen <sandeen@redhat.com> 1.42.7-1
464 - New upstream release
465
466 * Tue Oct 02 2012 Eric Sandeen <sandeen@redhat.com> 1.42.6-2
467 - Switch back to gzipped tarball to make sf.net source URL correct
468
469 * Tue Oct 02 2012 Eric Sandeen <sandeen@redhat.com> 1.42.6-1
470 - New upstream release
471
472 * Thu Aug 16 2012 Eric Sandeen <sandeen@redhat.com> 1.42.5-2
473 - Add explicit library deps to e2fsprogs (#848805)
474
475 * Mon Jul 30 2012 Eric Sandeen <sandeen@redhat.com> 1.42.5-1
476 - New upstream release
477
478 * Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42.4-2
479 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
480
481 * Tue Jun 12 2012 Eric Sandeen <sandeen@redhat.com> 1.42.4-1
482 - New upstream release
483
484 * Thu May 31 2012 Eric Sandeen <sandeen@redhat.com> 1.42.3-2
485 - Fixes for > 16T filesystems
486
487 * Mon May 14 2012 Eric Sandeen <sandeen@redhat.com> 1.42.3-1
488 - New upstream release
489
490 * Sun Apr 22 2012 Eric Sandeen <sandeen@@redhat.com> 1.42.2-6
491 - Add missing [options] tag to e2fsck.conf
492
493 * Fri Apr 20 2012 Eric Sandeen <sandeen@@redhat.com> 1.42.2-5
494 - Add broken system clock config to e2fsck.conf to let boot
495   continue even if system clock very wrong.
496
497 * Mon Apr 09 2012 Eric Sandeen <sandeen@@redhat.com> 1.42.2-4
498 - Handle 32-bit bitmaps in new find_first_zero functions
499
500 * Fri Mar 30 2012 Richard W.M. Jones <rjones@redhat.com> 1.42.2-3
501 - Rebuild against new RPM (RHBZ#808250).
502
503 * Wed Mar 28 2012 Eric Sandeen <sandeen@redhat.com> 1.42.2-2
504 - Move files out of /sbin and /lib into /usr/...
505
506 * Tue Mar 27 2012 Eric Sandeen <sandeen@redhat.com> 1.42.2-1
507 - New upstream release
508
509 * Mon Feb 20 2012 Eric Sandeen <sandeen@redhat.com> 1.42.1-1
510 - New upstream release
511
512 * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.42-2
513 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
514
515 * Tue Nov 29 2011 Eric Sandeen <sandeen@redhat.com> 1.42-1
516 - New upstream point release
517
518 * Mon Nov 21 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.9.WIP.1120
519 - Build the right tarball for 1.42-WIP-1120
520
521 * Mon Nov 21 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.8.WIP.1120
522 - New upstream snapshot release
523
524 * Thu Nov 10 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.7.WIP.1016
525 - Several mmp-related fixes
526
527 * Tue Nov 08 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.6.WIP.1016
528 - Fix e2fsck / make check on big endian arch
529
530 * Mon Oct 17 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.5.WIP.1016
531 - New upstream snapshot release
532
533 * Mon Oct 10 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.4.WIP.2011.1009
534 - New upstream snapshot release
535
536 * Mon Sep 26 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.3.WIP.0925
537 - New upstream snapshot release
538
539 * Tue Aug 09 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.2.WIP.0702
540 - Fix use of uninitialized memory via ext2fs_copy_generic_bmap()
541
542 * Tue Aug 09 2011 Eric Sandeen <sandeen@redhat.com> 1.42-0.1.WIP.0702
543 - Test release for >16T support 
544
545 * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.41.14-2
546 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
547
548 * Thu Dec 23 2010 Eric Sandeen <sandeen@redhat.com> 1.41.14-1
549 - New upstream release
550
551 * Wed Dec 22 2010 Dan Horák <dan[at]danny.cz> 1.41.13-2
552 - Add upstream fix for big-endian machines
553
554 * Mon Dec 20 2010 Eric Sandeen <sandeen@redhat.com> 1.41.13-1
555 - New upstream release
556
557 * Tue Dec 07 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-7
558 - Fix up UTF-8 formatting in e2fsck output (#655227)
559
560 * Wed Oct 06 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-6
561 - Install e4defrag for testing
562
563 * Tue Jul 13 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-5
564 - Relax fsck requirements for resize2fs -P
565
566 * Mon Jul 12 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-4
567 - Add COPYING file to the static subpackage
568
569 * Wed Jun 02 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-3
570 - Reinstate static libs in dedicated package (#596377)
571
572 * Wed May 19 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-2
573 - Fix fsck thinko in 1.41.12 release
574
575 * Mon May 17 2010 Eric Sandeen <sandeen@redhat.com> 1.41.12-1
576 - New upstream version
577
578 * Mon Mar 15 2010 Eric Sandeen <sandeen@redhat.com> 1.41.11-1
579 - New upstream version
580
581 * Mon Mar 01 2010 Eric Sandeen <sandeen@redhat.com> 1.41.10-5
582 - Don't ask for confirmation of misaligned mkfs with -F (#569021)
583
584 * Tue Feb 23 2010 Eric Sandeen <sandeen@redhat.com> 1.41.10-4
585 - Fix for e2fsck -fD corruption
586
587 * Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 1.41.10-3
588 - And drop virtual provides for static libs
589
590 * Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 1.41.10-2
591 - Drop static libs (#545144)
592
593 * Wed Feb 10 2010 Eric Sandeen <sandeen@redhat.com> 1.41.10-1
594 - New upstream version
595
596 * Sun Feb 07 2010 Eric Sandeen <sandeen@redhat.com> 1.41.9-10
597 - Upstream version of resize2fs array fix, original was wrong
598
599 * Sat Jan 23 2010 Eric Sandeen <sandeen@redhat.com> 1.41.9-9
600 - Fix up stray output & re-enable make check
601 - Fix dlopen issues for newer libreadline
602 - Fix access beyond end of array in resize2fs
603
604 * Tue Nov 10 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-8
605 - Fix up topology patch to build w/ new util-linux-ng
606 - Fix endian swapping of backup journal blocks in sb
607
608 * Tue Nov 10 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-7
609 - Re-enable "make check" during build
610
611 * Wed Oct 28 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-6
612 - Add support for block discard (TRIM) at mkfs time
613 - Add support for new blkid topology awareness
614
615 * Mon Oct 19 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-5
616 - Allow superblock timestamp differences up to 24h (#522969)
617
618 * Tue Oct 06 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-4
619 - Fix install with --excludedocs (#515987)
620
621 * Mon Sep 14 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-3
622 - Drop defrag bits for now, not ready yet.
623
624 * Thu Sep 10 2009 Josef Bacik <josef@toxicpanda.com> 1.41.9-2
625 - Fix resize -m bug with flexbg (#519131)
626
627 * Sun Aug 23 2009 Eric Sandeen <sandeen@redhat.com> 1.41.9-1
628 - New upstream release
629
630 * Thu Aug 06 2009 Eric Sandeen <sandeen@redhat.com> 1.41.8-6
631 - Fix filefrag in fallback case
632 - Add e2freefrag & e4defrag (experimental)
633
634 * Sun Jul 26 2009 Karel Zak <kzak@redhat.com> 1.41.8-5
635 - disable fsck (replaced by util-linux-ng)
636
637 * Sat Jul 25 2009 Karel Zak <kzak@redhat.com> 1.41.8-4
638 - disable libuuid and uuidd (replaced by util-linux-ng)
639
640 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.41.8-3
641 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
642
643 * Fri Jul 17  2009 Eric Sandeen <sandeen@redhat.com> 1.41.8-2
644 - Address some package review concerns (#225714)
645
646 * Sun Jul 12 2009 Eric Sandeen <sandeen@redhat.com> 1.41.8-1
647 - New upstream version, several resize fixes.
648
649 * Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 1.41.7-1
650 - New upstream version
651
652 * Fri Jun 26 2009 Eric Sandeen <sandeen@redhat.com> 1.41.6-6
653 - Split out sub-libraries (#225406)
654 - Don't start uuidd by default
655
656 * Thu Jun 18 2009 Eric Sandeen <sandeen@redhat.com> 1.41.6-5
657 - Update journal backup blocks in sb after resize (#505339)
658 - Fix memory leak in extent handling functions
659 - Fix bug in inode writing in extent code, clobbered i_extra_isize etc
660
661 * Mon Jun  8 2009 Karel Zak <kzak@redhat.com> 1.41.6-4
662 - set BuildRequires: libblkid-devel (from util-linux-ng)
663
664 * Mon Jun  8 2009 Karel Zak <kzak@redhat.com> 1.41.6-3
665 - temporary use BuildRequires: e2fsprogs-devel (we cannot install 
666   new util-linux-ng with libblkid to buildroots without new e2fsprogs 
667   without libblkid). 
668
669 * Thu Jun  4 2009 Karel Zak <kzak@redhat.com> 1.41.6-2
670 - disable libblkid (replaced by libblkid from util-linux-ng)
671
672 * Sat May 30 2009 Eric Sandeen <sandeen@redhat.com> 1.41.6-1
673 - New upstream version
674
675 * Fri Apr 24 2009 Eric Sandeen <sandeen@redhat.com> 1.41.5-1
676 - New upstream version
677
678 * Wed Apr 22 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-8
679 - Fix support for external journals
680
681 * Wed Apr 22 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-7
682 - Fix ext4 resize issues (#496982)
683
684 * Sat Apr 11 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-6
685 - ignore differing NEEDS_RECOVERY flag on fsck post-resize (#471925)
686
687 * Thu Feb 26 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-5
688 - fix a couple missed descriptions; obsolete e4fsprogs
689
690 * Thu Feb 26 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-4
691 - Edit summary & description to include ext4 (#487469)
692 - Fix blkid null ptr deref in initrd (#486997)
693
694 * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.41.4-3
695 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
696
697 * Thu Jan 29 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-2
698 - Fix debugfs "stat" segfault if no open fs (#482894)
699 - Fix name of libext2fs info page (#481620)
700
701 * Thu Jan 29 2009 Eric Sandeen <sandeen@redhat.com> 1.41.4-1
702 - New upstream release
703 - Dropped btrfs & resize fixes, upstream now
704
705 * Tue Jan 20 2009 Eric Sandeen <sandeen@redhat.com> 1.41.3-4
706 - resize2fs fixes, esp. for ext4
707
708 * Sat Jan 10 2009 Eric Sandeen <sandeen@redhat.com> 1.41.3-3
709 - Remove conservative "don't change journal location" patch for F11
710 - Add btrfs recognition to blkid
711
712 * Fri Nov 07 2008 Eric Sandeen <sandeen@redhat.com> 1.41.3-2
713 - Bump to revision 2, f10 was behind f9, oops.
714
715 * Mon Oct 13 2008 Eric Sandeen <sandeen@redhat.com> 1.41.3-1
716 - New upstream version (very minor fixes, ext4-related)
717
718 * Thu Oct 02 2008 Eric Sandeen <sandeen@redhat.com> 1.41.2-2
719 - Fix blkid to recognize ext4dev filesystems as ext4-mountable
720
721 * Thu Oct 02 2008 Eric Sandeen <sandeen@redhat.com> 1.41.2-1
722 - New upstream version
723 - Updated default dir hash (half_md4) for better perf & fewer collisions
724 - Fixed ext4 online resizing with flex_bg
725 - ext4 journal now in extents format and in middle of filesystem
726 - fix unreadable e2image files
727 - fix file descriptor leak in libcom_err (#464689)
728
729 * Sat Aug 23 2008 Eric Sandeen <sandeen@redhat.com> 1.41.0-2
730 - Don't check the group checksum when !GDT_CSUM (#459875)
731
732 * Thu Jul 10 2008 Eric Sandeen <sandeen@redhat.com> 1.41.0-1
733 - New upstream version
734 - ext4 capable
735
736 * Mon Jul 07 2008 Eric Sandeen <sandeen@redhat.com> 1.41-0.2.WIP.0707
737 - Fix release macro snafu
738
739 * Mon Jul 07 2008 Eric Sandeen <sandeen@redhat.com> 1.41-0.1.WIP.0707
740 - New upstream snapshot release
741
742 * Fri Jun 20 2008 Eric Sandeen <sandeen@redhat.com> 1.41-0.WIP.0617.1
743 - Fix blkid -g segfault when clearing entries (#452333)
744
745 * Wed Jun 18 2008 Eric Sandeen <sandeen@redhat.com> 1.41-0.WIP.0617
746 - New upstream snapshot release for ext4 capability
747
748 * Wed Jun 04 2008 Eric Sandeen <sandeen@redhat.com> 1.40.10-3
749 - Tidy up multilib hack for non-multilib arches (#446016)
750 - Fix up postun script (#449868)
751
752 * Wed Jun 04 2008 Dennis Gilmore <dennis@ausil.us> 1.40.10-2
753 - setup header support for sparc
754
755 * Fri May 23 2008 Eric Sandeen <esandeen@redhat.com> 1.40.10-1
756 - New upstream version
757 - Fixes unprivileged blkid use problem (#448591)
758
759 * Mon May 12 2008 Eric Sandeen <esandeen@redhat.com> 1.40.9-2
760 - Fix blkid swap recognition on big-endian boxes (#445786)
761
762 * Sun Apr 27 2008 Eric Sandeen <esandeen@redhat.com> 1.40.9-1
763 - New upstream version
764
765 * Fri Mar 14 2008 Eric Sandeen <esandeen@redhat.com> 1.40.8-2
766 - Update ext2fs_swap_inode_full() fix to match upstream
767 - Check more of swapv1 header in blkid detection (#442937)
768
769 * Fri Mar 14 2008 Eric Sandeen <esandeen@redhat.com> 1.40.8-1
770 - New upstream version
771
772 * Mon Mar 03 2008 Eric Sandeen <esandeen@redhat.com> 1.40.7-2
773 - second try at fixing resize2fs vs. large inodes... (#434893)
774
775 * Fri Feb 29 2008 Eric Sandeen <esandeen@redhat.com> 1.40.7-1
776 - New upstream version, special leap-day edition
777 - Fix resize2fs losing inline xattrs when shrinking (#434893)
778   and add patch to fix swap_inode_full in this case
779 - Allow mke2fs & tune2fs to manipulate large_file feature (#258381)
780 - Handle lvm error conditions in libblkid (#433857)
781 - Allow tune2fs to clear the resize_inode feature (#167816)
782 - Teach blkid to detect LVM2 physical volumes (#409321)
783 - Show "mostly printable" xattrs as text in debugfs (#430621)
784 - Trimmed pre-1.38 rpm changelog entries
785
786 * Sun Feb 10 2008 Eric Sandeen <esandeen@redhat.com> 1.40.6-1
787 - New upstream version
788
789 * Fri Feb 08 2008 Eric Sandeen <esandeen@redhat.com> 1.40.5-2
790 - gcc-4.3 rebuild
791
792 * Mon Jan 28 2008 Eric Sandeen <esandeen@redhat.com> 1.40.5-1
793 - New upstream version, drop several now-upstream patches.
794
795 * Thu Jan 24 2008 Eric Sandeen <sandeen@redhat.com> 1.40.4-7
796 - Fix sb flag comparisons properly this time (#428893)
797 - Make 256-byte inodes for the [default] mkfs case.
798   This will facilitate upgrades to ext4 later, and help xattr perf.
799
800 * Wed Jan 23 2008 Eric Sandeen <sandeen@redhat.com> 1.40.4-6
801 - Completely clobber e2fsck.static build.
802
803 * Wed Jan 23 2008 Eric Sandeen <sandeen@redhat.com> 1.40.4-5
804 - Ignore some primary/backup superblock flag differences (#428893)
805 - Teach libblkid about ext4dev.
806
807 * Tue Jan 15 2008 Eric Sandeen <sandeen@redhat.com> 1.40.4-4
808 - Build e2fsck as a dynamically linked binary.
809 - Re-fix uidd manpage default paths.
810
811 * Mon Jan 14 2008 Eric Sandeen <sandeen@redhat.com> 1.40.4-3
812 - New uuidd subpackage, and properly set up uuidd at install.
813
814 * Tue Jan 01 2008 Eric Sandeen <esandeen@redhat.com> 1.40.4-2
815 - Add new uidd files to specfile
816
817 * Tue Jan 01 2008 Eric Sandeen <esandeen@redhat.com> 1.40.4-1
818 - New upstream version, drop several now-upstream patches.
819
820 * Tue Jan 01 2008 Eric Sandeen <esandeen@redhat.com> 1.40.2-15
821 - Drop resize_inode removal patch from tune2fs; ostensibly was
822   for old kernels which could not mount, but seems to be fine.
823 - Drop pottcdate removal patch, and don't rebuild .po files,
824   causes multilib problems and we generally shouldn't rebuild.
825 - Drop multilib patch; wrapper header should take care of this now.
826 - Drop ->open rename, Fedora seems ok with this now.
827
828 * Tue Dec 11 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-14
829 - Fix integer overflows (#414591 / CVE-2007-5497)
830
831 * Tue Dec  4 2007 Stepan Kasal <skasal@redhat.com> 1.40.2-13
832 - The -devel package now requires device-mapper-devel, to match
833   the dependency in blkid.pc (#410791)
834
835 * Tue Nov 27 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-12
836 - Use upstream patch for blkid fat detection, avoids div-by-zero
837   when encountering some BSD partitions (#398281)
838
839 * Tue Oct 23 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-11
840 - Add arm to multilib header wrapper
841
842 * Sat Oct 20 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-10
843 - Make (more) file timestamps match those in tarball for multilib tidiness 
844 - Fix e2fsprogs-libs summary (shared libs not static)
845
846 * Mon Oct 15 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-9
847 - Detect big-endian squashfs filesystems in libblkid (#305151)
848
849 * Tue Oct 02 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-8
850 - Detect squashfs filesystems in libblkid (#305151)
851
852 * Tue Sep 18 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-7
853 - Fix blkid fat probe when there is a real MBR (#290951)
854
855 * Tue Sep 18 2007 Oliver Falk <oliver@linux-kernel.at> 1.40.2-6
856 - Add alpha to the header wrappers 
857
858 * Fri Sep 07 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-5
859 - wrap a couple headers to fix multilib issues (#270441)
860
861 * Wed Aug 29 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-4
862 - add gawk to e2fsprogs-devel Requires, compile_et needs it (#265961)
863
864 * Thu Aug 23 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-3
865 - Update license tags
866 - Fix one open-create caller with no mode
867 - Protect ->open ops from glibc open-create-mode-checker
868 - Fix source URL
869 - Add gawk to BuildRequires
870
871 * Wed Jul 18 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-2
872 - Fix bug in ext2fs_swap_inode_full() on big-endian boxes
873
874 * Tue Jul 17 2007 Eric Sandeen <esandeen@redhat.com> 1.40.2-1
875 - New version 1.40.2
876 - Fix up warning in badblocks
877
878 * Mon Jun 25 2007 Eric Sandeen <esandeen@redhat.com> 1.39-15
879 - Fix up .po files to remove timestamps; multilib issues (#245653)
880
881 * Fri Jun 22 2007 Eric Sandeen <esandeen@redhat.com> 1.39-14
882 - Many coverity-found potential leaks, segfaults, etc (#239354)
883 - Fix debugfs segfaults when no fs open (#208416, #209330)
884 - Avoid recursive loops in logdump due to symlinks in /dev (#210371)
885 - Don't write changes to the backup superblocks by default (#229561)
886 - Correct byteswapping for fast symlinks with xattrs (#232663)
887 - e2fsck: added sanity check for xattr validation (#230193)
888
889 * Wed Jun 20 2007 Eric Sandeen <esandeen@redhat.com> 1.39-13
890 - add dist tag to release field
891
892 * Wed Jun 20 2007 Eric Sandeen <esandeen@redhat.com> 1.39-12
893 - add LUKS support to libblkid (#242421)
894
895 * Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 1.39-11
896 - fix post/preun requirements
897 - use smp flags
898
899 * Mon Feb 05 2007 Alasdair Kergon <agk@redhat.com> - 1.39-10
900 - Add build dependency on new device-mapper-devel package.
901
902 * Mon Dec 25 2006 Thomas Woerner <twoerner@redhat.com> - 1.39-9
903 - build fixes for new automake 1.10 (#220715)
904
905 * Mon Dec 18 2006 Thomas Woerner <twoerner@redhat.com> - 1.39-8
906 - make uuid_generate_time generate unique uuids (#218606)
907
908 * Wed Sep 20 2006 Jarod Wilson <jwilson@redhat.com> - 1.39-7
909 - 32-bit 16T fixups from esandeen (#202807)
910 - Update summaries and descriptions
911
912 * Sun Sep 17 2006 Karel Zak <kzak@redhat.com> - 1.39-6
913 - Fix problem with empty FAT label (#206656)
914
915 * Tue Sep  5 2006 Peter Jones <pjones@redhat.com> - 1.39-5
916 - Fix memory leak in device probing.
917
918 * Mon Jul 24 2006 Thomas Woerner <twoerner@redhat.com> - 1.39-4
919 - fixed multilib devel conflicts (#192665)
920
921 * Thu Jul 20 2006 Bill Nottingham <notting@redhat.com> - 1.39-3
922 - prevent libblkid returning /dev/dm-X
923
924 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.39-2.1
925 - rebuild
926
927 * Mon Jul 10 2006 Karel Zak <kzak@redhat.com> - 1.39-2
928 - add GFS abd GFS2 support to libblkid
929
930 * Thu Jul  6 2006 Thomas Woerner <twoerner@redhat.com> - 1.39-1
931 - new version 1.39
932 - dropped ext2online, because resize2fs is now able to do online resize
933 - spec file cleanup
934 - enabled checks for build
935
936 * Tue Jun 13 2006 Bill Nottingham <notting@redhat.com> - 1.38-15
937 - prevent libblkid returning /dev/dm-X
938 - fix build
939
940 * Tue Mar 21 2006 Karel Zak <kzak@redhat.com> - 1.38-14
941 - prevent error messages to stderr caused by libblkid calling libdevmapper
942
943 * Mon Mar 13 2006 Karel Zak <kzak@redhat.com>  - 1.38-13
944 - used upstream version of the blkid-epoch patch (by Theodore Tso, #182188)
945
946 * Wed Mar  8 2006 Peter Jones <pjones@redhat.com> - 1.38-12
947 - Move /etc/blkid.tab to /etc/blkid/blkid.tab
948
949 * Tue Mar  7 2006 David Cantrell <dcantrell@redhat.com> - 1.38-11
950 - BuildRequires pkgconfig
951
952 * Tue Mar  7 2006 David Cantrell <dcantrell@redhat.com> - 1.38-10
953 - Disable /etc/blkid.tab caching if time is set before epoch (#182188)
954
955 * Fri Feb 24 2006 Peter Jones <pjones@redhat.com> - 1.38-9
956 - _don't_ handle selinux context on blkid.tab, dwalsh says this is a no-no.
957
958 * Wed Feb 22 2006 Peter Jones <pjones@redhat.com> - 1.38-8
959 - handle selinux context on blkid.tab
960
961 * Mon Feb 20 2006 Karsten Hopp <karsten@redhat.de> 1.38-7
962 - BuildRequires: gettext-devel
963
964 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.38-6.2
965 - bump again for double-long bug on ppc(64)
966
967 * Tue Feb  7 2006 Jesse Keating <jkeating@redhat.com> - 1.38-6.1
968 - rebuilt for new gcc4.1 snapshot and glibc changes
969
970 * Wed Jan 11 2006 Karel Zak <kzak@redhat.com> 1.38-6
971 - cleanup device-mapper patch
972 - use pkg-config for device-mapper
973
974 * Mon Jan  9 2006 Peter Jones <pjones@redhat.com> 1.38-5
975 - fix some more minor logic errors in dm probing
976
977 * Wed Jan  4 2006 Peter Jones <pjones@redhat.com> 1.38-4
978 - fix a logic error in dm probing
979 - add priority group for dm devices, so they'll be preferred
980
981 * Tue Jan  3 2006 Peter Jones <pjones@redhat.com> 1.38-3
982 - added support for device-mapper devices
983
984 * Fri Dec  9 2005 Jesse Keating <jkeating@redhat.com>
985 - rebuilt
986
987 * Thu Nov 10 2005 Thomas Woerner <twoerner@redhat.com> 1.38-2.1
988 - fixed file conflicts between 32bit and 64bit packages (#168815)
989 - fixed mklost+found crashes with buffer overflow (#157773)
990   Thanks to Arjan van de Ven for the patch
991
992 * Wed Nov  9 2005 Thomas Woerner <twoerner@redhat.com> 1.38-2
993 - splitted up libs from main package, into a new e2fsprogs-libs package
994 - fixed requires and prereqs
995
996 * Thu Sep  8 2005 Thomas Woerner <twoerner@redhat.com> 1.38-1
997 - new version 1.38
998 - Close File descriptor for unregognized devices (#159878)
999   Thanks to David Milburn for the patch.
1000   Merged from RHEL-4
1001 - enable tune2fs to set and clear feature resize_inode (#167816)
1002 - removed outdated information from ext2online man page (#164383)
1003