commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2020-07-30 10:02:01 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.3592 (New) Package is "python-sounddevice" Thu Jul 30 10:02:01 2020 rev:9 rq:823365 version:0.4.0 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2020-03-26 23:35:22.094820409 +0100 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.3592/python-sounddevice.changes 2020-07-30 10:03:40.871364510 +0200 @@ -1,0 +2,9 @@ +Wed Jul 29 07:27:48 UTC 2020 - Marketa Calabkova + +- Update to 0.4.0 + * Drop support for Python 2.x + * Fix memory issues in `play()`, `rec()` and `playrec()` + * Example application ``play_stream.py`` + * Remove ``print_devices()``, `query_devices()` can be used instead + +--- Old: sounddevice-0.3.15.tar.gz New: sounddevice-0.4.0.tar.gz Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.s0AstM/_old 2020-07-30 10:03:42.227365646 +0200 +++ /var/tmp/diff_new_pack.s0AstM/_new 2020-07-30 10:03:42.227365646 +0200 @@ -17,8 +17,9 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define skip_python2 1 Name: python-sounddevice -Version:0.3.15 +Version:0.4.0 Release:0 Summary:Module to play and record sound with Python License:MIT ++ sounddevice-0.3.15.tar.gz -> sounddevice-0.4.0.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.15/CONTRIBUTING.rst new/sounddevice-0.4.0/CONTRIBUTING.rst --- old/sounddevice-0.3.15/CONTRIBUTING.rst 2019-09-20 09:17:44.0 +0200 +++ new/sounddevice-0.4.0/CONTRIBUTING.rst 2020-07-15 17:23:35.0 +0200 @@ -1,17 +1,98 @@ Contributing - + If you find bugs, errors, omissions or other things that need improvement, please create an issue or a pull request at https://github.com/spatialaudio/python-sounddevice/. Contributions are always welcome! + +Reporting Problems +-- + +When creating an issue at +https://github.com/spatialaudio/python-sounddevice/issues, +please make sure to provide as much useful information as possible. + +You can use Markdown formatting to show Python code, e.g. :: + + I have created a script named `my_script.py`: + + ```python + import sounddevice as sd + + fs = 48000 + duration = 1.5 + + data = sd.rec(int(duration * fs), channels=99) + sd.wait() + print(data.shape) + ``` + +Please provide minimal code +(remove everything that's not necessary to show the problem), +but make sure that the code example still has everything that's needed to run it, +including all ``import`` statements. + +You should of course also show what happens when you run your code, e.g. :: + + Running my script, I got this error: + + ``` + $ python3 my_script.py + Expression 'parameters->channelCount <= maxChans' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514 + Expression 'ValidateParameters( inputParameters, hostApi, StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2818 + Traceback (most recent call last): + File "my_script.py", line 6, in + data = sd.rec(int(duration * fs), channels=99) + ... + sounddevice.PortAudioError: Error opening InputStream: Invalid number of channels [PaErrorCode -9998] + ``` + +Please remember to provide the full command invocation and the full output. +You should only remove lines of output when you know they are irrelevant. + +You should also mention the operating system and host API you are using +(e.g. "Linux/ALSA" or "macOS/Core Audio" or "Windows/WASAPI"). + +If your problem is related to a certain hardware device, +you should provide the list of devices as reported by :: + + python3 -m sounddevice + +If your problem has to do with the version of the PortAudio library you are using, +you should provide the output of this script:: + + import sounddevice as sd + print(sd._libname) + print(sd.get_portaudio_version()) + +If you don't want to clutter the issue description with a huge load of gibberish, +you can use the HTML tag to show some content only on demand:: + + + + ``` + $ python3 -m sounddevice + 0 Built-in Line Input, Core Audio (2 in, 0 out) + > 1 Built-in Digital Input, Core Audio (2 in, 0 out) + < 2 Built-in Output, Core Audio (0 in, 2 out) + 3 Built-in Line Output, Core Audio (0 in, 2 out) + 4 Built-in Digit
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2020-03-26 23:35:01 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.3160 (New) Package is "python-sounddevice" Thu Mar 26 23:35:01 2020 rev:8 rq:788589 version:0.3.15 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2020-03-14 09:55:32.203118783 +0100 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.3160/python-sounddevice.changes 2020-03-26 23:35:22.094820409 +0100 @@ -1,0 +2,6 @@ +Thu Mar 26 14:13:08 UTC 2020 - Marketa Calabkova + +- Update to 0.3.15 + * This will be the last release supporting Python 2.x! + +--- Old: sounddevice-0.3.14.tar.gz New: sounddevice-0.3.15.tar.gz Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.sK02ez/_old 2020-03-26 23:35:22.630820602 +0100 +++ /var/tmp/diff_new_pack.sK02ez/_new 2020-03-26 23:35:22.634820604 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-sounddevice -Version:0.3.14 +Version:0.3.15 Release:0 Summary:Module to play and record sound with Python License:MIT ++ sounddevice-0.3.14.tar.gz -> sounddevice-0.3.15.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.14/LICENSE new/sounddevice-0.3.15/LICENSE --- old/sounddevice-0.3.14/LICENSE 2019-08-25 18:29:59.0 +0200 +++ new/sounddevice-0.3.15/LICENSE 2020-03-18 09:54:19.0 +0100 @@ -1,4 +1,4 @@ -Copyright (c) 2015-2019 Matthias Geier +Copyright (c) 2015-2020 Matthias Geier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.14/NEWS.rst new/sounddevice-0.3.15/NEWS.rst --- old/sounddevice-0.3.14/NEWS.rst 2019-09-25 11:39:53.0 +0200 +++ new/sounddevice-0.3.15/NEWS.rst 2020-03-18 10:11:15.0 +0100 @@ -1,3 +1,6 @@ +0.3.15 (2020-03-18): + * This will be the last release supporting Python 2.x! + 0.3.14 (2019-09-25): * Examples ``play_sine.py`` and ``rec_gui.py`` * Redirect ``stderr`` only during initialization diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.14/PKG-INFO new/sounddevice-0.3.15/PKG-INFO --- old/sounddevice-0.3.14/PKG-INFO 2019-09-25 11:45:40.0 +0200 +++ new/sounddevice-0.3.15/PKG-INFO 2020-03-18 10:14:15.994104400 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sounddevice -Version: 0.3.14 +Version: 0.3.15 Summary: Play and Record Sound with Python Home-page: http://python-sounddevice.readthedocs.io/ Author: Matthias Geier @@ -12,6 +12,8 @@ This Python_ module provides bindings for the PortAudio_ library and a few convenience functions to play and record NumPy_ arrays containing audio signals. +The ``sounddevice`` module is available for Linux, macOS and Windows. + Documentation: https://python-sounddevice.readthedocs.io/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.14/README.rst new/sounddevice-0.3.15/README.rst --- old/sounddevice-0.3.14/README.rst 2019-09-20 09:17:44.0 +0200 +++ new/sounddevice-0.3.15/README.rst 2019-12-02 23:53:37.0 +0100 @@ -4,6 +4,8 @@ This Python_ module provides bindings for the PortAudio_ library and a few convenience functions to play and record NumPy_ arrays containing audio signals. +The ``sounddevice`` module is available for Linux, macOS and Windows. + Documentation: https://python-sounddevice.readthedocs.io/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.14/doc/api/checking-hardware.rst new/sounddevice-0.3.15/doc/api/checking-hardware.rst --- old/sounddevice-0.3.14/doc/api/checking-hardware.rst1970-01-01 01:00:00.0 +0100 +++ new/sounddevice-0.3.15/doc/api/checking-hardware.rst2019-12-16 11:59:34.0 +0100 @@ -0,0 +1,23 @@ +Checking Available Hardware +=== + +.. currentmodule:: sounddevice + +.. autosummary:: + :nosignatures: + + query_devices + DeviceList + query_hostapis + check_input_settings + check_output_settings + +.. autofunction:
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2020-03-14 09:55:17 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.3160 (New) Package is "python-sounddevice" Sat Mar 14 09:55:17 2020 rev:7 rq:784571 version:0.3.14 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2019-12-03 15:21:39.890526530 +0100 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.3160/python-sounddevice.changes 2020-03-14 09:55:32.203118783 +0100 @@ -1,0 +2,5 @@ +Fri Mar 13 08:38:23 UTC 2020 - Tomáš Chvátal + +- Fix fdupes call + +--- Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.hkB1uq/_old 2020-03-14 09:55:32.987119359 +0100 +++ /var/tmp/diff_new_pack.hkB1uq/_new 2020-03-14 09:55:32.987119359 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sounddevice # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,8 +22,7 @@ Release:0 Summary:Module to play and record sound with Python License:MIT -Group: Development/Languages/Python -Url:http://python-sounddevice.readthedocs.io/ +URL:https://python-sounddevice.readthedocs.io/ Source: https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-%{version}.tar.gz BuildRequires: %{python_module cffi >= 1.0} BuildRequires: %{python_module numpy} @@ -35,14 +34,12 @@ Requires: python-cffi >= 1.0 Recommends: python-numpy BuildArch: noarch - %python_subpackages %description This Python module provides bindings for the PortAudio library and a few convenience functions to play and record NumPy arrays containing audio signals. - %prep %setup -q -n sounddevice-%{version} @@ -52,7 +49,7 @@ %install %python_install -%python_expand fdupes %{buildroot}%{$python_sitelib} +%python_expand %fdupes %{buildroot}%{$python_sitelib} %files %{python_files} %doc NEWS.rst README.rst examples
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2019-12-03 15:21:36 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.4691 (New) Package is "python-sounddevice" Tue Dec 3 15:21:36 2019 rev:6 rq:752985 version:0.3.14 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2019-06-03 18:55:23.524428371 +0200 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.4691/python-sounddevice.changes 2019-12-03 15:21:39.890526530 +0100 @@ -1,0 +2,7 @@ +Mon Dec 2 16:14:17 UTC 2019 - Todd R + +- Update to 0.3.14 + * Examples play_sine.py and rec_gui.py + * Redirect stderr only during initialization + +--- Old: sounddevice-0.3.13.tar.gz New: sounddevice-0.3.14.tar.gz Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.JdLPX8/_old 2019-12-03 15:21:41.518525785 +0100 +++ /var/tmp/diff_new_pack.JdLPX8/_new 2019-12-03 15:21:41.522525783 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-sounddevice -Version:0.3.13 +Version:0.3.14 Release:0 Summary:Module to play and record sound with Python License:MIT ++ sounddevice-0.3.13.tar.gz -> sounddevice-0.3.14.tar.gz ++ 1748 lines of diff (skipped)
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2019-06-03 18:54:59 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.5148 (New) Package is "python-sounddevice" Mon Jun 3 18:54:59 2019 rev:5 rq:707047 version:0.3.13 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2019-05-22 11:15:22.650541026 +0200 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.5148/python-sounddevice.changes 2019-06-03 18:55:23.524428371 +0200 @@ -1,0 +2,5 @@ +Sun Jun 2 19:27:21 UTC 2019 - Jan Engelhardt + +- Use noun phrase in summary. + +--- Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.GDtIgR/_old 2019-06-03 18:55:24.620427964 +0200 +++ /var/tmp/diff_new_pack.GDtIgR/_new 2019-06-03 18:55:24.624427963 +0200 @@ -20,7 +20,7 @@ Name: python-sounddevice Version:0.3.13 Release:0 -Summary:Play and Record Sound with Python +Summary:Module to play and record sound with Python License:MIT Group: Development/Languages/Python Url:http://python-sounddevice.readthedocs.io/ @@ -39,7 +39,7 @@ %python_subpackages %description -This Python_ module provides bindings for the PortAudio library and a few +This Python module provides bindings for the PortAudio library and a few convenience functions to play and record NumPy arrays containing audio signals.
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2019-05-22 11:15:20 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.5148 (New) Package is "python-sounddevice" Wed May 22 11:15:20 2019 rev:4 rq:704374 version:0.3.13 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2018-12-24 11:44:12.529302295 +0100 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.5148/python-sounddevice.changes 2019-05-22 11:15:22.650541026 +0200 @@ -1,0 +2,7 @@ +Tue May 21 07:20:34 UTC 2019 - pgaj...@suse.com + +- version update to 0.3.13 + * Examples asyncio_coroutines.py and asyncio_generators.py +- package examples + +--- Old: sounddevice-0.3.12.tar.gz New: sounddevice-0.3.13.tar.gz Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.vS1wij/_old 2019-05-22 11:15:24.926540607 +0200 +++ /var/tmp/diff_new_pack.vS1wij/_new 2019-05-22 11:15:24.926540607 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-sounddevice # -# 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 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-sounddevice -Version:0.3.12 +Version:0.3.13 Release:0 Summary:Play and Record Sound with Python License:MIT @@ -26,6 +26,7 @@ Url:http://python-sounddevice.readthedocs.io/ Source: https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-%{version}.tar.gz BuildRequires: %{python_module cffi >= 1.0} +BuildRequires: %{python_module numpy} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: portaudio @@ -46,6 +47,7 @@ %setup -q -n sounddevice-%{version} %build +chmod 644 examples/* %python_build %install @@ -53,8 +55,11 @@ %python_expand fdupes %{buildroot}%{$python_sitelib} %files %{python_files} -%doc NEWS.rst README.rst +%doc NEWS.rst README.rst examples %license LICENSE %{python_sitelib}/* +%check +# no upstream tests, examples needs devices + %changelog ++ sounddevice-0.3.12.tar.gz -> sounddevice-0.3.13.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.12/LICENSE new/sounddevice-0.3.13/LICENSE --- old/sounddevice-0.3.12/LICENSE 2018-05-04 09:43:31.0 +0200 +++ new/sounddevice-0.3.13/LICENSE 2019-02-27 10:40:35.0 +0100 @@ -1,4 +1,4 @@ -Copyright (c) 2015-2018 Matthias Geier +Copyright (c) 2015-2019 Matthias Geier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.12/NEWS.rst new/sounddevice-0.3.13/NEWS.rst --- old/sounddevice-0.3.12/NEWS.rst 2018-09-02 11:05:13.0 +0200 +++ new/sounddevice-0.3.13/NEWS.rst 2019-02-27 10:40:35.0 +0100 @@ -1,3 +1,6 @@ +0.3.13 (2019-02-27): + * Examples ``asyncio_coroutines.py`` and ``asyncio_generators.py`` + 0.3.12 (2018-09-02): * Support for the dylib from Anaconda diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.12/PKG-INFO new/sounddevice-0.3.13/PKG-INFO --- old/sounddevice-0.3.12/PKG-INFO 2018-09-02 11:08:24.0 +0200 +++ new/sounddevice-0.3.13/PKG-INFO 2019-02-27 10:41:45.0 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sounddevice -Version: 0.3.12 +Version: 0.3.13 Summary: Play and Record Sound with Python Home-page: http://python-sounddevice.readthedocs.io/ Author: Matthias Geier diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.12/doc/conf.py new/sounddevice-0.3.13/doc/conf.py --- old/sounddevice-0.3.12/doc/conf.py 2018-08-22 12:16:04.0 +0200 +++ new/sounddevice-0.3.13/doc/conf.py 2019-02-27 10:40:35.0 +0100 @@ -75,7 +75,7 @@ # General information about the project. authors = 'Matthias Geier' project = 'python-sounddevice' -copyright = '2018, ' + authors +copyright = '2019, ' + authors # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used i
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2018-12-24 11:44:12 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new.28833 (New) Package is "python-sounddevice" Mon Dec 24 11:44:12 2018 rev:3 rq:659682 version:0.3.12 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2018-10-31 13:22:10.711016081 +0100 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new.28833/python-sounddevice.changes 2018-12-24 11:44:12.529302295 +0100 @@ -1,0 +2,5 @@ +Tue Dec 4 12:54:30 UTC 2018 - Matej Cepl + +- Remove superfluous devel dependency for noarch package + +--- Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.x2Jivz/_old 2018-12-24 11:44:12.917301951 +0100 +++ /var/tmp/diff_new_pack.x2Jivz/_new 2018-12-24 11:44:12.917301951 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sounddevice # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -26,7 +26,6 @@ Url:http://python-sounddevice.readthedocs.io/ Source: https://files.pythonhosted.org/packages/source/s/sounddevice/sounddevice-%{version}.tar.gz BuildRequires: %{python_module cffi >= 1.0} -BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: portaudio
commit python-sounddevice for openSUSE:Factory
Hello community, here is the log from the commit of package python-sounddevice for openSUSE:Factory checked in at 2018-10-31 13:21:39 Comparing /work/SRC/openSUSE:Factory/python-sounddevice (Old) and /work/SRC/openSUSE:Factory/.python-sounddevice.new (New) Package is "python-sounddevice" Wed Oct 31 13:21:39 2018 rev:2 rq:645617 version:0.3.12 Changes: --- /work/SRC/openSUSE:Factory/python-sounddevice/python-sounddevice.changes 2018-05-15 10:31:56.667400152 +0200 +++ /work/SRC/openSUSE:Factory/.python-sounddevice.new/python-sounddevice.changes 2018-10-31 13:22:10.711016081 +0100 @@ -1,0 +2,6 @@ +Wed Oct 31 01:49:20 UTC 2018 - Todd R + +- Update to 0.3.12 + * Support for the dylib from Anaconda + +--- Old: sounddevice-0.3.11.tar.gz New: sounddevice-0.3.12.tar.gz Other differences: -- ++ python-sounddevice.spec ++ --- /var/tmp/diff_new_pack.2yJRFL/_old 2018-10-31 13:22:11.227015601 +0100 +++ /var/tmp/diff_new_pack.2yJRFL/_new 2018-10-31 13:22:11.231015597 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-sounddevice -Version:0.3.11 +Version:0.3.12 Release:0 Summary:Play and Record Sound with Python License:MIT @@ -28,6 +28,8 @@ BuildRequires: %{python_module cffi >= 1.0} BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: portaudio BuildRequires: python-rpm-macros Requires: portaudio Requires: python-cffi >= 1.0 @@ -49,9 +51,9 @@ %install %python_install +%python_expand fdupes %{buildroot}%{$python_sitelib} %files %{python_files} -%defattr(-,root,root,-) %doc NEWS.rst README.rst %license LICENSE %{python_sitelib}/* ++ sounddevice-0.3.11.tar.gz -> sounddevice-0.3.12.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.11/NEWS.rst new/sounddevice-0.3.12/NEWS.rst --- old/sounddevice-0.3.11/NEWS.rst 2018-05-07 16:49:40.0 +0200 +++ new/sounddevice-0.3.12/NEWS.rst 2018-09-02 11:05:13.0 +0200 @@ -1,3 +1,6 @@ +0.3.12 (2018-09-02): + * Support for the dylib from Anaconda + 0.3.11 (2018-05-07): * Support for the DLL from ``conda-forge`` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sounddevice-0.3.11/PKG-INFO new/sounddevice-0.3.12/PKG-INFO --- old/sounddevice-0.3.11/PKG-INFO 2018-05-07 16:57:08.0 +0200 +++ new/sounddevice-0.3.12/PKG-INFO 2018-09-02 11:08:24.0 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sounddevice -Version: 0.3.11 +Version: 0.3.12 Summary: Play and Record Sound with Python Home-page: http://python-sounddevice.readthedocs.io/ Author: Matthias Geier @@ -21,277 +21,9 @@ License: MIT -- see the file ``LICENSE`` for details. -.. image:: https://badge.fury.io/py/sounddevice.svg - :target: https://pypi.python.org/pypi/sounddevice/ - -.. image:: https://repology.org/badge/vertical-allrepos/python:sounddevice.svg - :target: https://repology.org/metapackage/python:sounddevice - -Requirements - - -Python: - Of course, you'll need Python_. - Any version where CFFI (see below) is supported should work. - If you don't have Python installed yet, you should get one of the - distributions which already include CFFI and NumPy (and many other useful - things), e.g. Anaconda_ or WinPython_. - -pip/setuptools: - Those are needed for the installation of the Python module and its - dependencies. Most systems will have these installed already, but if not, - you should install it with your package manager or you can download and - install ``pip`` and ``setuptools`` as described on the `pip installation`_ - page. - If you happen to have ``pip`` but not ``setuptools``, use this command:: - - python3 -m pip install setuptools --user - - To upgrade to a newer version of an already installed package (including - ``pip`` itself), use the ``--upgrade`` flag. - -CFFI: - The `C Foreign Function Interface for Python`_ is used to access the C-API - of the PortAudio library from within Python. It supports CPython 2.6, 2.7, - 3.x; and is distributed with PyPy_. - If it's not installed already, you should install it with your