Git import and update to 0.8

This commit is contained in:
Daniel Berteaud 2021-12-09 10:57:40 +01:00
parent b2b08e8da7
commit 0fa27b3e7d
5 changed files with 68 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.tar.xz filter=lfs diff=lfs merge=lfs -text

1
.tito/releasers.conf Symbolic link
View File

@ -0,0 +1 @@
../../tito_libs/releasers.conf

View File

@ -1,5 +1,6 @@
[buildconfig]
builder = tito.builder.Builder
tagger = tito.tagger.VersionTagger
builder = dbd.builder.GitLfsBuilder
tagger = tito.tagger.ReleaseTagger
changelog_do_not_remove_cherrypick = 0
changelog_format = %s (%ae)
lib_dir = ../tito_libs

BIN
chunkfs_0.8.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

60
fuse-chunkfs.spec Normal file
View File

@ -0,0 +1,60 @@
Summary: FUSE based filesystem to mount file or block device as a directory tree
Name: fuse-chunkfs
Version: 0.8
Release: 0%{?dist}
License: GPLv2
Group: System Environment/Kernel
Url: http://chunkfs.florz.de/
Source0: http://chunkfs.florz.de/%{realname}_%{version}.tar.xz
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: fuse-devel
%description
ChunkFS is a FUSE based filesystem that allows you to mount an arbitrary
file or block device as a directory tree of files that each represent a chunk
of user-specified size of the mounted file.
The chunk size is global per mount, but at mount time any value can be
specified. (If the file size isn't a multiple of the specified chunk
size, the last file in the tree simply will be smaller than the chunk size.)
Only read access is supported at the moment.
UnChunkFS is the inversion of ChunkFS—it allows you to mount a ChunkFS tree
(or a copy of it, of course), and gives you a single file named image
that has the same contents as the file or device you created the tree from
by mounting it as a ChunkFS.
%prep
%setup -q -n %{realname}-%{version}
%build
%{__make} %{?_smp_mflags}
%install
rm -rf %{buildroot}
%{__install} -d %{buildroot}%{_bindir}
%{__install} -m 755 chunkfs %{buildroot}%{_bindir}
%{__install} -m 755 unchunkfs %{buildroot}%{_bindir}
%{__install} -d %{buildroot}%{_mandir}/man1
%{__install} -m 644 chunkfs.1.gz %{buildroot}%{_mandir}/man1
%{__ln_s} chunkfs.1.gz %{buildroot}%{_mandir}/man1/unchunkfs.1.gz
%files
%defattr(-, root, root, -)
%doc COPYING INSTALL README writeoverlay.sh
%{_bindir}/*
%{_mandir}/man1/*
%clean
rm -rf %{buildroot}
%changelog
* Wed Feb 4 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.7-1
- Update to 0.7
* Fri Nov 15 2013 Daniel Berteaud <daniel@firewall-services.com> - 0.6-2
- Spec file cleanup
* Mon Aug 01 2011 Daniel Berteaud <daniel@firewall-services.com> - 0.6-1
- Initial release