This commit is contained in:
parent
12e4d9a009
commit
6b86f80a09
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2d167842cbc92262ee5541ef1c0d87d46a6b9fe14cc298b625547720c82beca
|
||||
size 320445
|
3
wavpack-4.41.0.tar.bz2
Normal file
3
wavpack-4.41.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a40748e07a18f86438eb79ebbb0b6e321d0374f683c6cad91f04c5251e7203c
|
||||
size 329241
|
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 27 09:49:25 CEST 2007 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 4.41.0:
|
||||
* bug fixes
|
||||
* improvements
|
||||
* new features
|
||||
* new optimization code
|
||||
* for complete list of changes see ChangeLog
|
||||
- Split package according to shared library packaging policy.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 29 11:20:58 CEST 2007 - sbrabec@suse.cz
|
||||
|
||||
|
62
wavpack.spec
62
wavpack.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package wavpack (Version 4.40.0)
|
||||
# spec file for package wavpack (Version 4.41.0)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -11,16 +11,16 @@
|
||||
# norootforbuild
|
||||
|
||||
Name: wavpack
|
||||
License: BSD License and BSD-like
|
||||
License: BSD 3-Clause
|
||||
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
||||
URL: http://www.wavpack.com/
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Version: 4.40.0
|
||||
Release: 2
|
||||
Version: 4.41.0
|
||||
Release: 1
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Patch: wavpack_word_eof.diff
|
||||
# Name used by third parties before openSUSE 10.3:
|
||||
Provides: WavPack = %{version}-%{release}
|
||||
Requires: libwavpack1 >= %{version}
|
||||
Obsoletes: WavPack
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
@ -48,13 +48,45 @@ means never having to choose between lossless and lossy compression!
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
David Bryant <david@wavpack.com>
|
||||
|
||||
%package -n libwavpack1
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libwavpack1
|
||||
WavPack is a completely open audio compression format providing
|
||||
lossless, high-quality lossy, and a unique hybrid compression mode.
|
||||
Although the technology is loosely based on previous versions of
|
||||
WavPack, the new version 4 format has been designed from the ground up
|
||||
to offer unparalleled performance and functionality.
|
||||
|
||||
In the default lossless mode WavPack acts just like a WinZip compressor
|
||||
for audio files. However, unlike MP3 or WMA encoding which can affect
|
||||
the sound quality, not a single bit of the original information is
|
||||
lost, so there's no chance of degradation. This makes lossless mode
|
||||
ideal for archiving audio material or any other situation where quality
|
||||
is paramount. The compression ratio depends on the source material, but
|
||||
generally is between 30% and 70%.
|
||||
|
||||
The hybrid mode provides all the advantages of lossless compression
|
||||
with an additional bonus. Instead of creating a single file, this mode
|
||||
creates both a relatively small, high-quality lossy file that can be
|
||||
used all by itself, and a "correction" file that (when combined with
|
||||
the lossy file) provides full lossless restoration. For some users this
|
||||
means never having to choose between lossless and lossy compression!
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
David Bryant <david@wavpack.com>
|
||||
|
||||
%package devel
|
||||
Summary: Free Hybrid Lossless Audio Compression Format
|
||||
Group: Productivity/Multimedia/Sound/Editors and Convertors
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version} glibc-devel
|
||||
|
||||
%description devel
|
||||
@ -87,7 +119,6 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
@ -97,11 +128,9 @@ make %{?jobs:-j%jobs}
|
||||
%install
|
||||
%makeinstall
|
||||
|
||||
%post
|
||||
%run_ldconfig
|
||||
%post -n libwavpack1 -p /sbin/ldconfig
|
||||
|
||||
%postun
|
||||
%run_ldconfig
|
||||
%postun -n libwavpack1 -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
@ -111,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
# AUTHORS NEWS are empty
|
||||
%doc ChangeLog README doc/*.txt
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libwavpack1
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
@ -121,6 +153,14 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_libdir}/pkgconfig/wavpack.pc
|
||||
|
||||
%changelog
|
||||
* Fri Jul 27 2007 - sbrabec@suse.cz
|
||||
- Updated to version 4.41.0:
|
||||
* bug fixes
|
||||
* improvements
|
||||
* new features
|
||||
* new optimization code
|
||||
* for complete list of changes see ChangeLog
|
||||
- Split package according to shared library packaging policy.
|
||||
* Thu Mar 29 2007 - sbrabec@suse.cz
|
||||
- "comparison is always false" warnings fix (David Bryant).
|
||||
* Wed Mar 28 2007 - sbrabec@suse.cz
|
||||
|
@ -1,16 +0,0 @@
|
||||
Fixes following warnings:
|
||||
warning: comparison is always false due to limited range of data type
|
||||
|
||||
Index: src/wavpack_local.h
|
||||
================================================================================
|
||||
--- src/wavpack_local.h
|
||||
+++ src/wavpack_local.h
|
||||
@@ -585,7 +585,7 @@
|
||||
signed char store_weight (int weight);
|
||||
int restore_weight (signed char weight);
|
||||
|
||||
-#define WORD_EOF (1L << 31)
|
||||
+#define WORD_EOF ((int32_t)(1L << 31))
|
||||
|
||||
// float.c
|
||||
|
Loading…
Reference in New Issue
Block a user