SHA256
1
0
forked from pool/python-pyo
Files
python-pyo/python-pyo.spec
Dirk Mueller 3065f6cb57 Accepting request 1180026 from home:glaubitz:branches:devel:languages:python:numeric
- Update to 1.0.5
    * Update Coreaudio support.
    * Added to MidiNote holdmode, first/last velocity support and sendAllNotesOff method.
    * UI: Improved handling of system's dark mode.
    * Fixed PY_SSIZE_T_CLEAN macro must be defined for '#' formats.
    * Fixed OscReceive.addAddress not polling the address immediately.
    * Fixed memory leak in trigmodule.
    * Ensure that there is no leaking audio streams in the server when objects are deleted.
    * Fix Keyboard widget note off handling in hold mode.
    * Made SndTable, NewTable and DataTable size attribute mutable.
    * Improved behavior consistency of PyoTableObject.setSize method.
    * Fixed bug when making the size of a table bigger at runtime.
    * Objects writing samples in tables can now write to any PyoTableObject.
    * Made getRate() and getDur() methods available to all PyoTableObject.
    * Allow more than 10 controls in PyoObjectControl window.
    * Fixed linux libasound and libjack symlinks (included in version 1.0.4).
- from version 1.0.4
    * Replaced unsecure vsprintf function with vsnprintf in server logging functions (fixed issue #222).
    * Removed useless string copy in the Jack backend (fixed issue #221).
    * TableMorph checks table sizes before interpolating to prevent segmentation fault.
    * Scale's exp argument now supports float or PyoObject.
    * Added documentation for IFFTMatrix object.
    * Added support for item assigment in PyoObjectBase.
    * Replaced all allocation functions with python's memory interface.
    * Fixed Select counter type range (now accept a long long value).
    * Removed unwanted call to Server_process_buffers at start of an embedded audio server.
    * Fixed segfault in embedded pyo_end_interpreter function.
    * Fixed FreqShift backward shifting (issue #193).
    * Fixed wx assertion in Scope color rendering.
    * Removed deprecated files.

OBS-URL: https://build.opensuse.org/request/show/1180026
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pyo?expand=0&rev=8
2024-06-11 17:34:14 +00:00

78 lines
2.4 KiB
RPMSpec

#
# spec file for package python-pyo
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-pyo
Version: 1.0.5
Release: 0
Summary: Python digital signal processing module
License: LGPL-3.0-or-later
Group: Development/Languages/Python
URL: http://ajaxsoundstudio.com/software/pyo/
Source: https://files.pythonhosted.org/packages/source/p/pyo/pyo-%{version}.tar.gz
Source1: https://raw.githubusercontent.com/belangeo/pyo/master/LICENSE
# PATCH-FIX-UPSTREAM - Fix multiple incorrect declarations and signatures of callback functions
Patch: https://github.com/belangeo/pyo/pull/277.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: pkgconfig
BuildRequires: portmidi-devel
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(jack)
BuildRequires: pkgconfig(liblo)
BuildRequires: pkgconfig(portaudiocpp)
BuildRequires: pkgconfig(sndfile)
%python_subpackages
%description
PYO is a Python module written in C to help digital signal processing
script creation.
%prep
%setup -q -n pyo-%{version}
%autopatch -p1
cp %{SOURCE1} .
%build
export CFLAGS="%{optflags}"
%python_build --use-jack --use-double
%install
%python_install --use-jack --use-double
%python_clone -a %{buildroot}%{_bindir}/epyo
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
# testsuite is broken and can not be run even from github tarball
%post
%python_install_alternative epyo
%postun
%python_uninstall_alternative epyo
%files %{python_files}
%doc README.md
%license LICENSE
%python_alternative %{_bindir}/epyo
%{python_sitearch}/*
%changelog