Sync from SUSE:SLFO:Main zisofs-tools revision 1d54e1181d0df883f9b640b6fce10590

This commit is contained in:
Adrian Schröter 2024-05-04 02:38:20 +02:00
commit d5ec220181
4 changed files with 169 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
zisofs-tools-1.0.8.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

86
zisofs-tools.changes Normal file
View File

@ -0,0 +1,86 @@
-------------------------------------------------------------------
Thu May 11 15:01:25 UTC 2023 - Frederic Crozat <fcrozat@suse.com>
- Fix url and download to up to date location.
- Add autoconf as BuildRequires.
-------------------------------------------------------------------
Fri Mar 12 22:04:42 UTC 2021 - Dirk Müller <dmueller@suse.com>
- refresh spec file (update licensedir)
-------------------------------------------------------------------
Sat Nov 7 15:33:54 UTC 2015 - mpluskal@suse.com
- Use macro for configure
- Cleanup spec file with spec-cleaner
- Don't ship INSTALL file
-------------------------------------------------------------------
Fri Oct 30 11:04:38 UTC 2015 - jkeil@suse.de
- require mkisofs package instead of /usr/bin/mkisofs
* Depending on the binary results in a conflict between
the cdrkit-cdrtools-compat and mkisofs packages.
* cdrkit-cdrtools-compat is to be replaced by cdrtools,
which provides the mkisofs package
-------------------------------------------------------------------
Sun Oct 5 20:22:19 UTC 2014 - jengelh@inai.de
- Use Source URLs and remove redundant %clean section
-------------------------------------------------------------------
Thu Jun 6 12:43:15 UTC 2013 - mhrusecky@suse.com
- require /usr/bin/mkisofs instead of mkisofs package
-------------------------------------------------------------------
Sat Oct 30 20:26:46 UTC 2010 - jengelh@medozas.de
- Use %_smp_mflags
-------------------------------------------------------------------
Mon Feb 15 15:54:10 CET 2010 - dimstar@opensuse.org
- Update to version 1.0.8:
+ This release fixes the --sloppy option, which was documented
but did not work.
- Spec cleanup.
-------------------------------------------------------------------
Thu Mar 29 15:44:38 CEST 2007 - rguenther@suse.de
- add zlib-devel BuildRequires
-------------------------------------------------------------------
Wed Jan 25 21:43:46 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Wed Sep 01 14:42:12 CEST 2004 - nadvornik@suse.cz
- updated to 1.0.6
-------------------------------------------------------------------
Sun Jan 11 11:56:22 CET 2004 - adrian@suse.de
- add %defattr
-------------------------------------------------------------------
Fri Jul 25 11:55:38 CEST 2003 - nadvornik@suse.cz
- updated to 1.0.4
- added BuildRoot
-------------------------------------------------------------------
Thu Jun 13 17:05:51 CEST 2002 - uli@suse.de
- update -> 1.0.3 (cosmetic)
-------------------------------------------------------------------
Tue Oct 30 10:41:18 CET 2001 - uli@suse.de
- initial package

57
zisofs-tools.spec Normal file
View File

@ -0,0 +1,57 @@
#
# spec file for package zisofs-tools
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: zisofs-tools
Version: 1.0.8
Release: 0
Summary: User tools for zisofs
License: GPL-2.0-or-later
Group: System/Filesystems
URL: https://git.kernel.org/pub/scm/fs/zisofs/zisofs-tools.git/
Source: https://git.kernel.org/pub/scm/fs/zisofs/zisofs-tools.git/snapshot/%{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: zlib-devel
Requires: mkisofs
%description
Zisofs-tools, in conjunction with a zisofs-enabled system, allows the
creation of an ISO-9660 filesystem that can be decompressed "live" on a
file-by-file basis, while still being readable by systems without
zisofs support. This package contains the tools necessary to create
such a filesystem and read compressed files on a system without zisofs
support.
%prep
%setup -q
%build
autoconf
autoheader
%configure
%make_build
%install
make INSTALLROOT=%{buildroot} install
%files
%license COPYING
%doc CHANGES README
%{_bindir}/mkzftree
%{_mandir}/man1/mkzftree.1%{?ext_man}
%changelog