Accepting request 33324 from filesystems
Copy from filesystems/squashfs based on submit request 33324 from user coolo OBS-URL: https://build.opensuse.org/request/show/33324 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/squashfs?expand=0&rev=11
This commit is contained in:
parent
b17a7eaea6
commit
7fdb24fe95
@ -1,6 +1,4 @@
|
||||
Index: squashfs-tools/mksquashfs.c
|
||||
===================================================================
|
||||
--- squashfs-tools/mksquashfs.c.orig
|
||||
--- squashfs-tools/mksquashfs.c
|
||||
+++ squashfs-tools/mksquashfs.c
|
||||
@@ -1538,6 +1538,7 @@ int add_pending_fragment(struct file_buf
|
||||
pthread_mutex_lock(&fragment_mutex);
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca5306cd7dcae5a523a4ffd37e5afbf15c0e73272d4a55f49930febfa205b8da
|
||||
size 45324
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 21 14:47:01 CEST 2009 - snwint@suse.de
|
||||
|
||||
- removed obsolete source file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 17 12:49:44 CEST 2009 - snwint@suse.de
|
||||
|
||||
- update to squashfs 4.0 (unsquashfs actually works)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 25 16:27:55 CET 2009 - coolo@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package squashfs (Version 3.99cvs20090225)
|
||||
# spec file for package squashfs (Version 4.0)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,16 +17,15 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
# Commandline:
|
||||
|
||||
Name: squashfs
|
||||
BuildRequires: zlib-devel
|
||||
License: GPL v2 or later
|
||||
License: GPLv2+
|
||||
Group: System/Filesystems
|
||||
Supplements: filesystem(squashfs)
|
||||
Version: 3.99cvs20090225
|
||||
Version: 4.0
|
||||
Release: 1
|
||||
Source0: squashfs-tools.tar.bz2
|
||||
Source0: squashfs4.0.tar.gz
|
||||
Patch: squashfs-retval.patch
|
||||
Url: http://squashfs.sourceforge.net/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -43,61 +42,22 @@ Authors:
|
||||
Phillip Lougher
|
||||
|
||||
%prep
|
||||
%setup -n squashfs-tools
|
||||
%patch -p1
|
||||
%setup -n squashfs%{version}
|
||||
%patch -p0
|
||||
|
||||
%build
|
||||
make CFLAGS="-I. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $RPM_OPT_FLAGS"
|
||||
make -C squashfs-tools CFLAGS="-I. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $RPM_OPT_FLAGS"
|
||||
|
||||
%install
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/bin
|
||||
cp -p {un,mk}squashfs $RPM_BUILD_ROOT/usr/bin
|
||||
#chmod 644 *READ* *CHANGE*
|
||||
install -m 755 squashfs-tools/{un,mk}squashfs $RPM_BUILD_ROOT/usr/bin
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
#%doc README CHANGES PERFORMANCE.README
|
||||
%doc README README-4.0 PERFORMANCE.README CHANGES
|
||||
/usr/bin/*squashfs
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 coolo@suse.de
|
||||
- update to squashfs pre 4.0 to create squashfs that 2.6.29 can
|
||||
actually read
|
||||
- (there is no documentation in CVS)
|
||||
* Thu Aug 23 2007 olh@suse.de
|
||||
- move kernel driver to kernel-binary.rpm
|
||||
* Thu Aug 16 2007 cthiel@suse.de
|
||||
- Supplements: filesystem(squashfs)
|
||||
* Wed Jun 06 2007 ro@suse.de
|
||||
- fix build with current kernel
|
||||
* Wed Apr 04 2007 lrupp@suse.de
|
||||
- added module-init-tools to BuildRequires
|
||||
* Thu Mar 29 2007 rguenther@suse.de
|
||||
- added zlib-devel BuildRequires.
|
||||
* Tue Jan 23 2007 ro@suse.de
|
||||
- update to 3.2r2
|
||||
- Kernel patches 2.6.19/2.6.20 have been updated to use
|
||||
const structures and mutexes rather than older semaphores.
|
||||
- Minor SMP bug fixes.
|
||||
- Progress bar broken on x86-64. Fixed.
|
||||
- update to 3.2
|
||||
- Improvements:
|
||||
- Squashfs filesystems can now be exported via NFS.
|
||||
- Unsquashfs now supports 2.x filesystems.
|
||||
- Mksquashfs now displays a progress bar.
|
||||
- Squashfs kernel code has been hardened against accidently or
|
||||
maliciously corrupted Squashfs filesystems.
|
||||
- Bug fixes:
|
||||
- Race condition occurring on S390 in readpage() fixed.
|
||||
- Odd behaviour of MIPS memcpy in read_data() routine worked-around.
|
||||
- Missing cache_flush in Squashfs symlink_readpage() added.
|
||||
- update to 3.1r2
|
||||
- A code optimisation after testing unfortunately
|
||||
broke sorting in Mksquashfs. This has been fixed.
|
||||
* Mon Aug 21 2006 ro@suse.de
|
||||
- update to version 3.1 to fix build on 2.6.18
|
||||
* Thu May 11 2006 duwe@suse.de
|
||||
- packaged current version for SuSE Linux.
|
||||
|
3
squashfs4.0.tar.gz
Normal file
3
squashfs4.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18948edbe06bac2c4307eea99bfb962643e4b82e5b7edd541b4d743748e12e21
|
||||
size 103979
|
Loading…
Reference in New Issue
Block a user