Compare commits

...

No commits in common. "c8" and "c9" have entirely different histories.
c8 ... c9

3 changed files with 53 additions and 10 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/sbc-1.3.tar.gz
SOURCES/sbc-1.4.tar.xz

View File

@ -1 +1 @@
577d7f50415e9420569d8fd5e179e2429c0e2cbb SOURCES/sbc-1.3.tar.gz
5a4155b91ffc0bea1622090c9bd27a00d8054d44 SOURCES/sbc-1.4.tar.xz

View File

@ -1,14 +1,16 @@
Name: sbc
Version: 1.3
Version: 1.4
Release: 9%{?dist}
Summary: Sub Band Codec used by bluetooth A2DP
License: GPLv2 and LGPLv2+
URL: http://www.bluez.org
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.xz
BuildRequires: make
BuildRequires: gcc
BuildRequires: libsndfile-devel
Requires: lib%{name}%{?_isa} = %{version}-%{release}
%description
SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio
@ -16,9 +18,19 @@ Distribution Profile (A2DP) bluetooth standard but can be used standalone. It
uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with
an adaptive block PCM quantizers.
%package -n libsbc
Summary: Library for the SBC (Sub Band Codec)
%description -n libsbc
Library for SBC (Sub Band Codec) is a low-complexity audio codec used in the
Advanced Audio Distribution Profile (A2DP) bluetooth standard but can be used
standalone. It uses 4 or 8 subbands, an adaptive bit allocation algorithm in
combination with an adaptive block PCM quantizers.
%package devel
Summary: Development package for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: lib%{name}%{?_isa} = %{version}-%{release}
%description devel
Files for development with %{name}.
@ -29,22 +41,22 @@ Files for development with %{name}.
%build
%configure --disable-static
make %{?_smp_mflags} V=1
%make_build
%install
make install DESTDIR=%{buildroot} INSTALL='install -p'
%make_install
#Remove libtool archives.
find %{buildroot} -type f -name "*.la" -delete
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%ldconfig_scriptlets
%files
%license COPYING
%doc AUTHORS ChangeLog
%{_bindir}/sbc*
%files -n libsbc
%license COPYING
%{_libdir}/libsbc.so.1*
%files devel
@ -53,6 +65,37 @@ find %{buildroot} -type f -name "*.la" -delete
%{_libdir}/libsbc.so
%changelog
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.4-9
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.4-8
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Dec 12 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1.4-4
- Split library out to sub package
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sat Dec 22 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.4-1
- Update to 1.4
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Mar 9 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.3-9
- Add gcc BR