1
0

Accepting request 628910 from filesystems

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/628910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ntfs-3g_ntfsprogs?expand=0&rev=24
This commit is contained in:
Dominique Leuenberger 2018-08-20 14:17:11 +00:00 committed by Git OBS Bridge
commit 2db78f01b4
4 changed files with 71 additions and 26 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7b72c05e4b3493e6095be789a760c9f5f2b141812d5b885f3190c98802f1ea0
size 1264364

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e5a021d7b761261836dcb305370af299793eedbded731df3d6943802e1262d5
size 1259054

View File

@ -1,3 +1,36 @@
-------------------------------------------------------------------
Mon Aug 6 09:04:06 UTC 2018 - schwab@suse.de
- Rebuild configure to pick up the updated AC_HEADER_MAJOR
- Use %license for COPYING, COPYING.LIB
-------------------------------------------------------------------
Wed Jul 12 11:19:52 UTC 2017 - jengelh@inai.de
- Rename %soname to %sover to better reflect its use
-------------------------------------------------------------------
Mon Jul 7 11:04:11 UTC 2017 - zenitur@ya.ru
- Switch GCC version from 4.3 to 4.8 for SLES 11
-------------------------------------------------------------------
Mon Jun 26 10:11:41 UTC 2017 - idonmez@suse.com
- Update to version 2017.3.23
* Delegated processing of special reparse points to external plugins
* Allowed kernel cacheing by lowntfs-3g when not using Posix ACLs
* Enabled fallback to read-only mount when the volume is hibernated
* Made a full check for whether an extended attribute is allowed
* Moved secaudit and usermap to ntfsprogs (now ntfssecaudit and ntfsusermap)
* Enabled encoding broken UTF-16 into broken UTF-8
* Autoconfigured selecting <sys/sysmacros.h> vs <sys/mkdev>
* Allowed using the full library API on systems without extended attributes support
* Fixed DISABLE_PLUGINS as the condition for not using plugins
* Corrected validation of multi sector transfer protected records
* Denied creating/removing files from $Extend
* Returned the size of locale encoded target as the size of symlinks
-------------------------------------------------------------------
Sat Apr 01 10:32:33 UTC 2017 - zenitur@ya.ru

View File

@ -1,7 +1,7 @@
#
# spec file for package ntfs-3g_ntfsprogs
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,20 +16,23 @@
#
%define soname 87
%define sover 88
Name: ntfs-3g_ntfsprogs
Summary: NTFS Support in Userspace
License: GPL-2.0+
License: GPL-2.0-or-later
Group: System/Filesystems
Version: 2016.2.22
Version: 2017.3.23
Release: 0
Source: http://tuxera.com/opensource/%{name}-%{version}.tgz
Source2: 21-storage-ntfs-3g.fdi
Url: http://www.tuxera.com/community/ntfs-3g-download/
BuildRequires: autoconf
# SLES 11 is still supported
%if 0%{?sles_version} && 0%{?suse_version} == 1110
BuildRequires: cpp48
BuildRequires: fuse-devel >= 2.6.0
BuildRequires: gcc48
%else
BuildRequires: pkgconfig(fuse) >= 2.6.0
%endif
@ -47,7 +50,7 @@ Vista and Windows Seven.
%package -n ntfs-3g
Summary: NTFS Support in Userspace
License: GPL-2.0+
License: GPL-2.0-or-later
Group: System/Filesystems
Provides: ntfsprogs-fuse = 1.13.1
Obsoletes: ntfsprogs-fuse < 1.13.1
@ -64,22 +67,22 @@ NTFS-3G allows for read/write access to NTFS partitions which can be
shared with Windows XP, Windows Server 2003, Windows 2000, Windows
Vista and Windows Seven.
%package -n libntfs-3g%soname
%package -n libntfs-3g%sover
Summary: NTFS Support in Userspace -- Library
License: LGPL-2.1+
License: LGPL-2.1-or-later
Group: System/Filesystems
%description -n libntfs-3g%soname
%description -n libntfs-3g%sover
NTFS-3G allows for read/write access to NTFS partitions which can be
shared with Windows XP, Windows Server 2003, Windows 2000, Windows
Vista and Windows Seven.
%package -n libntfs-3g-devel
Summary: NTFS Support in Userspace -- Development Files
License: LGPL-2.1+
License: LGPL-2.1-or-later
Group: System/Filesystems
Requires: glibc-devel
Requires: libntfs-3g%soname = %{version}
Requires: libntfs-3g%sover = %{version}
Provides: ntfs-3g-devel = %{version}
Obsoletes: ntfs-3g-devel < %{version}
@ -90,7 +93,7 @@ Vista and Windows Seven.
%package -n ntfsprogs
Summary: NTFS Utilities
License: GPL-2.0+
License: GPL-2.0-or-later
Group: System/Filesystems
%description -n ntfsprogs
@ -100,7 +103,7 @@ options to display the version number and usage syntax.
%package -n ntfsprogs-extra
Summary: NTFS Utilities which can damage your filesystem such that Windows can't read it
License: GPL-2.0+
License: GPL-2.0-or-later
Group: System/Filesystems
%description -n ntfsprogs-extra
@ -113,8 +116,14 @@ They have been orphaned for ten years and are unlikely to be upgraded (except nt
%prep
%setup -q
# Rebuild configure to pick up the updated AC_HEADER_MAJOR
autoconf
%build
%if 0%{?sles_version} && 0%{?suse_version} == 1110
export CC=gcc-4.8
export CXX=cpp-4.8
%endif
#
# regarding -Wno-sign-compare - checked with the Szaka: There is one variable
# which is signed and would possibly ok to be unsigned. Any solution to this
@ -172,13 +181,14 @@ if [ ! -f /sbin/mount.ntfs-3g ]; then
update-alternatives --remove mount.ntfs /sbin/mount.ntfs-3g
fi
%post -n libntfs-3g%soname -p /sbin/ldconfig
%post -n libntfs-3g%sover -p /sbin/ldconfig
%postun -n libntfs-3g%soname -p /sbin/ldconfig
%postun -n libntfs-3g%sover -p /sbin/ldconfig
%files -n ntfs-3g
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING CREDITS NEWS README
%doc AUTHORS ChangeLog CREDITS NEWS README
%license COPYING
%dir %{_datadir}/hal
%dir %{_datadir}/hal/fdi
%dir %{_datadir}/hal/fdi/policy
@ -186,8 +196,8 @@ fi
%{_datadir}/hal/fdi/policy/10osvendor/21-storage-ntfs-3g.fdi
%{_bindir}/ntfs-3g
%{_bindir}/ntfs-3g.probe
%{_bindir}/ntfs-3g.secaudit
%{_bindir}/ntfs-3g.usermap
%{_bindir}/ntfssecaudit
%{_bindir}/ntfsusermap
%{_bindir}/lowntfs-3g
%ghost /sbin/mount.ntfs
%if 0%{?suse_version} > 1110
@ -201,14 +211,14 @@ fi
%{_mandir}/man8/mount.ntfs-3g.8%{?ext_man}
%{_mandir}/man8/ntfs-3g.8%{?ext_man}
%{_mandir}/man8/ntfs-3g.probe.8%{?ext_man}
%{_mandir}/man8/ntfs-3g.secaudit.8%{?ext_man}
%{_mandir}/man8/ntfs-3g.usermap.8%{?ext_man}
%{_mandir}/man8/ntfssecaudit.8%{?ext_man}
%{_mandir}/man8/ntfsusermap.8%{?ext_man}
# We already have this, so no need to package it again.
%exclude /usr/share/doc/ntfs-3g/README
%files -n libntfs-3g%soname
%files -n libntfs-3g%sover
%defattr(-,root,root,-)
%doc COPYING.LIB
%license COPYING.LIB
%{_libdir}/libntfs-3g.so.*
%files -n libntfs-3g-devel
@ -219,7 +229,8 @@ fi
%files -n ntfsprogs
%defattr(-, root, root)
%doc AUTHORS ChangeLog COPYING CREDITS NEWS README
%doc AUTHORS ChangeLog CREDITS NEWS README
%license COPYING
/sbin/mkfs.ntfs
%{_sbindir}/mkntfs
%{_sbindir}/ntfsclone
@ -258,7 +269,8 @@ fi
%files -n ntfsprogs-extra
%defattr(-, root, root)
%doc AUTHORS ChangeLog COPYING CREDITS NEWS README
%doc AUTHORS ChangeLog CREDITS NEWS README
%license COPYING
%{_bindir}/ntfsck
%{_bindir}/ntfsdump_logfile
%{_bindir}/ntfsfallocate