This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
3
zisofs-tools-1.0.6.tar.bz2
Normal file
3
zisofs-tools-1.0.6.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7d80141be2b52df99423cc617ad9dab8e81b1c79ca437789bbb1a9433524e3e
|
||||
size 53138
|
31
zisofs-tools.changes
Normal file
31
zisofs-tools.changes
Normal file
@@ -0,0 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
73
zisofs-tools.spec
Normal file
73
zisofs-tools.spec
Normal file
@@ -0,0 +1,73 @@
|
||||
#
|
||||
# spec file for package zisofs-tools (Version 1.0.6)
|
||||
#
|
||||
# Copyright (c) 2004 SUSE LINUX AG, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://www.suse.de/feedback/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: zisofs-tools
|
||||
URL: ftp://ftp.kernel.org/pub/linux/utils/fs/zisofs/
|
||||
License: GPL
|
||||
Group: System/Filesystems
|
||||
Requires: mkisofs
|
||||
Autoreqprov: on
|
||||
Version: 1.0.6
|
||||
Release: 1
|
||||
Summary: User tools for zisofs
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
Zisofs-tools, in conjunction with a zisofs-enabled system, allows the
|
||||
creation of an iso9660 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.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
H. Peter Anvin <hpa@zytor.com>
|
||||
|
||||
%prep
|
||||
%setup
|
||||
#%patch
|
||||
|
||||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --mandir=%{_mandir}
|
||||
make
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make INSTALLROOT=$RPM_BUILD_ROOT install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc CHANGES COPYING INSTALL README
|
||||
/usr/bin/mkzftree
|
||||
%doc %{_mandir}/man1/mkzftree.1*
|
||||
|
||||
%changelog -n zisofs-tools
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Wed Sep 01 2004 - nadvornik@suse.cz
|
||||
- updated to 1.0.6
|
||||
* Sun Jan 11 2004 - adrian@suse.de
|
||||
- add %%defattr
|
||||
* Fri Jul 25 2003 - nadvornik@suse.cz
|
||||
- updated to 1.0.4
|
||||
- added BuildRoot
|
||||
* Thu Jun 13 2002 - uli@suse.de
|
||||
- update -> 1.0.3 (cosmetic)
|
||||
* Tue Oct 30 2001 - uli@suse.de
|
||||
- initial package
|
Reference in New Issue
Block a user