492d37f
# Pass --with externalfuse to compile against system fuse lib
492d37f
# Default is internal fuse-lite.
64838cd
%global with_externalfuse %{?_with_externalfuse:1}%{!?_with_externalfuse:0}
492d37f
ee5ae86
# For release candidates
b6025c8
# %%global subver -RC
ee5ae86
eb6bf1c
%global oldrhel 0
eb6bf1c
eb6bf1c
%if 0%{?rhel}
eb6bf1c
%if 0%{?rhel} < 7
eb6bf1c
%global oldrhel 1
eb6bf1c
%endif
eb6bf1c
%endif
eb6bf1c
e055531
Name:		ntfs-3g
08ea978
Summary:	Linux NTFS userspace driver
24ce451
Version:	2017.3.23
b581507
Release:	8%{?dist}
dcadff1
License:	GPLv2+
e055531
Group:		System Environment/Base
70a74aa
Source0:	http://tuxera.com/opensource/%%{name}_ntfsprogs-%%{version}%%{?subver}.tgz
eb6bf1c
%if %{oldrhel}
eb6bf1c
Source1:       20-ntfs-config-write-policy.fdi
eb6bf1c
%endif
a4acea1
URL:		http://www.ntfs-3g.org/
492d37f
%if %{with_externalfuse}
e055531
BuildRequires:	fuse-devel
e055531
Requires:	fuse
492d37f
%endif
2e0df05
BuildRequires:	libtool, libattr-devel
c5df3f1
# ntfsprogs BuildRequires
c5df3f1
BuildRequires:  libconfig-devel, libgcrypt-devel, gnutls-devel, libuuid-devel
1835769
Epoch:		2
eaa8478
Provides:	ntfsprogs-fuse = %{epoch}:%{version}-%{release}
eb5255c
Obsoletes:	ntfsprogs-fuse
eaa8478
Provides:	fuse-ntfs-3g = %{epoch}:%{version}-%{release}
8bfe9bc
Patch0:		ntfs-3g_ntfsprogs-2011.10.9-RC-ntfsck-unsupported-return-0.patch
70a74aa
Patch1:		check-mftmirr.patch
016ea90
Patch2:		ntfs-3g-big-sectors.patch
b581507
# Fix for ntfsclone crash.
b581507
# Discussed with upstream developer but not upstream yet, see:
b581507
# https://bugzilla.redhat.com/show_bug.cgi?id=1601146#c4
b581507
Patch3:         ntfsclone-full-clusters-bz1601146.patch
e055531
e055531
%description
ee5ae86
NTFS-3G is a stable, open source, GPL licensed, POSIX, read/write NTFS 
ee5ae86
driver for Linux and many other operating systems. It provides safe 
ee5ae86
handling of the Windows XP, Windows Server 2003, Windows 2000, Windows 
ee5ae86
Vista, Windows Server 2008 and Windows 7 NTFS file systems. NTFS-3G can 
ee5ae86
create, remove, rename, move files, directories, hard links, and streams; 
ee5ae86
it can read and write normal and transparently compressed files, including 
ee5ae86
streams and sparse files; it can handle special files like symbolic links, 
ee5ae86
devices, and FIFOs, ACL, extended attributes; moreover it provides full 
ee5ae86
file access right and ownership support.
e055531
e055531
%package devel
e055531
Summary:	Development files and libraries for ntfs-3g
e055531
Group:		Development/Libraries
64838cd
Requires:	%{name}%{?_isa} = %{epoch}:%{version}-%{release}
ac237ca
Requires:	pkgconfig
c5df3f1
Provides:	ntfsprogs-devel = %{epoch}:%{version}-%{release}
02572cd
# ntfsprogs-2.0.0-17 was never built. 2.0.0-16 was the last build for that 
02572cd
# standalone package.
02572cd
Obsoletes:	ntfsprogs-devel < 2.0.0-17
e055531
e055531
%description devel
08ea978
Headers and libraries for developing applications that use ntfs-3g
e055531
functionality.
e055531
c5df3f1
%package -n ntfsprogs
c5df3f1
Summary:	NTFS filesystem libraries and utilities
c5df3f1
Group:		System Environment/Base
c5df3f1
# We don't really provide this. This code is dead and buried now.
c5df3f1
Provides:	ntfsprogs-gnomevfs = %{epoch}:%{version}-%{release}
c5df3f1
Obsoletes:	ntfsprogs-gnomevfs
07688d0
# Needed to fix multilib issue
02572cd
# ntfsprogs-2.0.0-17 was never built. 2.0.0-16 was the last build for that 
02572cd
# standalone package.
02572cd
Obsoletes:	ntfsprogs < 2.0.0-17
c5df3f1
c5df3f1
%description -n ntfsprogs
c5df3f1
The ntfsprogs package currently consists of a library and utilities such as 
c5df3f1
mkntfs, ntfscat, ntfsls, ntfsresize, and ntfsundelete (for a full list of 
c5df3f1
included utilities see man 8 ntfsprogs after installation).
c5df3f1
e055531
%prep
c5df3f1
%setup -q -n %{name}_ntfsprogs-%{version}%{?subver}
8bfe9bc
%patch0 -p1 -b .unsupported
70a74aa
%patch1 -p0 -b .check-mftmirr
016ea90
%patch2 -p0 -b .big-sectors
b581507
%patch3 -p0 -b .ntfsclone
f53f66f
e055531
%build
492d37f
CFLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64"
492d37f
%configure \
492d37f
	--disable-static \
492d37f
	--disable-ldconfig \
492d37f
%if 0%{?_with_externalfuse:1}
492d37f
	--with-fuse=external \
492d37f
%endif
492d37f
	--exec-prefix=/ \
eb6bf1c
%if %{oldrhel}
eb6bf1c
	--bindir=/bin \
eb6bf1c
	--sbindir=/sbin \
eb6bf1c
	--libdir=/%{_lib} \
eb6bf1c
%endif
ce71a3b
	--enable-posix-acls \
ce71a3b
	--enable-xattr-mappings \
c5df3f1
	--enable-crypto \
eb6bf1c
	--enable-extras \
eb6bf1c
	--enable-quarantined
0105259
make %{?_smp_mflags} LIBTOOL=%{_bindir}/libtool
e055531
e055531
%install
f6f4e0d
make LIBTOOL=%{_bindir}/libtool DESTDIR=%{buildroot} install
eb6bf1c
%if %{oldrhel}
eb6bf1c
rm -rf %{buildroot}/%{_lib}/*.la
eb6bf1c
rm -rf %{buildroot}/%{_lib}/*.a
eb6bf1c
%else
Kay Sievers 816b797
rm -rf %{buildroot}%{_libdir}/*.la
Kay Sievers 816b797
rm -rf %{buildroot}%{_libdir}/*.a
eb6bf1c
%endif
e055531
eb6bf1c
%if %{oldrhel}
eb6bf1c
rm -rf %{buildroot}/sbin/mount.ntfs-3g
eb6bf1c
cp -a %{buildroot}/bin/ntfs-3g %{buildroot}/sbin/mount.ntfs-3g
eb6bf1c
%else
Kay Sievers 816b797
rm -rf %{buildroot}/%{_sbindir}/mount.ntfs-3g
Kay Sievers 816b797
cp -a %{buildroot}/%{_bindir}/ntfs-3g %{buildroot}/%{_sbindir}/mount.ntfs-3g
eb6bf1c
%endif
e055531
eb5255c
# Actually make some symlinks for simplicity...
eb5255c
# ... since we're obsoleting ntfsprogs-fuse
eb6bf1c
%if %{oldrhel}
eb6bf1c
pushd %{buildroot}/bin
eb6bf1c
ln -s ntfs-3g ntfsmount
eb6bf1c
popd
eb6bf1c
pushd %{buildroot}/sbin
eb6bf1c
%else
Kay Sievers 816b797
pushd %{buildroot}/%{_bindir}
eb5255c
ln -s ntfs-3g ntfsmount
c5df3f1
popd
Kay Sievers 816b797
pushd %{buildroot}/%{_sbindir}
eb6bf1c
%endif
eb5255c
ln -s mount.ntfs-3g mount.ntfs-fuse
b2eb04c
# And since there is no other package in Fedora that provides an ntfs 
b2eb04c
# mount...
b2eb04c
ln -s mount.ntfs-3g mount.ntfs
41564fb
# Need this for fsck to find it
7478d5a
ln -s ../bin/ntfsck fsck.ntfs
c5df3f1
popd
eb6bf1c
eb6bf1c
%if %{oldrhel}
eb6bf1c
# Compat symlinks
eb6bf1c
mkdir -p %{buildroot}%{_bindir}
eb6bf1c
pushd %{buildroot}%{_bindir}
eb6bf1c
ln -s /bin/ntfs-3g ntfs-3g
eb6bf1c
ln -s /bin/ntfsmount ntfsmount
eb6bf1c
popd
eb6bf1c
eb6bf1c
# Put the .pc file in the right place.
eb6bf1c
mkdir -p %{buildroot}%{_libdir}/pkgconfig/
eb6bf1c
mv %{buildroot}/%{_lib}/pkgconfig/libntfs-3g.pc %{buildroot}%{_libdir}/pkgconfig/
eb6bf1c
%else
Kay Sievers 816b797
mv %{buildroot}/sbin/* %{buildroot}/%{_sbindir}
Kay Sievers 816b797
rmdir %{buildroot}/sbin
eb6bf1c
%endif
492d37f
492d37f
# We get this on our own, thanks.
c5df3f1
rm -rf %{buildroot}%{_defaultdocdir}/%{name}/README
cc3907a
eb6bf1c
%if %{oldrhel}
eb6bf1c
mkdir -p %{buildroot}%{_datadir}/hal/fdi/policy/10osvendor/
eb6bf1c
cp -a %{SOURCE1} %{buildroot}%{_datadir}/hal/fdi/policy/10osvendor/
eb6bf1c
%endif
eb6bf1c
bfcf9b0
%ldconfig_scriptlets
e055531
e055531
%files
64838cd
%doc AUTHORS ChangeLog CREDITS NEWS README
64838cd
%if %{oldrhel}
64838cd
%doc COPYING
64838cd
%else
64838cd
%license COPYING
64838cd
%endif
eb6bf1c
%if %{oldrhel}
eb6bf1c
/sbin/mount.ntfs
eb6bf1c
/sbin/mount.ntfs-3g
eb6bf1c
/sbin/mount.ntfs-fuse
eb6bf1c
/sbin/mount.lowntfs-3g
eb6bf1c
/bin/ntfs-3g
eb6bf1c
/bin/ntfsmount
98efcc9
#compat symlinks
98efcc9
%{_bindir}/ntfs-3g
98efcc9
%{_bindir}/ntfsmount
eb6bf1c
%else
Kay Sievers 816b797
%{_sbindir}/mount.ntfs
eb6bf1c
%{_sbindir}/mount.ntfs-3g
Kay Sievers 816b797
%{_sbindir}/mount.ntfs-fuse
Kay Sievers 816b797
%{_sbindir}/mount.lowntfs-3g
e055531
%{_bindir}/ntfs-3g
eb5255c
%{_bindir}/ntfsmount
eb6bf1c
%endif
eb6bf1c
%if %{oldrhel}
eb6bf1c
/bin/ntfs-3g.probe
eb6bf1c
/bin/lowntfs-3g
eb6bf1c
%else
Kay Sievers 816b797
%{_bindir}/ntfs-3g.probe
Kay Sievers 816b797
%{_bindir}/lowntfs-3g
eb6bf1c
%endif
eb6bf1c
%if %{oldrhel}
eb6bf1c
/%{_lib}/libntfs-3g.so.*
eb6bf1c
%else
Kay Sievers 816b797
%{_libdir}/libntfs-3g.so.*
eb6bf1c
%endif
c5df3f1
%{_mandir}/man8/mount.lowntfs-3g.*
c5df3f1
%{_mandir}/man8/mount.ntfs-3g.*
c5df3f1
%{_mandir}/man8/ntfs-3g*
eb6bf1c
%if %{oldrhel}
eb6bf1c
%{_datadir}/hal/fdi/policy/10osvendor/20-ntfs-config-write-policy.fdi
eb6bf1c
%endif
e055531
e055531
%files devel
e055531
%{_includedir}/ntfs-3g/
eb6bf1c
%if %{oldrhel}
eb6bf1c
/%{_lib}/libntfs-3g.so
eb6bf1c
%else
Kay Sievers 816b797
%{_libdir}/libntfs-3g.so
eb6bf1c
%endif
492d37f
%{_libdir}/pkgconfig/libntfs-3g.pc
e055531
c5df3f1
%files -n ntfsprogs
64838cd
%doc AUTHORS CREDITS ChangeLog NEWS README
eb6bf1c
%if %{oldrhel}
64838cd
%doc COPYING
eb6bf1c
/bin/ntfscat
eb6bf1c
/bin/ntfscluster
eb6bf1c
/bin/ntfscmp
eb6bf1c
/bin/ntfsfix
eb6bf1c
/bin/ntfsinfo
eb6bf1c
/bin/ntfsls
24ce451
/bin/ntfssecaudit
24ce451
/bin/ntfsusermap
eb6bf1c
%else
64838cd
%license COPYING
Kay Sievers 816b797
%{_bindir}/ntfscat
Kay Sievers 816b797
%{_bindir}/ntfscluster
Kay Sievers 816b797
%{_bindir}/ntfscmp
Kay Sievers 816b797
%{_bindir}/ntfsfix
Kay Sievers 816b797
%{_bindir}/ntfsinfo
Kay Sievers 816b797
%{_bindir}/ntfsls
24ce451
%{_bindir}/ntfssecaudit
24ce451
%{_bindir}/ntfsusermap
eb6bf1c
%endif
c5df3f1
# Extras
eb6bf1c
%if %{oldrhel}
eb6bf1c
/bin/ntfsck
eb6bf1c
/bin/ntfsdecrypt
eb6bf1c
/bin/ntfsdump_logfile
eb6bf1c
/bin/ntfsfallocate
eb6bf1c
/bin/ntfsmftalloc
eb6bf1c
/bin/ntfsmove
dfa833e
/bin/ntfsrecover
eb6bf1c
/bin/ntfstruncate
eb6bf1c
/bin/ntfswipe
eb6bf1c
/sbin/fsck.ntfs
eb6bf1c
/sbin/mkfs.ntfs
eb6bf1c
/sbin/mkntfs
eb6bf1c
/sbin/ntfsclone
eb6bf1c
/sbin/ntfscp
eb6bf1c
/sbin/ntfslabel
eb6bf1c
/sbin/ntfsresize
eb6bf1c
/sbin/ntfsundelete
eb6bf1c
%else
Kay Sievers 816b797
%{_bindir}/ntfsck
Kay Sievers 816b797
%{_bindir}/ntfsdecrypt
Kay Sievers 816b797
%{_bindir}/ntfsdump_logfile
eb6bf1c
%{_bindir}/ntfsfallocate
Kay Sievers 816b797
%{_bindir}/ntfsmftalloc
Kay Sievers 816b797
%{_bindir}/ntfsmove
dfa833e
%{_bindir}/ntfsrecover
Kay Sievers 816b797
%{_bindir}/ntfstruncate
Kay Sievers 816b797
%{_bindir}/ntfswipe
Kay Sievers 816b797
%{_sbindir}/fsck.ntfs
Kay Sievers 816b797
%{_sbindir}/mkfs.ntfs
Kay Sievers 816b797
%{_sbindir}/mkntfs
Kay Sievers 816b797
%{_sbindir}/ntfsclone
Kay Sievers 816b797
%{_sbindir}/ntfscp
Kay Sievers 816b797
%{_sbindir}/ntfslabel
Kay Sievers 816b797
%{_sbindir}/ntfsresize
Kay Sievers 816b797
%{_sbindir}/ntfsundelete
eb6bf1c
%endif
c5df3f1
%{_mandir}/man8/mkntfs.8*
c5df3f1
%{_mandir}/man8/mkfs.ntfs.8*
c5df3f1
%{_mandir}/man8/ntfs[^m][^o]*.8*
82b0fc2
%exclude %{_mandir}/man8/ntfs-3g*
c5df3f1
e055531
%changelog
b581507
* Mon Jul 16 2018 Richard W.M. Jones <rjones@redhat.com> - 2:2017.3.23-8
b581507
- Fix for ntfsclone crash (RHBZ#1601146).
b581507
9812834
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2017.3.23-7
9812834
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
9812834
016ea90
* Mon May 21 2018 Tom Callaway <spot@fedoraproject.org> - 2:2017.3.23-6
016ea90
- apply updated big sectors patch
016ea90
e360e5f
* Mon May  7 2018 Tom Callaway <spot@fedoraproject.org>
016ea90
- big sectors patch from Jean-Pierre André
016ea90
9144747
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2017.3.23-5
9144747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
9144747
67f1ef5
* Thu Jan  4 2018 Tom Callaway <spot@fedoraproject.org> - 2:2017.3.23-4
70a74aa
- use upstream tarball again (non-free file is removed)
70a74aa
- remove unused CVE-2015-3202 patch
70a74aa
70a74aa
* Wed Dec 20 2017 Tom Callaway <spot@fedoraproject.org> - 2:2017.3.23-3.1
70a74aa
- test build with patch from Jean-Pierre André to fix the $MFT/$MFTMirr mismatch
70a74aa
9e4dd86
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2017.3.23-3
9e4dd86
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
9e4dd86
bce0f51
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2017.3.23-2
bce0f51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
bce0f51
24ce451
* Tue May 30 2017 Tom Callaway <spot@fedoraproject.org> - 2:2017.3.23-1
24ce451
- update to 2017.3.23
24ce451
41a3ae8
* Wed Feb  8 2017 Tom Callaway <spot@fedoraproject.org> - 2:2016.2.22-4
41a3ae8
- apply patch for CVE-2017-0358
41a3ae8
- NOTE: Fedora does not setuid ntfs-3g, so it should not be vulnerable 
41a3ae8
  but some users might make this change so we applied the patch anyways
41a3ae8
ce71a3b
* Wed Nov  2 2016 Tom Callaway <spot@fedoraproject.org> - 2:2016.2.22-3
ce71a3b
- enable posix ACLS
ce71a3b
- enable xattr mappings
ce71a3b
f53f66f
* Tue Aug  9 2016 Tom Callaway <spot@fedoraproject.org> - 2:2016.2.22-2
f53f66f
- replace non-free ntfsprogs/boot.c with boot-gpl.c (resolves bz1364710)
f53f66f
dfa833e
* Wed Mar 23 2016 Tom Callaway <spot@fedoraproject.org> - 2:2016.2.22-1
dfa833e
- update to 2016.2.22
dfa833e
2f6cc2e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:2015.3.14-5
2f6cc2e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2f6cc2e
64838cd
* Tue Jan 19 2016 Tom Callaway <spot@fedoraproject.org> - 2:2015.3.14-4
64838cd
- spec file cleanups
64838cd
d738650
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2015.3.14-3
d738650
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d738650
98efcc9
* Fri May 22 2015 Tom Callaway <spot@fedoraproject.org> 2:2015.3.14-2
98efcc9
- fix CVE-2015-3202
98efcc9
eb6bf1c
* Tue Apr  7 2015 Tom Callaway <spot@fedoraproject.org> 2:2015.3.14-1
eb6bf1c
- update to 2015.3.14
eb6bf1c
6ab72ba
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2:2014.2.15-8
6ab72ba
- Rebuilt for Fedora 23 Change
6ab72ba
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
6ab72ba
ad0fdcf
* Tue Jan 13 2015 Tom Callaway <spot@fedoraproject.org> - 2:2014.2.15-7
ad0fdcf
- add patch to ignore -s option
ad0fdcf
164ad01
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2014.2.15-6
164ad01
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
164ad01
b3c1080
* Tue Aug  5 2014 Richard W.M. Jones <rjones@redhat.com> - 2:2014.2.15-5
b3c1080
- Add upstream patch to fix fstrim so it works on partitions as well
b3c1080
  as whole disks.
b3c1080
03ba43f
* Thu Jul 31 2014 Richard W.M. Jones <rjones@redhat.com> - 2:2014.2.15-4
03ba43f
- Upstream patches which add fstrim support.
03ba43f
6242a63
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2014.2.15-3
6242a63
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6242a63
2d4e8b8
* Thu Apr 24 2014 Tomáš Mráz <tmraz@redhat.com> - 2:2014.2.15-2
2d4e8b8
- Rebuild for new libgcrypt
2d4e8b8
e3c29d8
* Wed Feb 26 2014 Tom Callaway <spot@fedoraproject.org> 2:2014.2.15-1
e3c29d8
- update to 2014.2.15
e3c29d8
2dd68b1
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2013.1.13-6
2dd68b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2dd68b1
8a4f93d
* Tue May 28 2013 Tom Callaway <spot@fedoraproject.org> - 2:2013.1.13-5
8a4f93d
- fix bug preventing reads on compressed files on windows 8 partitions (bz967301)
8a4f93d
e3e7410
* Mon May  6 2013 Tom Callaway <spot@fedoraproject.org> - 2:2013.1.13-4
e3e7410
- apply fixes from upstream for issue with 4K sector drives (bz951603) 
e3e7410
  and truncated check for Interix types on a 32-bit CPU (bz958681)
e3e7410
82b0fc2
* Thu Feb  7 2013 Tom Callaway <spot@fedoraproject.org> - 2:2013.1.13-3
82b0fc2
- drop redundant manpages from ntfsprogs subpackage
82b0fc2
f5bd38f
* Thu Jan 31 2013 Tom Callaway <spot@fedoraproject.org> - 2:2013.1.13-2
f5bd38f
- drop hal files, since hal is very dead
f5bd38f
fd99d15
* Tue Jan 22 2013 Richard W.M. Jones <rjones@redhat.com> - 2:2013.1.13-1
fd99d15
- New upstream version 2013.1.13 (RHBZ#902729).
fd99d15
- Drop ntfs-3g-junction-point-fix.patch (now upstream).
fd99d15
- Drop Windows 8 patches x 2 (both now upstream).
fd99d15
- Remove obsolete patches from Fedora git repository.
fd99d15
- Fix .gitignore file.
fd99d15
02572cd
* Mon Oct 15 2012 Tom Callaway <spot@fedoraproject.org> - 2:2012.1.15-5
02572cd
- Limit obsoletes to last ntfsprogs-* versions ( < 2.0.0-17 ) to
02572cd
  minimize yum churn (where it would obsolete itself on every upgrade)
02572cd
  BZ#863641
02572cd
bc0a420
* Thu Oct  4 2012 Tom Callaway <spot@fedoraproject.org> - 2:2012.1.15-4
bc0a420
- add patches from upstream git to add a level of safety in the case where windows 8
bc0a420
  leaves the NTFS filesystem in an unsafe state and Linux access could result in data loss.
bc0a420
  Basically, with these patches, Linux will refuse to mount the ntfs partition. For the details
bc0a420
  refer to: https://bugzilla.redhat.com/show_bug.cgi?id=859373
bc0a420
8fb7f2d
* Sun Aug 19 2012 Tom Callaway <spot@fedoraproject.org> - 2:2012.1.15-3
8fb7f2d
- apply upstream fix for junction points (bz849332)
8fb7f2d
056b0e3
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2012.1.15-2
056b0e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
056b0e3
b6025c8
* Fri Feb 10 2012 Tom Callaway <spot@fedoraproject.org> 2:2012.1.15-1
b6025c8
- update to 2012.1.15
b6025c8
Kay Sievers 816b797
* Wed Feb  1 2012 Kay Sievers <kay@redhat.com> 2:2011.10.9-3
Kay Sievers 816b797
- install everything in /usr
Kay Sievers 816b797
  https://fedoraproject.org/wiki/Features/UsrMove
Kay Sievers 816b797
218250e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2011.10.9-2
218250e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
218250e
8bfe9bc
* Tue Oct 11 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.10.9-1
8bfe9bc
- 2011.10.9-RC
8bfe9bc
- patch ntfsck to return 0 instead of 1 on unsupported filesystem cases
8bfe9bc
7478d5a
* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.4.12-5
7478d5a
- fix ntfsck symlink (thanks to Chris Smart for catching it)
7478d5a
41564fb
* Wed Sep  7 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.4.12-4
41564fb
- fix issue preventing some volume types from not working properly (bz735862)
41564fb
- create fsck.ntfs symlink to ntfsck (bz735612).
41564fb
- apply cleanups from git trunk for ntfsck (bz 706638)
41564fb
- apply cleanups from git trunk for ntfsfix (bz 711662, 723562)
41564fb
07688d0
* Mon May  9 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.4.12-3
07688d0
- add Obsoletes to resolve multi-lib upgrade issue (bz702671)
07688d0
f6f4e0d
* Mon Apr 25 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.4.12-2
f6f4e0d
- add --enable-extras flag (and use it) to ensure proper binary installation
f6f4e0d
c5df3f1
* Thu Apr 14 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.4.12-1
c5df3f1
- update to 2011.4.12
c5df3f1
- pickup ntfsprogs and obsolete the old separate packages
c5df3f1
715c027
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2011.1.15-2
715c027
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
715c027
ff9baf8
* Tue Jan 25 2011 Tom Callaway <spot@fedoraproject.org> - 2:2011.1.15-1
ff9baf8
- update to 2011.1.15
ff9baf8
8cbf88a
* Mon Oct 11 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.10.2-1
8cbf88a
- update to 2010.10.2, all patches merged upstream
8cbf88a
b311f54
* Thu Sep  9 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.8.8-2
b311f54
- add support for context= mount option (Till Maas) (bz502946)
b311f54
7e25457
* Mon Aug  9 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.8.8-1
7e25457
- update to 2010.8.8
7e25457
8772e9c
* Fri Jul  9 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.6.31-1
8772e9c
- update to 2010.6.31-RC
8772e9c
8772e9c
* Fri Jul  9 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.5.22-1
8772e9c
- update to 2010.5.22
8772e9c
93e161c
* Tue May 18 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.5.16-1
93e161c
- update to 2010.5.16
93e161c
- fix makefile to build secaudit/usermap tools
93e161c
e48184e
* Mon Mar  8 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.3.6-1
e48184e
- update to 2010.3.6
e48184e
ee5ae86
* Mon Feb 15 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.2.6-1
ee5ae86
- update to 2010.2.6-RC
ee5ae86
- fix summary text
ee5ae86
9f44d54
* Wed Jan 20 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2010.1.16-1
9f44d54
- update to 2010.1.16
9f44d54
2e0df05
* Fri Nov 20 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.11.14-2
2e0df05
- missing BuildRequires: libattr-devel
2e0df05
0105259
* Fri Nov 20 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.11.14-1
0105259
- update to 2009.11.14
0105259
0105259
* Fri Oct 30 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.10.5-0.1.RC
0105259
- bump to 2009.10.5-RC
0105259
08ea978
* Thu Sep 17 2009 Peter Lemenkov <lemenkov@gmail.com> - 2:2009.4.4-3
08ea978
- Rebuilt with new fuse
08ea978
cdbd2d4
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2009.4.4-2
cdbd2d4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cdbd2d4
2e7cda9
* Fri Apr  3 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.4.4-1
2e7cda9
- update to 4.4, patch for mount issue merged
2e7cda9
f7a01a1
* Mon Mar 30 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.3.8-2
f7a01a1
- Patch from upstream provided as temporary workaround for bz 486619
f7a01a1
f53230d
* Thu Mar 26 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.3.8-1
f53230d
- update to 2009.3.8
f53230d
c2c8a3c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2009.2.1-3
c2c8a3c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c2c8a3c
ed96dfe
* Mon Feb 16 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.2.1-2
ed96dfe
- update fdi to fix nautilus mount bug
ed96dfe
b15efcc
* Thu Feb 12 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.2.1-1
b15efcc
- update to 2009.2.1
b15efcc
badc19b
* Fri Jan 30 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:2009.1.1-1
badc19b
- new release, new versioning scheme from upstream
badc19b
ac237ca
* Thu Jan  8 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5222-0.2.RC
ac237ca
- move pkgconfig Requires to -devel package where it belongs
ac237ca
85f2621
* Mon Dec 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5222-0.1.RC
85f2621
- 1.5222-RC
85f2621
3c85f54
* Tue Dec  2 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5130-1
3c85f54
- update to 1.5130
3c85f54
d5770b1
* Wed Oct 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5012-4
d5770b1
- fix hal file to properly ignore internal recovery partitions
d5770b1
55c3a0f
* Wed Oct 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5012-3
55c3a0f
- fix hal file to cover all mount cases (thanks to Richard Hughes)
55c3a0f
e6694b0
* Mon Oct 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5012-2
e6694b0
- add fdi file to enable hal automounting
e6694b0
1a6dde5
* Wed Oct 15 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.5012-1
1a6dde5
- update to 1.5012 (same code as 1.2926-RC)
1a6dde5
b71da24
* Mon Sep 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2926-0.1.RC
b71da24
- update to 1.2926-RC (rawhide, F10)
b71da24
3eed0ae
* Fri Aug 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2812-1
3eed0ae
- update to 1.2812
3eed0ae
ff24e5c
* Sat Jul 12 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2712-1
ff24e5c
- update to 1.2712
ff24e5c
6eb18d7
* Mon May  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2506-1
6eb18d7
- update to 1.2506
6eb18d7
957930e
* Tue Apr 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2412-1
957930e
- update to 1.2412
957930e
013d598
* Mon Mar 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2310-2
013d598
- update sources
013d598
7ce2420
* Mon Mar 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2310-1
7ce2420
- update to 1.2310
7ce2420
- make -n a noop (bz 403291)
7ce2420
98c8d43
* Tue Feb 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2:1.2216-3
98c8d43
- rebuild against fixed gcc (PR35264, bugzilla 433546)
98c8d43
4629282
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2:1.2216-2
4629282
- Autorebuild for GCC 4.3
4629282
af281ee
* Mon Feb 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.2216-1
af281ee
- update to 1.2216
af281ee
ca48526
* Tue Nov 20 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.1120-1
ca48526
- bump to 1.1120
492d37f
- default to fuse-lite (internal to ntfs-3g), but enable --with externalfuse 
492d37f
  as an option
ca48526
4cdad71
* Thu Nov  8 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.1104-1
4cdad71
- bump to 1.1104
4cdad71
9a2b052
* Mon Oct 29 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.1030-1
9a2b052
- bump to 1.1030
9a2b052
bbc39ba
* Sat Oct  6 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.1004-1
bbc39ba
- bump to 1.1004
bbc39ba
0dc9f14
* Thu Sep 20 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.913-2
0dc9f14
- don't set /sbin/mount.ntfs-3g setuid
0dc9f14
492b4dc
* Mon Sep 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.913-1
492b4dc
- bump to 1.913
492b4dc
921078c
* Sun Aug 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.826-1
921078c
- bump to 1.826
921078c
- glibc27 patch is upstreamed
921078c
dcadff1
* Fri Aug 24 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.810-1
dcadff1
- bump to 1.810
dcadff1
- fix license tag
dcadff1
- rebuild for ppc32
dcadff1
cc3907a
* Sun Jul 22 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.710-1
cc3907a
- bump to 1.710
cc3907a
- add compat symlinks
cc3907a
cc3907a
* Wed Jun 27 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.616-1
cc3907a
- bump to 1.616
cc3907a
dbe6842
* Tue May 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.516-1
dbe6842
- bump to 1.516
dbe6842
- fix bugzilla 232031
dbe6842
e0adb75
* Sun Apr 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.417-1
e0adb75
- bump to 1.417
e0adb75
4019029
* Sun Apr 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.416-1
4019029
- bump to 1.416
4019029
- drop patch0, upstreamed
4019029
f483b12
* Wed Apr  4 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.328-2
f483b12
- allow non-root users to mount/umount ntfs volumes (Laszlo Dvornik)
f483b12
f448288
* Sat Mar 31 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.328-1
f448288
- bump to 1.328
f448288
- drop patch, use --disable-ldconfig instead
f448288
f4fae2f
* Wed Feb 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:1.0-1
f4fae2f
- 1.0 release!
f4fae2f
b2eb04c
* Fri Jan 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:0-0.9.20070118
b2eb04c
- symlink to mount.ntfs
b2eb04c
5a0b4c8
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:0-0.8.20070118
5a0b4c8
- bump to 20070118
5a0b4c8
1835769
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2:0-0.7.20070116
1835769
- bump to latest version for all active dists
1835769
a4acea1
* Wed Jan  3 2007 Tom "spot" Callaway <tcallawa@redhat.com> 1:0-0.6.20070102
a4acea1
- bump to latest version (note that upstream fixed their date mistake)
a4acea1
eb5255c
* Wed Nov  1 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1:0-0.5.20070920
eb5255c
- add an obsoletes for ntfsprogs-fuse
eb5255c
- make some convenience symlinks
eb5255c
eaa8478
* Wed Oct 25 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1:0-0.4.20070920
eaa8478
- add some extra Provides
eaa8478
e055531
* Mon Oct 16 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1:0-0.3.20070920
e055531
- add explicit Requires on fuse
e055531
e055531
* Mon Oct 16 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1:0-0.2.20070920
e055531
- fixed versioning (bumped epoch, since it now shows as older)
e055531
- change sbin symlink to actual copy to be safe
e055531
e055531
* Sun Oct 15 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.1.20070920-1
e055531
- Initial package for Fedora Extras