alsa-lib/alsa-lib.spec

473 lines
16 KiB
RPMSpec
Raw Normal View History

#define prever rc3
#define prever_dot .rc3
#define postver a
%define version_alsa_lib 1.2.9
%define version_alsa_ucm 1.2.9
2021-05-28 11:39:51 +00:00
%define version_alsa_tplg 1.2.5
2019-11-13 15:14:16 +00:00
Summary: The Advanced Linux Sound Architecture (ALSA) library
Name: alsa-lib
2019-11-13 15:14:16 +00:00
Version: %{version_alsa_lib}
2023-05-16 15:50:39 +00:00
Release: 2%{?prever_dot}%{?dist}
License: LGPLv2+
URL: http://www.alsa-project.org/
Source: ftp://ftp.alsa-project.org/pub/lib/%{name}-%{version}%{?prever}%{?postver}.tar.bz2
2019-11-13 15:14:16 +00:00
Source1: ftp://ftp.alsa-project.org/pub/lib/alsa-ucm-conf-%{version_alsa_ucm}.tar.bz2
Source2: ftp://ftp.alsa-project.org/pub/lib/alsa-topology-conf-%{version_alsa_tplg}.tar.bz2
Source10: asound.conf
Source11: modprobe-dist-alsa.conf
Source12: modprobe-dist-oss.conf
2019-12-09 12:42:45 +00:00
Source40: alsa-ucm-conf.patch
2019-12-03 20:15:52 +00:00
Patch0: alsa-git.patch
2020-06-18 17:43:36 +00:00
Patch1: alsa-lib-1.2.3.1-config.patch
2018-10-24 10:36:19 +00:00
Patch2: alsa-lib-1.0.14-glibc-open.patch
BuildRequires: doxygen
2016-07-20 17:12:29 +00:00
BuildRequires: autoconf automake libtool
BuildRequires: make
%description
The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
functionality to the Linux operating system.
This package includes the ALSA runtime libraries to simplify application
programming and provide higher level functionality as well as support for
the older OSS API, providing binary compatibility for most OSS programs.
%package devel
Summary: Development files from the ALSA library
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
%description devel
The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
functionality to the Linux operating system.
This package includes the ALSA development libraries for developing
against the ALSA libraries and interfaces.
2015-02-04 11:35:13 +00:00
%package -n alsa-ucm
2018-10-16 08:27:40 +00:00
Summary: ALSA Use Case Manager configuration
BuildArch: noarch
License: BSD
2021-12-10 10:38:41 +00:00
Requires: %{name} >= %{version_alsa_lib}
2015-02-04 11:35:13 +00:00
%description -n alsa-ucm
2018-10-16 08:27:40 +00:00
The Advanced Linux Sound Architecture (ALSA) Use Case Manager configuration
contains alsa-lib configuration of Audio input/output names and routing
%package -n alsa-topology
Summary: ALSA Topology configuration
BuildArch: noarch
License: BSD
2021-12-10 10:38:41 +00:00
Requires: %{name} >= %{version_alsa_lib}
2018-10-16 08:27:40 +00:00
%description -n alsa-topology
The Advanced Linux Sound Architecture (ALSA) topology configuration
contains alsa-lib configuration of SoC topology
2015-02-04 11:35:13 +00:00
%prep
2008-08-15 16:22:42 +00:00
%setup -q -n %{name}-%{version}%{?prever}%{?postver}
2023-05-04 07:50:51 +00:00
%patch -P0 -p1 -b .alsa-git
%patch -P1 -p1 -b .config
%patch -P2 -p1 -b .glibc-open
%build
2020-07-01 18:24:26 +00:00
# This package uses top level ASM constructs which are incompatible with LTO.
# Top level ASMs are often used to implement symbol versioning. gcc-10
# introduces a new mechanism for symbol versioning which works with LTO.
# Converting packages to use that mechanism instead of toplevel ASMs is
# recommended.
2020-10-15 16:39:53 +00:00
# Note: The v1.2.4 contains changes wich are compatible with gcc-10 LTO
# although using the old ASM constructs.
2020-10-19 10:29:43 +00:00
# Enable custom LTO flags
2020-10-15 17:43:55 +00:00
%define _lto_cflags -flto -ffat-lto-objects -flto-partition=none
2020-07-01 18:24:26 +00:00
autoreconf -vif
2012-01-28 16:04:34 +00:00
%configure --disable-aload --with-plugindir=%{_libdir}/alsa-lib --disable-alisp
# Remove useless /usr/lib64 rpath on 64bit archs
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags} V=1
make doc
%install
2018-10-16 15:34:41 +00:00
%global sysmodprobedir %{_prefix}/lib/modprobe.d
make DESTDIR=%{buildroot} install
# Install global configuration files
2008-09-11 08:54:02 +00:00
mkdir -p -m 755 %{buildroot}/etc
install -p -m 644 %{SOURCE10} %{buildroot}/etc
# Install the modprobe files for ALSA
2018-10-16 15:34:41 +00:00
mkdir -p -m 755 %{buildroot}%{sysmodprobedir}
install -p -m 644 %{SOURCE11} %{buildroot}%{sysmodprobedir}/dist-alsa.conf
2013-04-11 14:04:03 +00:00
# bug#926973, place this file to the doc directory
install -p -m 644 %{SOURCE12} .
2019-11-13 15:14:16 +00:00
# Create UCM directories
mkdir -p %{buildroot}/%{_datadir}/alsa/ucm
2019-11-13 15:14:16 +00:00
mkdir -p %{buildroot}/%{_datadir}/alsa/ucm2
# Unpack UCMs
2020-02-19 11:08:29 +00:00
tar xvjf %{SOURCE1} -C %{buildroot}/%{_datadir}/alsa --strip-components=1 "*/ucm" "*/ucm2"
2019-12-09 12:42:45 +00:00
patch -d %{buildroot}/%{_datadir}/alsa -p1 < %{SOURCE40}
2018-10-16 08:27:40 +00:00
# Create topology directory
mkdir -p %{buildroot}/%{_datadir}/alsa/topology
2019-11-13 15:14:16 +00:00
# Unpack topologies
2020-02-19 11:08:29 +00:00
tar xvjf %{SOURCE2} -C %{buildroot}/%{_datadir}/alsa --strip-components=1 "*/topology"
2019-11-13 15:14:16 +00:00
2018-10-16 08:27:40 +00:00
# Remove libtool archives.
2014-07-24 22:57:50 +00:00
find %{buildroot} -name '*.la' -delete
2019-05-10 07:38:58 +00:00
# Remove /usr/include/asoundlib.h
rm %{buildroot}/%{_includedir}/asoundlib.h
%ldconfig_scriptlets
%files
2015-02-04 11:35:13 +00:00
%{!?_licensedir:%global license %%doc}
%license COPYING
%doc doc/asoundrc.txt modprobe-dist-oss.conf
%config %{_sysconfdir}/asound.conf
/%{_libdir}/libasound.so.*
/%{_libdir}/libatopology.so.*
%{_bindir}/aserver
2018-04-03 07:38:08 +00:00
#{_libdir}/alsa-lib/
%{_datadir}/alsa/
2015-02-04 11:35:13 +00:00
%exclude %{_datadir}/alsa/ucm
2019-11-13 15:14:16 +00:00
%exclude %{_datadir}/alsa/ucm2
2018-10-16 08:27:40 +00:00
%exclude %{_datadir}/alsa/topology
2018-10-16 15:34:41 +00:00
%{sysmodprobedir}/dist-*
%files devel
2015-02-04 11:35:13 +00:00
%doc TODO doc/doxygen/
%{_includedir}/alsa/
%{_includedir}/sys/asoundlib.h
%{_libdir}/libasound.so
2019-11-13 15:14:16 +00:00
%{_libdir}/libatopology.so
%{_libdir}/pkgconfig/alsa.pc
2019-11-13 15:14:16 +00:00
%{_libdir}/pkgconfig/alsa-topology.pc
%{_datadir}/aclocal/alsa.m4
2015-02-04 11:35:13 +00:00
%files -n alsa-ucm
# BSD
2015-02-04 11:35:13 +00:00
%{_datadir}/alsa/ucm
2019-11-13 15:14:16 +00:00
%{_datadir}/alsa/ucm2
2015-02-04 11:35:13 +00:00
2018-10-16 08:27:40 +00:00
%files -n alsa-topology
# BSD
2018-10-16 08:27:40 +00:00
%{_datadir}/alsa/topology
%changelog
2023-05-16 15:50:39 +00:00
* Tue May 16 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.9-2
- update ucm (nhlt-dmic-info)
* Thu May 4 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.9-1
- update to 1.2.9
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Wed Dec 7 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.8-2
- update lib code to latest git
- update ucm configs to latest git
* Mon Oct 24 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.8-1
- update to 1.2.8
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jul 8 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.7.1-2
- update to 1.2.7.2
* Fri Jun 17 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.7.1-1
- update to 1.2.7.1
* Tue May 31 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.7-1
- update to 1.2.7
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Dec 17 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6.1-3
- updated alsa-ucm-conf to 1.2.6.3
2021-12-10 10:38:41 +00:00
* Fri Dec 10 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6.1-2
- updated alsa-lib to 1.2.6.1 and alsa-ucm-conf to 1.2.6.2
2021-12-09 11:24:17 +00:00
* Thu Dec 9 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6-3
2021-12-09 09:26:39 +00:00
- device open fixes from upstream
2021-12-06 12:17:48 +00:00
* Mon Dec 6 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6-1
- update to 1.2.6
* Sat Nov 13 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 1.2.5.1-4
- Add Rockchip ES8316 support
2021-08-31 07:55:42 +00:00
* Tue Aug 31 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5.1-3
- add UCM related fixes
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-06-14 11:51:54 +00:00
* Mon Jun 14 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5.1-1
- update to 1.2.5.1
2021-06-02 17:21:12 +00:00
* Wed Jun 2 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5-2
- add upstream fixes (conf + ucm)
2021-05-28 11:39:51 +00:00
* Fri May 28 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5-1
- update to 1.2.5
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2020-10-19 10:29:43 +00:00
* Mon Oct 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.4-4
2020-10-15 16:39:53 +00:00
- update to 1.2.4
- enable LTO
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3.2-5
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-07-01 18:24:26 +00:00
* Wed Jul 1 2020 Jeff Law <law@redhat.com> - 1.2.3.2-3
- Disable LTO
2020-06-29 11:11:52 +00:00
* Mon Jun 29 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3.2-2
2020-06-29 11:04:27 +00:00
- update to 1.2.3.2
2020-06-18 17:43:36 +00:00
* Thu Jun 18 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3.1-1
- update to 1.2.3.1
2020-06-08 13:10:26 +00:00
* Sun Jun 7 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3-8
2020-06-07 17:43:52 +00:00
- update to 1.2.3
2020-04-06 15:25:46 +00:00
* Mon Apr 6 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-2
- UCM2 fixes (RemoveDevice), bug#1786723
2020-02-19 11:24:40 +00:00
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
2020-04-06 15:25:46 +00:00
- Updated to 1.2.2
2020-02-19 11:08:29 +00:00
2020-02-09 19:58:39 +00:00
* Sun Feb 9 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.1.2-6
2020-02-09 19:05:41 +00:00
- More UCM2 related fixes
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2019-12-09 12:42:45 +00:00
* Mon Dec 9 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1.2-4
- Fixes for sof-hda-dsp UCM2 configuration
2019-12-03 20:15:52 +00:00
* Tue Dec 3 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1.2-3
2019-12-03 20:01:13 +00:00
- Fixed more UCM2 related issues
2019-11-29 15:44:49 +00:00
* Fri Nov 29 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1.2-1
- Updated to 1.2.1.2
2019-11-19 15:31:15 +00:00
* Tue Nov 19 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1.1-1
- Updated to 1.2.1.1
2019-11-14 17:18:51 +00:00
* Wed Nov 13 2019 Jaroslav Kysela <perex@perex.cz> - 1.2.1-3
2019-11-13 15:14:16 +00:00
- Updated to 1.2.1
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-05-10 07:38:58 +00:00
* Fri May 10 2019 Jaroslav Kysela <perex@perex.cz> - 1.1.9-1
- Updated to 1.1.9
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2019-01-07 13:27:49 +00:00
* Mon Jan 7 2019 Jaroslav Kysela <perex@perex.cz> - 1.1.8-1
- Updated to 1.1.8
* Tue Dec 25 2018 Hans de Goede <hdegoede@redhat.com> - 1.1.7-3
- Fix broken chtrt5645 UCM profile, fixing mic input on chtrt5645 devices
2018-10-24 10:36:19 +00:00
* Wed Oct 24 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.7-2
2018-10-16 08:27:40 +00:00
- Moved topology files to alsa-topology
- Updated to 1.1.7
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Apr 04 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-2
- Changed add-on directory to /etc/alsa/conf.d
2018-04-03 07:38:08 +00:00
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
- Updated to 1.1.6
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-11-14 08:19:52 +00:00
* Tue Nov 14 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.5-1
- Updated to 1.1.5
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-13 06:44:27 +00:00
* Tue Jun 13 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.4.1-1
- Updated to 1.1.4.1
2017-05-12 09:12:42 +00:00
* Fri May 12 2017 Jaroslav Kysela <perex@perex.cz> - 1.1.4-1
- Updated to 1.1.4
* Mon Mar 20 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.3-3
- Add upstream patch for Raspberry Pi HDMI audio
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-12-20 12:54:48 +00:00
* Tue Dec 20 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.3-1
- Updated to 1.1.3
2016-08-02 17:24:45 +00:00
* Tue Aug 2 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.2-1
- Updated to 1.1.2
2016-07-20 17:12:29 +00:00
* Tue Jul 19 2016 Bastien Nocera <bnocera@redhat.com> - 1.1.1-2
- Add Surface 3 configuration file
2016-03-31 14:40:11 +00:00
* Thu Mar 31 2016 Jaroslav Kysela <perex@perex.cz> - 1.1.1-1
- Updated to 1.1.1
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-11-09 08:09:06 +00:00
* Mon Nov 9 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-3
2015-11-05 13:58:33 +00:00
- Replaced source files with the alsa-lib v1.1.0 final
2015-11-09 08:09:06 +00:00
* Thu Nov 5 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-2
- Replaced source files with the alsa-lib v1.1.0 test2
2015-10-27 13:58:42 +00:00
* Tue Oct 27 2015 Jaroslav Kysela <perex@perex.cz> - 1.1.0-1
2015-11-09 08:09:06 +00:00
- Updated to 1.1.0 test1
2015-10-27 13:58:42 +00:00
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-02-26 13:19:31 +00:00
* Thu Feb 26 2015 Jaroslav Kysela <perex@perex.cz> - 1.0.29-1
- Updated to 1.0.29
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.0.28-4
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
2015-02-04 11:35:13 +00:00
* Tue Feb 3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.28-3
- Add UCM sub package
- Use %%license
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.28-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-24 22:57:50 +00:00
* Thu Jul 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.28-1
- Update to 1.0.28
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.27.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu Aug 1 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.27.2-2
- Fix build with unversioned %%{_docdir_fmt}.
2013-07-08 12:40:04 +00:00
* Mon Jul 08 2013 Jaroslav Kysela <perex@perex.cz> - 1.0.27.2-1
- Updated to 1.0.27.2
2013-05-30 12:58:11 +00:00
* Thu May 30 2013 Jaroslav Kysela <perex@perex.cz> - 1.0.27.1-2
- Fixed bug#953352
2013-05-21 09:03:10 +00:00
* Tue May 21 2013 Jaroslav Kysela <perex@perex.cz> - 1.0.27.1-1
- Updated to 1.0.27.1
* Tue May 07 2013 Rex Dieter <rdieter@fedoraproject.org> 1.0.27-3
- pull in upstream fix for building in C90 mode
2013-04-11 13:51:30 +00:00
2013-05-07 13:52:00 +00:00
* Thu Apr 11 2013 Jaroslav Kysela <perex@perex.cz> - 1.0.27-2
2013-04-11 13:51:30 +00:00
- move dist-oss.conf to doc as modprobe-dist-oss.conf
* Thu Apr 11 2013 Jaroslav Kysela <perex@perex.cz> - 1.0.27-1
2013-04-11 13:30:03 +00:00
- Updated to 1.0.27
* Wed Apr 03 2013 Stephen Gallagher <sgallagh@redhat.com> - 1.0.26-4
- Add upstream patch to explicitly include sys/types.h
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.26-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Mon Dec 3 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.26-2
- Create and own ucm directory so alsaucm doesn't crash.
- Cleanup and modernise spec
2012-09-06 11:18:28 +00:00
* Thu Sep 6 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.26-1
- Updated to 1.0.26
* Thu Jul 26 2012 Michael Schwendt <mschwendt@fedoraproject.org> - 1.0.25-6
- Don't package ancient ChangeLog that ends at alsa-lib 0.2.0 (#510212).
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Wed May 2 2012 Josh Boyer <jwboyer@redhat.com> - 1.0.25-4
- Install ALSA related module conf files
2012-02-01 09:59:16 +00:00
* Wed Feb 1 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.25-3
- Remove the pulse audio configuration from /etc/asound.conf
2012-01-28 16:04:34 +00:00
* Sat Jan 28 2012 Jaroslav Kysela <jkysela@redhat.com> - 1.0.25-1
- Updated to 1.0.25 final
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.24-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2011-01-28 09:34:23 +00:00
* Fri Jan 28 2011 Jaroslav Kysela <jkysela@redhat.com> - 1.0.24-1
- Updated to 1.0.24 final
* Tue Nov 9 2010 Jochen Schmitt <Jochen herr-schmitt de> 1.0.23-2
- Set plugindir to %%{_libdir}/alsa-lib (bz#651507)
2010-04-16 11:41:44 +00:00
* Fri Apr 16 2010 Jaroslav Kysela <jkysela@redhat.com> - 1.0.23-1
- Updated to 1.0.23 final
2009-12-28 15:28:09 +00:00
* Mon Dec 28 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.22-1
- Updated to 1.0.22 final
- Fix file descriptor leak in pcm_hw plugin
- Fix sound distortions for S24_LE - softvol plugin
2009-09-09 09:52:36 +00:00
* Wed Sep 9 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.21-3
- Add Speaker and Beep control names to mixer weight list
- Fix redhat bug #521988
2009-09-02 08:11:20 +00:00
* Wed Sep 2 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.21-1
2009-09-09 09:52:36 +00:00
- Updated to 1.0.21 final
2009-09-02 08:11:20 +00:00
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-05-06 09:11:46 +00:00
* Wed May 6 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.20-1
- Updated to 1.0.20 final
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.19-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 4 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.19-2
- Make doxygen documentation same for all architectures (bz#465205)
2009-01-20 10:16:50 +00:00
* Tue Jan 20 2009 Jaroslav Kysela <jkysela@redhat.com> - 1.0.19-1
- Updated to 1.0.19 final