SHA256
1
0
forked from pool/dosfstools

Accepting request 868499 from home:dirkmueller:branches:Base:System

- update to 4.2:
  * mkfs.fat: Allow to specify disk geometry via new -g option
  * fsck.fat: Add code for fixing first FAT cluster 
  * fatlabel: Do not call parts of fsck repair procedure
  * Update warning message about lowercase labels
  * mkfs.fat: Read geom_start from sysfs
  * Add missing files into distribution tarball

OBS-URL: https://build.opensuse.org/request/show/868499
OBS-URL: https://build.opensuse.org/package/show/Base:System/dosfstools?expand=0&rev=76
This commit is contained in:
Matej Cepl 2021-02-04 18:58:46 +00:00 committed by Git OBS Bridge
parent cee98154e2
commit c3a1107134
6 changed files with 28 additions and 42 deletions

View File

@ -1,15 +0,0 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="versionprefix">4.1+git</param>
<param name="url">https://github.com/dosfstools/dosfstools.git</param>
<param name="scm">git</param>
<param name="exclude">.git*</param>
<param name="changesgenerate">enable</param>
<param name="changesauthor">mcepl@cepl.eu</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>
<service name="set_version" mode="disabled" />
</services>

View File

@ -1,4 +0,0 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/dosfstools/dosfstools.git</param>
<param name="changesrevision">94437324edff576019a18748e35a6fbb8edec403</param></service></servicedata>

View File

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

BIN
dosfstools-4.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Tue Feb 2 00:55:39 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 4.2:
* mkfs.fat: Allow to specify disk geometry via new -g option
* fsck.fat: Add code for fixing first FAT cluster
* fatlabel: Do not call parts of fsck repair procedure
* Update warning message about lowercase labels
* mkfs.fat: Read geom_start from sysfs
* Add missing files into distribution tarball
-------------------------------------------------------------------
Fri Jan 15 06:13:07 UTC 2021 - mcepl@cepl.eu

View File

@ -17,26 +17,22 @@
Name: dosfstools
Version: 4.1+git.1610658652.9443732
Version: 4.2
Release: 0
Summary: Utilities for Making and Checking MS-DOS FAT File Systems on Linux
License: GPL-3.0-or-later
Group: System/Filesystems
URL: https://github.com/dosfstools/dosfstools
Source: dosfstools-%{version}.tar.gz
# Source: https://github.com/dosfstools/dosfstools/releases/download/v%%{version}/dosfstools-%%{version}.tar.gz
Source: https://github.com/dosfstools/dosfstools/releases/download/v%{version}/dosfstools-%{version}.tar.gz
# Source2: https://github.com/dosfstools/dosfstools/releases/download/v%%{version}/dosfstools-%%{version}.tar.gz.sig
# Source3: %%{name}.keyring
BuildRequires: pkgconfig
# xxd from vim is required for testsuite
BuildRequires: vim
BuildRequires: pkgconfig(libudev)
# for ./autogen.sh
BuildRequires: libtool
Supplements: filesystem(vfat)
Provides: dosfsck
Provides: mkdosfs
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The dosfstools package includes the mkdosfs and dosfsck utilities, which
@ -45,13 +41,12 @@ floppies.
%prep
%setup -q
./autogen.sh
%build
%configure \
--docdir=%{_docdir}/dosfstools \
--enable-compat-symlinks
make %{?_smp_mflags} CFLAGS="%{optflags} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
%make_build CFLAGS="%{optflags} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
%install
%make_install
@ -61,10 +56,9 @@ ln -sf %{_sbindir}/{dosfsck,dosfslabel,mkdosfs,fsck.msdos,mkfs.msdos,fsck.fat,fs
%endif
%check
make check
%make_build check
%files
%defattr(-,root,root)
%doc %{_docdir}/dosfstools
%if !0%{?usrmerged}
/sbin/*
@ -79,15 +73,15 @@ make check
%{_sbindir}/mkfs.fat
%{_sbindir}/mkfs.msdos
%{_sbindir}/mkfs.vfat
%{_mandir}/man8/dosfsck.8%{ext_man}
%{_mandir}/man8/dosfslabel.8%{ext_man}
%{_mandir}/man8/fatlabel.8%{ext_man}
%{_mandir}/man8/fsck.fat.8%{ext_man}
%{_mandir}/man8/fsck.msdos.8%{ext_man}
%{_mandir}/man8/fsck.vfat.8%{ext_man}
%{_mandir}/man8/mkdosfs.8%{ext_man}
%{_mandir}/man8/mkfs.fat.8%{ext_man}
%{_mandir}/man8/mkfs.msdos.8%{ext_man}
%{_mandir}/man8/mkfs.vfat.8%{ext_man}
%{_mandir}/man8/dosfsck.8%{?ext_man}
%{_mandir}/man8/dosfslabel.8%{?ext_man}
%{_mandir}/man8/fatlabel.8%{?ext_man}
%{_mandir}/man8/fsck.fat.8%{?ext_man}
%{_mandir}/man8/fsck.msdos.8%{?ext_man}
%{_mandir}/man8/fsck.vfat.8%{?ext_man}
%{_mandir}/man8/mkdosfs.8%{?ext_man}
%{_mandir}/man8/mkfs.fat.8%{?ext_man}
%{_mandir}/man8/mkfs.msdos.8%{?ext_man}
%{_mandir}/man8/mkfs.vfat.8%{?ext_man}
%changelog