forked from pool/alsa-utils
Accepting request 663691 from home:tiwai:branches:multimedia:libs
- Update to alsa-utils 1.1.8: * Core: Makefile.am: add README.md to EXTRA_DIST axfer: add support for libffado transmission backend axfer: add unit test for container interface axfer: add an entry point for this command initial version of .travis.yml rename and update README.md * Audio Transfer utility: axfer: add an explanation about advantages/issues of Timer-based scheduling model axfer: add an explanation about Timer-based scheduling model axfer: add an explanation about IRQ-based scheduling model axfer: add text for compatibility loss of sw parameter in libasound backend axfer: fulfill manual section for libasound backend axfer: print help for libasound backend axfer: fulfill manual section for libffado backend axfer: print help for libffado backend axfer: correct description about signal handling axfer: fix typo in axfer(1) manual axfer: fix no return statement in print_help() function axfer: enable each backend to print own help axfer: print help text of transfer subcommand just for common options axfer: print help text of list subcommand axfer: print help text of command entry axfer: add a section about design of transfer subcommand axfer: add a section to describe compatibility to aplay(1) axfer: add a manual for transfer subcommand axfer: add a manual for list subcommand axfer: add a manual for entry point axfer: check whether a terminal is referred for stdio OBS-URL: https://build.opensuse.org/request/show/663691 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/alsa-utils?expand=0&rev=151
This commit is contained in:
parent
23a558a874
commit
f102bb55f3
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1db27fb54ab7fdeb54b00d68b8a174808ffea198cfbd67e3c959482194e1540a
|
||||
size 1205754
|
3
alsa-utils-1.1.8.tar.bz2
Normal file
3
alsa-utils-1.1.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd9bf528922b3829a91913b89a1858c58a0b24271a7b5f529923aa9ea12fa4cf
|
||||
size 1262174
|
13
alsa-utils-configure-version-revert.patch
Normal file
13
alsa-utils-configure-version-revert.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 3c11f3554021..b411ce866794 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE
|
||||
AM_MAINTAINER_MODE([enable])
|
||||
|
||||
AM_GNU_GETTEXT([external])
|
||||
-AM_GNU_GETTEXT_VERSION([0.19.8])
|
||||
+AM_GNU_GETTEXT_VERSION([0.15])
|
||||
|
||||
dnl Checks for programs.
|
||||
|
@ -1,3 +1,85 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 8 12:23:11 CET 2019 - tiwai@suse.de
|
||||
|
||||
- Update to alsa-utils 1.1.8:
|
||||
* Core:
|
||||
Makefile.am: add README.md to EXTRA_DIST
|
||||
axfer: add support for libffado transmission backend
|
||||
axfer: add unit test for container interface
|
||||
axfer: add an entry point for this command
|
||||
initial version of .travis.yml
|
||||
rename and update README.md
|
||||
* Audio Transfer utility:
|
||||
axfer: add an explanation about advantages/issues of Timer-based scheduling model
|
||||
axfer: add an explanation about Timer-based scheduling model
|
||||
axfer: add an explanation about IRQ-based scheduling model
|
||||
axfer: add text for compatibility loss of sw parameter in libasound backend
|
||||
axfer: fulfill manual section for libasound backend
|
||||
axfer: print help for libasound backend
|
||||
axfer: fulfill manual section for libffado backend
|
||||
axfer: print help for libffado backend
|
||||
axfer: correct description about signal handling
|
||||
axfer: fix typo in axfer(1) manual
|
||||
axfer: fix no return statement in print_help() function
|
||||
axfer: enable each backend to print own help
|
||||
axfer: print help text of transfer subcommand just for common options
|
||||
axfer: print help text of list subcommand
|
||||
axfer: print help text of command entry
|
||||
axfer: add a section about design of transfer subcommand
|
||||
axfer: add a section to describe compatibility to aplay(1)
|
||||
axfer: add a manual for transfer subcommand
|
||||
axfer: add a manual for list subcommand
|
||||
axfer: add a manual for entry point
|
||||
axfer: check whether a terminal is referred for stdio
|
||||
axfer: truncate parsed arguments before operating subcommand
|
||||
axfer: use transfer subcommand as a default for compatibility mode to aplay(1)
|
||||
axfer: use second argument in command line for transmission direction
|
||||
axfer: apply refactoring in list subcommand for new command system
|
||||
axfer: apply refactoring to list subcommand for backward compatibility to aplay(1)
|
||||
axfer: add support for libffado transmission backend
|
||||
axfer: obsolete some unimplemented options
|
||||
axfer: add support for timer-based scheduling model with MMAP operation
|
||||
axfer: add an implementation of waiter for epoll(7)
|
||||
axfer: add an implementation of waiter for select(2)
|
||||
axfer: add an implementation of waiter for poll(2)
|
||||
axfer: add an option for waiter type
|
||||
axfer: add a common interface of waiter for I/O event notification
|
||||
axfer: add options for plugins in alsa-lib
|
||||
axfer: add options for software parameters of PCM substream
|
||||
axfer: add options for buffer arrangement
|
||||
axfer: add an option to suppress event waiting
|
||||
axfer: add support for MMAP PCM operation
|
||||
axfer: add support for non-blocking operation
|
||||
axfer: add an option to finish transmission at XRUN
|
||||
axfer: add options related to duration and obsolete '--max-file-size' option
|
||||
axfer: add an option to dump available hardware parameters
|
||||
axfer: add informative output and an option to suppress it
|
||||
axfer: add a sub-command to transfer data frames
|
||||
axfer: add support for blocking data transmission operation of alsa-lib PCM API
|
||||
axfer: add support to transfer data frames by alsa-lib PCM APIs
|
||||
axfer: add a parser for command-line options
|
||||
axfer: add a common interface to transfer data frames
|
||||
axfer: add a unit test for mapper interface
|
||||
axfer: add support for a mapper for multiple target
|
||||
axfer: add support for a mapper for single target
|
||||
axfer: add a common interface to align data frames on different layout
|
||||
axfer: add unit test for container interface
|
||||
axfer: add support for a container of raw data
|
||||
axfer: add support for a container of Creative Tech. voice format
|
||||
axfer: add support for a container of Sparc AU format
|
||||
axfer: add support for a container of Microsoft/IBM RIFF/Wave format
|
||||
axfer: add a common interface to handle a file with audio-specific data format
|
||||
axfer: add a sub-command to print list of PCMs/devices
|
||||
axfer: add an entry point for this command
|
||||
* alsaloop:
|
||||
alsaloop: more avail_min cleanups
|
||||
* alsatplg (topology):
|
||||
topology/topology.c: drop unneeded <dlfcn.h> include
|
||||
* aplay/arecord:
|
||||
aplay: improve available conditions for '--samples' and '--duration' options
|
||||
aplay: add a paragraph for '--samples' ('-s') option to aplay manual
|
||||
aplay: delete paragraph for obsoleted '--sleep-min' ('-s') option from aplay manual
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 22 11:24:10 UTC 2018 - Christian Boltz <suse-beta@cboltz.de>
|
||||
|
||||
@ -17,6 +99,9 @@ Wed Oct 17 11:33:25 CEST 2018 - tiwai@suse.de
|
||||
* alsactl: improved disconnection handling
|
||||
* compile warning fixes
|
||||
* aplay: add missing block brackets
|
||||
- Prepare a patch to allow build with old automake for old distros
|
||||
(not applied yet, though):
|
||||
alsa-utils-configure-version-revert.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 4 14:57:35 CEST 2018 - tiwai@suse.de
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package alsa-utils
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -33,7 +33,7 @@ BuildRequires: systemd
|
||||
%define _udevdir /lib/udev
|
||||
%endif
|
||||
Name: alsa-utils
|
||||
Version: 1.1.7
|
||||
Version: 1.1.8
|
||||
Release: 0
|
||||
Summary: Advanced Linux Sound Architecture Utilities
|
||||
License: GPL-2.0-or-later
|
||||
@ -41,6 +41,7 @@ Group: Productivity/Multimedia/Sound/Players
|
||||
Url: http://www.alsa-project.org/
|
||||
Source: ftp://ftp.alsa-project.org/pub/utils/alsa-utils-%{version}.tar.bz2
|
||||
Source1: 01beep.conf
|
||||
Patch101: alsa-utils-configure-version-revert.patch
|
||||
BuildRequires: alsa-devel
|
||||
BuildRequires: automake
|
||||
BuildRequires: fftw3-devel
|
||||
@ -74,12 +75,17 @@ and test audio before and after PM state changes.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%if 0%{?do_autoreconf}
|
||||
%patch101 -p1
|
||||
# fix stupid automake's automatic action
|
||||
sed -i -e's/EXTRA_DIST= config.rpath /EXTRA_DIST=/' Makefile.am
|
||||
%endif
|
||||
|
||||
%build
|
||||
export AUTOMAKE_JOBS="%{?_smp_mflags}"
|
||||
%if 0%{?do_autoreconf}
|
||||
autoreconf -fi
|
||||
%endif
|
||||
opts=""
|
||||
%if %{use_systemd}
|
||||
opts="$opts --with-systemdsystemunitdir=%{_unitdir}"
|
||||
@ -113,7 +119,7 @@ mkdir -p %{buildroot}%{_localstatedir}/lib/alsa
|
||||
%else
|
||||
%doc COPYING
|
||||
%endif
|
||||
%doc ChangeLog INSTALL README TODO
|
||||
%doc ChangeLog INSTALL README.md TODO
|
||||
%doc seq/aconnect/README*
|
||||
%doc seq/aseqnet/README*
|
||||
%{_mandir}/man*/*
|
||||
|
Loading…
Reference in New Issue
Block a user