Compare commits
No commits in common. "c10s" 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: 2.0
|
Version: 1.3
|
||||||
Release: 6%{?dist}
|
Release: 9%{?dist}
|
||||||
Summary: Sub Band Codec used by bluetooth A2DP
|
Summary: Sub Band Codec used by bluetooth A2DP
|
||||||
|
|
||||||
License: GPL-2.0-only AND LGPL-2.1-or-later
|
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,45 +16,35 @@ 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}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%setup -q
|
||||||
|
|
||||||
%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,61 +53,6 @@ find %{buildroot} -type f -name "*.la" -delete
|
|||||||
%{_libdir}/libsbc.so
|
%{_libdir}/libsbc.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2.0-6
|
|
||||||
- Bump release for October 2024 mass rebuild:
|
|
||||||
Resolves: RHEL-64018
|
|
||||||
|
|
||||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.0-5
|
|
||||||
- Bump release for June 2024 mass rebuild
|
|
||||||
|
|
||||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Nov 11 2022 Peter Robinson <pbrobinson@fedoraproject.org> - 2.0-1
|
|
||||||
- Update to 2.0
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 15 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5-1
|
|
||||||
- Update to 1.5
|
|
||||||
|
|
||||||
* 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-10
|
|
||||||
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