Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
1
.alsa-tools.metadata
Normal file
1
.alsa-tools.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
64c3d8ec578386861e2c6f3b0a926453cdac2497 SOURCES/alsa-tools-1.2.2.tar.bz2
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/alsa-tools-1.1.6.tar.bz2
|
SOURCES/alsa-tools-1.2.2.tar.bz2
|
||||||
/alsa-tools-1.1.6.tar.bz2
|
|
||||||
|
8
SOURCES/hwmixvolume-python.patch
Normal file
8
SOURCES/hwmixvolume-python.patch
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
--- alsa-tools-1.1.7/hwmixvolume/hwmixvolume~ 2018-10-16 10:08:36.000000000 +0200
|
||||||
|
+++ alsa-tools-1.1.7/hwmixvolume/hwmixvolume 2018-10-16 12:39:39.639476411 +0200
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/env python
|
||||||
|
+#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# hwmixvolume - ALSA hardware mixer volume control applet
|
||||||
|
# Copyright (c) 2009-2010 Clemens Ladisch
|
@ -24,28 +24,31 @@
|
|||||||
|
|
||||||
Summary: Specialist tools for ALSA
|
Summary: Specialist tools for ALSA
|
||||||
Name: alsa-tools
|
Name: alsa-tools
|
||||||
Version: 1.1.6
|
Version: 1.2.2
|
||||||
Release: 1%{?dist}
|
Release: 6%{?dist}
|
||||||
|
|
||||||
# Checked at least one source file from all the sub-projects contained in
|
# Checked at least one source file from all the sub-projects contained in
|
||||||
# the source tarball and they are consistent GPLv2+ - TJ 2007-11-15
|
# the source tarball and they are consistent GPLv2+ - TJ 2007-11-15
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/Multimedia
|
|
||||||
URL: http://www.alsa-project.org/
|
URL: http://www.alsa-project.org/
|
||||||
Source: ftp://ftp.alsa-project.org/pub/tools/%{name}-%{version}.tar.bz2
|
Source: ftp://ftp.alsa-project.org/pub/tools/%{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
Source1: 90-alsa-tools-firmware.rules
|
Source1: 90-alsa-tools-firmware.rules
|
||||||
|
|
||||||
|
Patch1: hwmixvolume-python.patch
|
||||||
|
|
||||||
|
BuildRequires: gcc gcc-c++
|
||||||
BuildRequires: alsa-lib-devel >= %{version}
|
BuildRequires: alsa-lib-devel >= %{version}
|
||||||
%if 0%{!?_without_tools:1}
|
%if 0%{!?_without_tools:1}
|
||||||
BuildRequires: gtk+-devel
|
BuildRequires: gtk+-devel
|
||||||
BuildRequires: gtk2-devel
|
BuildRequires: gtk2-devel
|
||||||
BuildRequires: gtk3-devel
|
BuildRequires: gtk3-devel
|
||||||
BuildRequires: fltk-devel
|
BuildRequires: fltk-devel
|
||||||
|
BuildRequires: make
|
||||||
Buildrequires: desktop-file-utils
|
Buildrequires: desktop-file-utils
|
||||||
Requires: xorg-x11-fonts-misc
|
Requires: xorg-x11-fonts-misc
|
||||||
# Needed for hwmixvolume
|
# Needed for hwmixvolume
|
||||||
Requires: python-alsa
|
Requires: python3-alsa
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -73,7 +76,6 @@ certain sound cards.
|
|||||||
|
|
||||||
%package firmware
|
%package firmware
|
||||||
Summary: ALSA tools for uploading firmware to some soundcards
|
Summary: ALSA tools for uploading firmware to some soundcards
|
||||||
Group: Applications/System
|
|
||||||
Requires: udev
|
Requires: udev
|
||||||
Requires: alsa-firmware
|
Requires: alsa-firmware
|
||||||
Requires: fxload
|
Requires: fxload
|
||||||
@ -91,6 +93,7 @@ The following tools are available:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q -n %{name}-%{version}
|
||||||
|
%patch1 -p1 -b .hwmixvolume-python
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mv seq/sbiload . ; rm -rf seq
|
mv seq/sbiload . ; rm -rf seq
|
||||||
@ -142,18 +145,6 @@ rm -f %{buildroot}/lib/udev/tascam_fw.usermap
|
|||||||
mkdir -p %{buildroot}/lib/udev/rules.d
|
mkdir -p %{buildroot}/lib/udev/rules.d
|
||||||
install -m 644 %{SOURCE1} %{buildroot}/lib/udev/rules.d
|
install -m 644 %{SOURCE1} %{buildroot}/lib/udev/rules.d
|
||||||
|
|
||||||
%post
|
|
||||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
|
||||||
|
|
||||||
%postun
|
|
||||||
if [ $1 -eq 0 ] ; then
|
|
||||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
|
||||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
||||||
fi
|
|
||||||
|
|
||||||
%posttrans
|
|
||||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
||||||
|
|
||||||
%if 0%{!?_without_tools:1}
|
%if 0%{!?_without_tools:1}
|
||||||
%files
|
%files
|
||||||
%dir %{_pkgdocdir}
|
%dir %{_pkgdocdir}
|
||||||
@ -211,9 +202,54 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.2-6
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.2-5
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
|
||||||
|
- Updated to 1.2.2
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Dec 09 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.7-2
|
||||||
|
- Switch python2-alsa dependency to python3-alsa as hwmixvolume runs on Python 3
|
||||||
|
|
||||||
|
* Tue Oct 16 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.7-1
|
||||||
|
- Updated to 1.1.7
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
|
* Tue Apr 03 2018 Jaroslav Kysela <perex@perex.cz> - 1.1.6-1
|
||||||
- Updated to 1.1.6
|
- Updated to 1.1.6
|
||||||
|
|
||||||
|
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.1.5-4
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Thu Feb 22 2018 Tim Jackson <rpm@timj.co.uk> - 1.1.5-3
|
||||||
|
- Add missing BuildRequire on gcc
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
Loading…
Reference in New Issue
Block a user