Compare commits
No commits in common. "c9s" and "c8" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
/sbc-*.tar.gz
|
SOURCES/sbc-1.3.tar.gz
|
||||||
/sbc-*.tar.xz
|
|
||||||
|
1
.sbc.metadata
Normal file
1
.sbc.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
577d7f50415e9420569d8fd5e179e2429c0e2cbb SOURCES/sbc-1.3.tar.gz
|
@ -1,16 +1,14 @@
|
|||||||
Name: sbc
|
Name: sbc
|
||||||
Version: 1.4
|
Version: 1.3
|
||||||
Release: 9%{?dist}
|
Release: 9%{?dist}
|
||||||
Summary: Sub Band Codec used by bluetooth A2DP
|
Summary: Sub Band Codec used by bluetooth A2DP
|
||||||
|
|
||||||
License: GPLv2 and LGPLv2+
|
License: GPLv2 and LGPLv2+
|
||||||
URL: http://www.bluez.org
|
URL: http://www.bluez.org
|
||||||
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.xz
|
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: libsndfile-devel
|
BuildRequires: libsndfile-devel
|
||||||
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio
|
SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio
|
||||||
@ -18,19 +16,9 @@ Distribution Profile (A2DP) bluetooth standard but can be used standalone. It
|
|||||||
uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with
|
uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with
|
||||||
an adaptive block PCM quantizers.
|
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
|
%package devel
|
||||||
Summary: Development package for %{name}
|
Summary: Development package for %{name}
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Files for development with %{name}.
|
Files for development with %{name}.
|
||||||
@ -41,22 +29,22 @@ Files for development with %{name}.
|
|||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
|
|
||||||
%make_build
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
make install DESTDIR=%{buildroot} INSTALL='install -p'
|
||||||
|
|
||||||
#Remove libtool archives.
|
#Remove libtool archives.
|
||||||
find %{buildroot} -type f -name "*.la" -delete
|
find %{buildroot} -type f -name "*.la" -delete
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
%license COPYING
|
||||||
%doc AUTHORS ChangeLog
|
%doc AUTHORS ChangeLog
|
||||||
%{_bindir}/sbc*
|
%{_bindir}/sbc*
|
||||||
|
|
||||||
%files -n libsbc
|
|
||||||
%license COPYING
|
|
||||||
%{_libdir}/libsbc.so.1*
|
%{_libdir}/libsbc.so.1*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
@ -65,37 +53,6 @@ find %{buildroot} -type f -name "*.la" -delete
|
|||||||
%{_libdir}/libsbc.so
|
%{_libdir}/libsbc.so
|
||||||
|
|
||||||
%changelog
|
%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
|
* Fri Mar 9 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.3-9
|
||||||
- Add gcc BR
|
- Add gcc BR
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-9
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
|
Loading…
Reference in New Issue
Block a user