Compare commits
58 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b5135ae23 | ||
|
|
e5f06f10f7 | ||
|
|
af596e344c | ||
|
|
6832b4487f | ||
|
|
712def8d07 | ||
|
|
d2872e5bc6 | ||
|
|
234977f2a8 | ||
|
|
b81158d8ee | ||
|
|
c6dfe02d6f | ||
|
|
b4926c6a54 | ||
|
|
8af5b81ac1 | ||
|
|
6b0bfe6502 | ||
|
|
65c6a14b10 | ||
|
|
76b6ba63bc | ||
|
|
df95d97fce | ||
|
|
af2b8fab73 | ||
|
|
57be7e615a | ||
|
|
855d495e27 | ||
|
|
3c01a4c1f0 | ||
|
|
7e840cf34e | ||
|
|
1556eeb427 | ||
|
|
ad627191eb | ||
|
|
8a5252591e | ||
|
|
f966ddd17b | ||
|
|
b88d4e972a | ||
|
|
491d99741b | ||
|
|
f0e629bce8 | ||
|
|
91d2bb1e33 | ||
|
|
04ecda8dbc | ||
|
|
f893b96bd5 | ||
|
|
12e78e55bb | ||
|
|
7d224376e6 | ||
|
|
5ae71dd87b | ||
|
|
c5ed6b97d8 | ||
|
|
e51733b089 | ||
|
|
0690a510cf | ||
|
|
2f018e242d | ||
|
|
db4558654a | ||
|
|
7c9baba24d | ||
|
|
51bdb272fc | ||
|
|
d95509ce2c | ||
|
|
7e12cf7d48 | ||
|
|
cdd4619adc | ||
|
|
62a14c55a4 | ||
|
|
2dc8c4c448 | ||
|
|
67cbc921db | ||
|
|
f2a39f9a19 | ||
|
|
8cf23961fc | ||
|
|
867def31f6 | ||
|
|
b65f2966e5 | ||
|
|
0bc5d5375f | ||
|
|
6ef6d1ed32 | ||
|
|
c358c9c301 | ||
|
|
362038f2d6 | ||
|
|
fcba1a6023 | ||
|
|
fc57d3c019 | ||
|
|
bf45105506 | ||
|
|
bdf0a12489 |
8 changed files with 191 additions and 32 deletions
|
|
@ -1 +0,0 @@
|
|||
|
||||
|
|
@ -12,4 +12,3 @@ Type=oneshot
|
|||
RemainAfterExit=true
|
||||
ExecStart=-/sbin/alsactl -E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf --initfile=/lib/alsa/init/00main restore
|
||||
ExecStop=/sbin/alsactl -E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf store
|
||||
StandardOutput=syslog
|
||||
|
|
|
|||
0
alsa-utils-git.patch
Normal file
0
alsa-utils-git.patch
Normal file
174
alsa-utils.spec
174
alsa-utils.spec
|
|
@ -1,23 +1,27 @@
|
|||
%define baseversion 1.2.1
|
||||
#define fixversion .2
|
||||
%define baseversion 1.2.15
|
||||
%define fixversion .2
|
||||
%global _hardened_build 1
|
||||
|
||||
%global utils_patch 0
|
||||
|
||||
Summary: Advanced Linux Sound Architecture (ALSA) utilities
|
||||
Name: alsa-utils
|
||||
Version: %{baseversion}%{?fixversion}
|
||||
Release: 5%{?dist}
|
||||
License: GPLv2+
|
||||
Release: 2%{?dist}
|
||||
License: GPL-2.0-or-later
|
||||
URL: http://www.alsa-project.org/
|
||||
Source: ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}.tar.bz2
|
||||
Patch1: alsa-git.patch
|
||||
Source4: alsaunmute
|
||||
Source5: alsaunmute.1
|
||||
Source10: alsa.rules
|
||||
Source11: alsactl.conf
|
||||
Source20: alsa-restore.service
|
||||
Source22: alsa-state.service
|
||||
%if %{utils_patch}
|
||||
Patch1: alsa-git.patch
|
||||
%endif
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: alsa-lib-devel >= %{baseversion}
|
||||
BuildRequires: libsamplerate-devel
|
||||
BuildRequires: ncurses-devel
|
||||
|
|
@ -30,6 +34,7 @@ Requires(preun): systemd
|
|||
Requires(postun): systemd
|
||||
# use latest alsa-lib - the executables in this package requires latest API
|
||||
Requires: alsa-lib%{?_isa} >= %{baseversion}
|
||||
Requires: alsa-ucm >= %{baseversion}
|
||||
|
||||
%description
|
||||
This package contains command line utilities for the Advanced Linux Sound
|
||||
|
|
@ -37,7 +42,6 @@ Architecture (ALSA).
|
|||
|
||||
%package -n alsa-ucm-utils
|
||||
Summary: Advanced Linux Sound Architecture (ALSA) - Use Case Manager
|
||||
Requires: alsa-ucm >= %{baseversion}
|
||||
|
||||
%description -n alsa-ucm-utils
|
||||
This package contains Use Case Manager tools for Advanced Linux Sound
|
||||
|
|
@ -54,6 +58,7 @@ Architecture (ALSA) framework.
|
|||
%package alsabat
|
||||
Summary: Advanced Linux Sound Architecture (ALSA) - Basic Audio Tester
|
||||
BuildRequires: fftw-devel
|
||||
BuildRequires: make
|
||||
|
||||
%description alsabat
|
||||
This package contains tool for basic audio testing using Advanced Linux Sound
|
||||
|
|
@ -61,12 +66,17 @@ Architecture (ALSA) framework and Fast Fourier Transform library.
|
|||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
#%patch1 -p1
|
||||
%if %{utils_patch}
|
||||
%patch -P1 -p1 -b .alsa-git
|
||||
%endif
|
||||
|
||||
%build
|
||||
autoreconf -vif
|
||||
%configure CFLAGS="$RPM_OPT_FLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" --disable-alsaconf \
|
||||
--with-udev-rules-dir=%{_prefix}/lib/udev/rules.d \
|
||||
--with-systemdsystemunitdir=%{_unitdir}
|
||||
--with-systemdsystemunitdir=%{_unitdir} \
|
||||
--with-alsactl-udev-args="-E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf --initfile=/lib/alsa/init/00main" \
|
||||
--with-alsactl-udev-extra-test=""
|
||||
make %{?_smp_mflags}
|
||||
cp %{SOURCE4} .
|
||||
|
||||
|
|
@ -76,11 +86,8 @@ cp %{SOURCE4} .
|
|||
make install DESTDIR=%{buildroot}
|
||||
%find_lang %{name}
|
||||
|
||||
# Install ALSA udev rules
|
||||
# Install ALSA udev rules and services
|
||||
mkdir -p %{buildroot}/%{_prefix}/lib/udev/rules.d
|
||||
install -p -m 644 %{SOURCE10} %{buildroot}/%{_prefix}/lib/udev/rules.d/90-alsa-restore.rules
|
||||
sed -e 's,@bindir@,%{_bindir},g' alsaucm/89-alsa-ucm.rules.in > alsaucm/89-alsa-ucm.rules
|
||||
install -p -m 644 alsaucm/89-alsa-ucm.rules %{buildroot}/%{_prefix}/lib/udev/rules.d/89-alsa-ucm.rules
|
||||
mkdir -p %{buildroot}/%{_unitdir}
|
||||
install -p -m 644 %{SOURCE20} %{buildroot}/%{_unitdir}/alsa-restore.service
|
||||
install -p -m 644 %{SOURCE22} %{buildroot}/%{_unitdir}/alsa-state.service
|
||||
|
|
@ -105,31 +112,36 @@ install -p -m 644 %{SOURCE11} %{buildroot}/etc/alsa
|
|||
# Create /var/lib/alsa tree
|
||||
mkdir -p -m 755 %{buildroot}%{_sharedstatedir}/alsa
|
||||
|
||||
find %{buildroot} -name "*.la" -exec rm {} \;
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc COPYING ChangeLog README.md TODO
|
||||
%doc COPYING ChangeLog README.md TODO alsamixer/alsamixer.rc.example
|
||||
%config /etc/alsa/*
|
||||
%{_prefix}/lib/udev/rules.d/*
|
||||
%exclude %{_prefix}/lib/udev/rules.d/*alsa-ucm*
|
||||
%{_unitdir}/*
|
||||
%{_unitdir}/sound.target.wants/*
|
||||
#{_unitdir}/sound.target.wants/*
|
||||
%{alsacfgdir}/init/*
|
||||
%{_bindir}/aconnect
|
||||
%{_sbindir}/alsactl
|
||||
%{_bindir}/alsaloop
|
||||
%{_bindir}/alsamixer
|
||||
%{_bindir}/alsaunmute
|
||||
%{_sbindir}/alsa-info.sh
|
||||
%{_bindir}/amidi
|
||||
%{_bindir}/amixer
|
||||
%{_bindir}/aplay
|
||||
%{_bindir}/aplaymidi
|
||||
%{_bindir}/aplaymidi2
|
||||
%{_bindir}/arecord
|
||||
%{_bindir}/arecordmidi
|
||||
%{_bindir}/arecordmidi2
|
||||
%{_bindir}/aseqdump
|
||||
%{_bindir}/aseqnet
|
||||
%{_bindir}/aseqsend
|
||||
%{_bindir}/axfer
|
||||
%{_bindir}/iecset
|
||||
%{_bindir}/nhlt-dmic-info
|
||||
%{_bindir}/speaker-test
|
||||
%{_sbindir}/*
|
||||
%exclude %{_sbindir}/alsabat-test.sh
|
||||
%{_datadir}/alsa/
|
||||
%{_datadir}/sounds/*
|
||||
%{_mandir}/man7/*
|
||||
|
|
@ -141,17 +153,21 @@ mkdir -p -m 755 %{buildroot}%{_sharedstatedir}/alsa
|
|||
%{_mandir}/man1/amixer.1.gz
|
||||
%{_mandir}/man1/aplay.1.gz
|
||||
%{_mandir}/man1/aplaymidi.1.gz
|
||||
%{_mandir}/man1/aplaymidi2.1.gz
|
||||
%{_mandir}/man1/arecord.1.gz
|
||||
%{_mandir}/man1/arecordmidi.1.gz
|
||||
%{_mandir}/man1/arecordmidi2.1.gz
|
||||
%{_mandir}/man1/aseqdump.1.gz
|
||||
%{_mandir}/man1/aseqnet.1.gz
|
||||
%{_mandir}/man1/aseqsend.1.gz
|
||||
%{_mandir}/man1/axfer.1.gz
|
||||
%{_mandir}/man1/axfer-list.1.gz
|
||||
%{_mandir}/man1/axfer-transfer.1.gz
|
||||
%{_mandir}/man1/iecset.1.gz
|
||||
%{_mandir}/man1/speaker-test.1.gz
|
||||
%{_mandir}/man1/aconnect.1.gz
|
||||
%{_mandir}/man1/alsa-info.sh.1.gz
|
||||
%{_mandir}/man8/alsa-info.sh.8.gz
|
||||
%{_mandir}/man1/nhlt-dmic-info.1.gz
|
||||
|
||||
%dir /etc/alsa/
|
||||
%dir %{alsacfgdir}/
|
||||
|
|
@ -159,13 +175,13 @@ mkdir -p -m 755 %{buildroot}%{_sharedstatedir}/alsa
|
|||
%dir %{_sharedstatedir}/alsa/
|
||||
|
||||
%files -n alsa-ucm-utils
|
||||
%{_prefix}/lib/udev/rules.d/*alsa-ucm*
|
||||
%{_bindir}/alsaucm
|
||||
%{_mandir}/man1/alsaucm.1.gz
|
||||
|
||||
%files -n alsa-topology-utils
|
||||
%{_bindir}/alsatplg
|
||||
%{_mandir}/man1/alsatplg.1.gz
|
||||
%{_libdir}/alsa-topology/libalsatplg_module_*
|
||||
|
||||
%files alsabat
|
||||
%{_bindir}/alsabat
|
||||
|
|
@ -195,6 +211,122 @@ fi
|
|||
%systemd_postun_with_restart alsa-state.service
|
||||
|
||||
%changelog
|
||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.15.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Thu Jan 8 2026 Jaroslav Kysela <perex@perex.cz> - 1.2.15.2-1
|
||||
* Updated to 1.2.15.2
|
||||
|
||||
* Thu Jan 1 2026 Jaroslav Kysela <perex@perex.cz> - 1.2.15.1-3
|
||||
* Apply fix to alsactl (card detection issue)
|
||||
|
||||
* Fri Dec 19 2025 Jaroslav Kysela <perex@perex.cz> - 1.2.15.1-1
|
||||
* Updated to 1.2.15.1
|
||||
|
||||
* Mon Dec 8 2025 Jaroslav Kysela <perex@perex.cz> - 1.2.15-2
|
||||
* Updated to 1.2.15
|
||||
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Mon Apr 14 2025 Jaroslav Kysela <perex@perex.cz> - 1.2.14-1
|
||||
* Updated to 1.2.14
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Nov 14 2024 Jaroslav Kysela <perex@perex.cz> - 1.2.13-2
|
||||
* Updated to 1.2.13
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Tue Jun 11 2024 Jaroslav Kysela <perex@perex.cz> - 1.2.12-1
|
||||
* Updated to 1.2.12
|
||||
|
||||
* Mon Jan 29 2024 Jaroslav Kysela <perex@perex.cz> - 1.2.11-1
|
||||
* Updated to 1.2.11
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Sep 1 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.10-1
|
||||
* Updated to 1.2.10
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jun 6 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.9-3
|
||||
* SPDX license
|
||||
|
||||
* Tue May 16 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.9-2
|
||||
* Add nhlt-dmic-info utility
|
||||
|
||||
* Thu May 4 2023 Jaroslav Kysela <perex@perex.cz> - 1.2.9-1
|
||||
* Updated to 1.2.9
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Oct 24 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.8-1
|
||||
* Updated to 1.2.8
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue May 31 2022 Jaroslav Kysela <perex@perex.cz> - 1.2.7-1
|
||||
* Updated to 1.2.7
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Dec 6 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.6-1
|
||||
* Updated to 1.2.6
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Jun 14 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5.1-1
|
||||
* Updated to 1.2.5.1
|
||||
|
||||
* Thu Jun 3 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5-3
|
||||
* Fixes for 1.2.5 (alsactl)
|
||||
|
||||
* Mon May 31 2021 Jaroslav Kysela <perex@perex.cz> - 1.2.5-2
|
||||
* Updated to 1.2.5
|
||||
|
||||
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.4-3
|
||||
- Rebuilt for updated systemd-rpm-macros
|
||||
See https://pagure.io/fesco/issue/2583.
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Oct 15 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.4-1
|
||||
* Updated to 1.2.4
|
||||
|
||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-6
|
||||
- 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-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 3 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3-4
|
||||
* Fix the .spec (changelog0)
|
||||
|
||||
* Sun Jun 7 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.3-3
|
||||
* Updated to 1.2.3
|
||||
|
||||
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
|
||||
* Updated to 1.2.2
|
||||
|
||||
* Sun Feb 9 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.1-6
|
||||
- UCM and topology fixes
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
ACTION=="add", SUBSYSTEM=="sound", KERNEL=="controlC*", KERNELS!="card*", GOTO="alsa_restore_go"
|
||||
GOTO="alsa_restore_end"
|
||||
|
||||
LABEL="alsa_restore_go"
|
||||
TEST!="/etc/alsa/state-daemon.conf", RUN+="/sbin/alsactl -E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf --initfile=/lib/alsa/init/00main restore /dev/$name"
|
||||
TEST=="/etc/alsa/state-daemon.conf", RUN+="/sbin/alsactl -E ALSA_CONFIG_PATH=/etc/alsa/alsactl.conf --initfile=/lib/alsa/init/00main nrestore /dev/$name"
|
||||
|
||||
LABEL="alsa_restore_end"
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (alsa-utils-1.2.1.tar.bz2) = b7729659cd9809197dc30042f522f5103ff41ddc047f13f9c733c93f7e91a26f90cd864c70e654d12ef7a552b1d9ebe2727a24ec9fad03560cb7cdea906662ec
|
||||
SHA512 (alsa-utils-1.2.15.2.tar.bz2) = 13ca15a63bcbf81a4643ef03e391200d7523335bc300e290756089c4cfeccb9773cf6b77f9fcf4b80e6aa2e8c5e33a2c86c9173f1feb480aedf5ecda0f7c47cd
|
||||
|
|
|
|||
28
tests/run_tests.sh
Executable file
28
tests/run_tests.sh
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -ex
|
||||
|
||||
# is alsactl present and working?
|
||||
alsactl --version
|
||||
|
||||
# is amixer present and working?
|
||||
amixer --help
|
||||
|
||||
# is alsamixer present and working?
|
||||
alsamixer --version
|
||||
|
||||
# is amidi present and working?
|
||||
amidi --version
|
||||
|
||||
# is speaker-test preset and working?
|
||||
speaker-test -h
|
||||
|
||||
# aplay test (like for alsa-lib)
|
||||
str=$(aplay -L | grep -E "^null$")
|
||||
if [ "$str" != "null" ]; then
|
||||
echo "The 'null' pcm plugin was not found!"
|
||||
exit 99
|
||||
fi
|
||||
|
||||
# alsa-info.sh present and working?
|
||||
alsa-info.sh --help
|
||||
9
tests/tests.yml
Normal file
9
tests/tests.yml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
tests:
|
||||
- simple:
|
||||
dir: .
|
||||
run: ./run_tests.sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue