14
0

16 Commits

Author SHA256 Message Date
ce4895e1d5 Accepting request 1246649 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1246649
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=6
2025-02-18 18:12:46 +00:00
d8983e7648 Accepting request 1246606 from home:glaubitz:branches:devel:languages:python
- Update to 0.11.0
  * Fixed `Mixer.getvolume()` returning outdated value
  * Fixed PCM crashing with some sample formats due to buffer size
    miscalculation
  * Fixed `PCM.read()` ignoring overruns (regression in 0.10.0)
  * Reverted to `PCM.write()` not throwing an exception on playback buffer
    underrun; instead, return -EPIPE like `PCM.read()` does on overrun
  * Added `PCM.avail()` and `PCM.polldescriptors_revents()` functions
  * Added `nominal_bits` and `physical_bits` entries to `PCM.info()`'s
    return value
  * Added Python type hint file, and adjusted documentation accordingly
  * Improvements to the examples, in particular isine.py
- Ignore PollDescriptorArgsTest when running testsuite
- Limit Python files matched in %files section
- Switch build system from setuptools to pyproject.toml
  * Add python-pip and python-wheel to BuildRequires
  * Replace %python_build with %pyproject_wheel
  * Replace %python_install with %pyproject_install
- Switch package to modern Python Stack on SLE-15
  * Use Python 3.11 on SLE-15 by default
  * Drop support for older Python versions

OBS-URL: https://build.opensuse.org/request/show/1246606
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=17
2025-02-18 11:47:37 +00:00
cee67b780b Accepting request 1084882 from devel:languages:python
- update to 0.10.0:
  * support for periods in the PCM constructor.
  * new functions PCM.state(), PCM.drop() and PCM.drain()
  * improved underrun/overrun handling
  * documentation improvements/consolidation
  * more sampling rates
  * bug fixes

OBS-URL: https://build.opensuse.org/request/show/1084882
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=5
2023-05-05 13:58:17 +00:00
4f8edb87b6 - update to 0.10.0:
* support for periods in the PCM constructor.
  * new functions PCM.state(), PCM.drop() and PCM.drain()
  * improved underrun/overrun handling
  * documentation improvements/consolidation
  * more sampling rates
  * bug fixes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=15
2023-05-04 21:31:28 +00:00
d13a1f951c Accepting request 1008242 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1008242
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=4
2022-10-06 05:42:33 +00:00
aaaa7b592b Accepting request 1008052 from home:yarunachalam:branches:devel:languages:python
- Update to version 0.9.2 
  Fix alsamixer_getvolume (#112 from @stephensp)

OBS-URL: https://build.opensuse.org/request/show/1008052
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=13
2022-10-05 14:57:34 +00:00
43b0eaa838 Accepting request 974811 from devel:languages:python
- Update to 0.9.1:
  * Support decibel, percentage, and raw volumes in getvolume, setvolume,
    and getrange (#109 from @chrisdiamand):
- Use pytest for running the testsuite, and skip tests that require a
  sound card. Remove the bcond so the testsuite runs. 
- Update docs shipped to be more documentation-like.

OBS-URL: https://build.opensuse.org/request/show/974811
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=3
2022-05-04 13:11:03 +00:00
484e20b993 - Update to 0.9.1:
* Support decibel, percentage, and raw volumes in getvolume, setvolume,
    and getrange (#109 from @chrisdiamand):
- Use pytest for running the testsuite, and skip tests that require a
  sound card. Remove the bcond so the testsuite runs. 
- Update docs shipped to be more documentation-like.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=11
2022-05-04 06:14:21 +00:00
c24e739f3c Accepting request 965068 from devel:languages:python
- update to 0.9.0:
  * 'getformats()' returns a dictionary of name / value pairs, one for each of the card's
    supported formats - e.g. '{"U8": 1, "S16_LE": 2}',
  * 'getchannels()' returns a list of the supported channel numbers, e.g. '[1, 2]',
  * 'getrates()' returns supported sample rates for the device, e.g. '[48000]',
  * 'getratebounds()' returns the device's official minimum and maximum supported 
     sample rates as a tuple, e.g. '(4000, 48000)'.
  * Prevent hang on close after capturing audio
  * Return an empty string/bytestring when 'read()' detects an 
    overrun. Previously the returned data was undefined
  * Unlimited setperiod buffer size when reading frames

OBS-URL: https://build.opensuse.org/request/show/965068
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=2
2022-03-26 21:32:07 +00:00
953f80ce7a - update to 0.9.0:
* 'getformats()' returns a dictionary of name / value pairs, one for each of the card's
    supported formats - e.g. '{"U8": 1, "S16_LE": 2}',
  * 'getchannels()' returns a list of the supported channel numbers, e.g. '[1, 2]',
  * 'getrates()' returns supported sample rates for the device, e.g. '[48000]',
  * 'getratebounds()' returns the device's official minimum and maximum supported 
     sample rates as a tuple, e.g. '(4000, 48000)'.
  * Prevent hang on close after capturing audio
  * Return an empty string/bytestring when 'read()' detects an 
    overrun. Previously the returned data was undefined
  * Unlimited setperiod buffer size when reading frames

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=9
2022-03-26 18:46:17 +00:00
9ceafd7b67 Accepting request 568477 from devel:languages:python
New package, needed by mycroft-core

OBS-URL: https://build.opensuse.org/request/show/568477
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyalsaaudio?expand=0&rev=1
2018-01-24 14:30:39 +00:00
Todd R
dea65d04ac Accepting request 535067 from home:TheBlackCat:branches:devel:languages:python
- Implement single-spec version
- Update to version 0.8.4
  * See changelog at https://github.com/larsimmisch/pyalsaaudio/blob/0.8.4/CHANGES

OBS-URL: https://build.opensuse.org/request/show/535067
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=5
2017-10-23 15:01:52 +00:00
2d7422734b Accepting request 456943 from home:jcsl:LXDE
Update to version 0.8.2

OBS-URL: https://build.opensuse.org/request/show/456943
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=4
2017-03-04 10:22:46 +00:00
Sascha Peilicke
93df7af0ee Python3 moved to devel:languages:python3
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=3
2013-06-17 12:52:49 +00:00
Sascha Peilicke
9cd9aec541 Accepting request 148429 from home:posophe:branches:devel:languages:python
Made required changes

OBS-URL: https://build.opensuse.org/request/show/148429
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=2
2013-01-15 14:14:04 +00:00
Sascha Peilicke
de8261b5f1 - Initial version
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyalsaaudio?expand=0&rev=1
2011-09-02 08:11:11 +00:00