Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cecilia for openSUSE:Factory checked 
in at 2021-05-05 20:39:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cecilia (Old)
 and      /work/SRC/openSUSE:Factory/.cecilia.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cecilia"

Wed May  5 20:39:56 2021 rev:19 rq:890499 version:5.4.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/cecilia/cecilia.changes  2019-11-25 
11:24:52.242099649 +0100
+++ /work/SRC/openSUSE:Factory/.cecilia.new.2988/cecilia.changes        
2021-05-05 20:39:59.470918772 +0200
@@ -1,0 +2,23 @@
+Mon May  3 18:47:25 UTC 2021 - Ferdinand Thiessen <r...@fthiessen.de>
+
+- Update to version 5.4.1
+  * Support WxPython version 4.1.0.
+  * Support pyo version 1.0.3. 
+  * Removed presets from cecilia5 files.
+    Moved them to ~/.cecilia5/presets folder
+  * Added filter per grain in StochGrains.c5 an StochGrains2.c5
+  * Allow the user to add a point on a line, without alteration,
+    with Shift-Click.
+  * NEW MODULE: AutoModFilter ??? Filter auto-modulated by an audio
+    feature of its input sound
+  * NEW MODULE: Binaural ??? Binaural 3D spatialization
+  * NEW MODULE: MatrixReverb ??? Delay-line rotating-matrix reverb
+  * NEW MODULE: StateVar2 ??? State Variable Filter with user-defined
+    filter types
+  * NEW MODULE: Stutterer ??? Read segments extracted from a sound
+    loaded in memory
+  * NEW MODULE: WaveScanSynth ??? Synthesis where the waveform is a
+    small portion extracted from an audio signal
+- Updated cecilia-setup.patch
+
+-------------------------------------------------------------------

Old:
----
  Cecilia5_5.3.5-src.tar.bz2

New:
----
  Cecilia5_5.4.1-src.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cecilia.spec ++++++
--- /var/tmp/diff_new_pack.bIbQBB/_old  2021-05-05 20:40:00.038916334 +0200
+++ /var/tmp/diff_new_pack.bIbQBB/_new  2021-05-05 20:40:00.042916317 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cecilia
 #
-# Copyright (c) 2019 SUSE LLC.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           cecilia
-Version:        5.3.5
+Version:        5.4.1
 Release:        0
 Summary:        Sound synthesis and audio signal processing environment
 License:        GPL-3.0-or-later
@@ -30,10 +30,11 @@
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  python3
+BuildRequires:  python3-setuptools
 BuildRequires:  update-desktop-files
 Requires:       python3-numpy
-Requires:       python3-pyo >= 0.9.0
-Requires:       python3-wxPython >= 4.0.1
+Requires:       python3-pyo >= 1.0.0
+Requires:       python3-wxPython >= 4.1.0
 BuildArch:      noarch
 
 %description
@@ -56,10 +57,10 @@
 %patch0 -p1
 
 %build
-%py3_build
+%python3_build
 
 %install
-%py3_install
+%python3_install
 for s in 16 32 48 64 96 128 192 256 512; do
   mkdir -pv %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
   convert -strip -resize ${s} scripts/Cecilia5_512.png 
%{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/%{name}.png

++++++ Cecilia5_5.3.5-src.tar.bz2 -> Cecilia5_5.4.1-src.tar.bz2 ++++++
++++ 52565 lines of diff (skipped)

++++++ cecilia-setup.patch ++++++
--- /var/tmp/diff_new_pack.bIbQBB/_old  2021-05-05 20:40:00.758913245 +0200
+++ /var/tmp/diff_new_pack.bIbQBB/_new  2021-05-05 20:40:00.758913245 +0200
@@ -1,33 +1,43 @@
 Description: creates a setup.py
  Upstream doesn't provide a setup.py for linux systems
 Author: Tiago Bortoletto Vaz <ti...@debian.org>
-Last-Update: 2018-07-31
 
-Index: Cecilia5_5.3.5-src/Cecilia5.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Cecilia5.py
-+++ Cecilia5_5.3.5-src/Cecilia5.py
-@@ -21,11 +21,10 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Cecilia5.py new/Cecilia5.py
+--- Cecilia5_5.4.1-src/Cecilia5.py     2020-08-30 22:33:34.000000000 +0200
++++ new/Cecilia5.py    2021-05-03 21:18:33.794182552 +0200
+@@ -21,11 +21,11 @@
  """
  import os, sys, random
  import wx
 -from Resources.constants import *
+-from Resources.Variables import loadBitmaps
 -from Resources import audio, CeciliaMainFrame
 -from Resources.splash import CeciliaSplashScreen
 -import Resources.CeciliaLib as CeciliaLib
--
 +from cecilia.Resources.constants import *
++from cecilia.Resources.Variables import loadBitmaps
 +from cecilia.Resources import audio, CeciliaMainFrame
-+import cecilia.Resources.CeciliaLib as CeciliaLib
 +from cecilia.Resources.splash import CeciliaSplashScreen
++import cecilia.Resources.CeciliaLib as CeciliaLib
  
  class CeciliaApp(wx.App):
      def __init__(self, *args, **kwargs):
-Index: Cecilia5_5.3.5-src/Resources/CeciliaInterface.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/CeciliaInterface.py
-+++ Cecilia5_5.3.5-src/Resources/CeciliaInterface.py
-@@ -20,9 +20,9 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/audio.py new/Resources/audio.py
+--- Cecilia5_5.4.1-src/Resources/audio.py      2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/audio.py     2021-05-03 21:13:46.976146944 +0200
+@@ -20,7 +20,7 @@
+ 
+ import wx
+ import os, math, copy, time, traceback
+-import Resources.CeciliaLib as CeciliaLib
++from cecilia.Resources import CeciliaLib
+ from .constants import *
+ from .API_interface import *
+ 
+diff -Nur Cecilia5_5.4.1-src/Resources/CeciliaInterface.py 
new/Resources/CeciliaInterface.py
+--- Cecilia5_5.4.1-src/Resources/CeciliaInterface.py   2020-08-30 
22:33:34.000000000 +0200
++++ new/Resources/CeciliaInterface.py  2021-05-03 21:13:46.972146916 +0200
+@@ -20,9 +20,9 @@
  """
  
  import wx
@@ -40,31 +50,22 @@
  from .constants import *
  from .Sliders import buildHorizontalSlidersBox
  from .Grapher import getGrapher, buildGrapher
-@@ -171,4 +171,4 @@ class CeciliaInterface(wx.Frame):
-         self.grapher.plotter.onSelectAll()
- 
-     def updateNchnls(self):
--        self.controlPanel.updateNchnls()
-\ No newline at end of file
-+        self.controlPanel.updateNchnls()
-Index: Cecilia5_5.3.5-src/Resources/CeciliaLib.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/CeciliaLib.py
-+++ Cecilia5_5.3.5-src/Resources/CeciliaLib.py
-@@ -24,7 +24,7 @@ import unicodedata
+diff -Nur Cecilia5_5.4.1-src/Resources/CeciliaLib.py 
new/Resources/CeciliaLib.py
+--- Cecilia5_5.4.1-src/Resources/CeciliaLib.py 2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/CeciliaLib.py        2021-05-03 21:13:46.972146916 +0200
+@@ -24,7 +24,7 @@
  from subprocess import Popen
  from .constants import *
  from .API_interface import *
 -import Resources.Variables as vars
 +from cecilia.Resources import Variables as vars
  import wx.lib.agw.supertooltip as STT
+ import xmlrpc.client as xmlrpclib
  
- if sys.version_info[0] < 3:
-Index: Cecilia5_5.3.5-src/Resources/CeciliaMainFrame.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/CeciliaMainFrame.py
-+++ Cecilia5_5.3.5-src/Resources/CeciliaMainFrame.py
-@@ -21,9 +21,9 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/CeciliaMainFrame.py 
new/Resources/CeciliaMainFrame.py
+--- Cecilia5_5.4.1-src/Resources/CeciliaMainFrame.py   2020-08-30 
22:33:34.000000000 +0200
++++ new/Resources/CeciliaMainFrame.py  2021-05-03 21:13:46.972146916 +0200
+@@ -22,9 +22,9 @@
  import os, time, random
  import wx
  from .constants import *
@@ -77,11 +78,10 @@
  from .menubar import InterfaceMenuBar
  from .Widgets import *
  from .DocFrame import ManualFrame
-Index: Cecilia5_5.3.5-src/Resources/CeciliaPlot.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/CeciliaPlot.py
-+++ Cecilia5_5.3.5-src/Resources/CeciliaPlot.py
-@@ -90,7 +90,7 @@ Zooming controls with mouse (when enable
+diff -Nur Cecilia5_5.4.1-src/Resources/CeciliaPlot.py 
new/Resources/CeciliaPlot.py
+--- Cecilia5_5.4.1-src/Resources/CeciliaPlot.py        2020-08-30 
22:33:34.000000000 +0200
++++ new/Resources/CeciliaPlot.py       2021-05-03 21:13:46.972146916 +0200
+@@ -90,7 +90,7 @@
  """
  
  import wx
@@ -90,11 +90,38 @@
  from .constants import *
  
  try:
-Index: Cecilia5_5.3.5-src/Resources/Control.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Control.py
-+++ Cecilia5_5.3.5-src/Resources/Control.py
-@@ -20,7 +20,7 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/constants.py new/Resources/constants.py
+--- Cecilia5_5.4.1-src/Resources/constants.py  2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/constants.py 2021-05-03 21:13:46.976146944 +0200
+@@ -17,7 +17,7 @@
+ You should have received a copy of the GNU General Public License
+ along with Cecilia 5.  If not, see <http://www.gnu.org/licenses/>.
+ """
+-import os, sys
++import os, sys, cecilia
+ from .images import *
+ 
+ BUILD_RST = False
+@@ -38,7 +38,7 @@
+     RESOURCES_PATH = os.getcwd()
+     os.environ["LANG"] = "en_CA.UTF-8"
+ else:
+-    RESOURCES_PATH = os.path.join(os.getcwd(), 'Resources')
++    RESOURCES_PATH = cecilia.Resources.__path__[0]
+ 
+ if not os.path.isdir(RESOURCES_PATH) and sys.platform == "win32":
+     RESOURCES_PATH = os.path.join(os.getenv("ProgramFiles"), "Cecilia5", 
"Resources")
+@@ -745,4 +745,4 @@
+ Parameters appear on the left buttons. 
+ 
+ Signal routing is from top to bottom.
+-"""
+\ Kein Zeilenumbruch am Dateiende.
++"""
+diff -Nur Cecilia5_5.4.1-src/Resources/Control.py new/Resources/Control.py
+--- Cecilia5_5.4.1-src/Resources/Control.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Control.py   2021-05-03 21:13:46.972146916 +0200
+@@ -20,7 +20,7 @@
  
  import wx, os, math, copy
  import wx.lib.scrolledpanel as scrolled
@@ -103,15 +130,10 @@
  from .constants import *
  from .Widgets import *
  from .TogglePopup import SamplerPopup, SamplerToggle
-Index: Cecilia5_5.3.5-src/Resources/DocFrame.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/DocFrame.py
-+++ Cecilia5_5.3.5-src/Resources/DocFrame.py
-@@ -1,11 +1,10 @@
--#!/usr/bin/env python
- # encoding: utf-8
- import os, keyword, shutil
- import wx
+diff -Nur Cecilia5_5.4.1-src/Resources/DocFrame.py new/Resources/DocFrame.py
+--- Cecilia5_5.4.1-src/Resources/DocFrame.py   2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/DocFrame.py  2021-05-03 21:21:49.587586984 +0200
+@@ -22,7 +22,7 @@
  import wx.stc as stc
  from .constants import *
  from .API_interface import *
@@ -120,19 +142,18 @@
  
  _INTRO_TEXT = """
  "Cecilia5 API Documentation"
-@@ -1111,4 +1110,4 @@ class ManualFrame(wx.Frame):
+@@ -1126,4 +1126,4 @@
          if search != "":
              self.search.SetValue("")
          self.doc_panel.getPage("Intro")
 -        self.doc_panel.collapseAll()
-\ No newline at end of file
+\ Kein Zeilenumbruch am Dateiende.
 +        self.doc_panel.collapseAll()
-Index: Cecilia5_5.3.5-src/Resources/Grapher.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Grapher.py
-+++ Cecilia5_5.3.5-src/Resources/Grapher.py
-@@ -21,8 +21,8 @@ along with Cecilia 5.  If not, see <http
- import wx, random, bisect, math, copy
+diff -Nur Cecilia5_5.4.1-src/Resources/Grapher.py new/Resources/Grapher.py
+--- Cecilia5_5.4.1-src/Resources/Grapher.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Grapher.py   2021-05-03 21:13:46.972146916 +0200
+@@ -21,8 +21,8 @@
+ import wx, random, bisect, math
  from wx.lib.stattext import GenStaticText
  from pyo import reducePoints, distanceToSegment, linToCosCurve
 -import Resources.CeciliaPlot as plot
@@ -142,11 +163,22 @@
  from .constants import *
  from .Grapher_parser import *
  from .Widgets import *
-Index: Cecilia5_5.3.5-src/Resources/Plugins.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Plugins.py
-+++ Cecilia5_5.3.5-src/Resources/Plugins.py
-@@ -19,7 +19,7 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/menubar.py new/Resources/menubar.py
+--- Cecilia5_5.4.1-src/Resources/menubar.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/menubar.py   2021-05-03 21:13:46.976146944 +0200
+@@ -20,7 +20,7 @@
+ 
+ import wx, os
+ from .constants import *
+-import Resources.CeciliaLib as CeciliaLib
++from cecilia.Resources import CeciliaLib
+ 
+ class InterfaceMenuBar(wx.MenuBar):
+     def __init__(self, frame, mainFrame=None):
+diff -Nur Cecilia5_5.4.1-src/Resources/Plugins.py new/Resources/Plugins.py
+--- Cecilia5_5.4.1-src/Resources/Plugins.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Plugins.py   2021-05-03 21:13:46.976146944 +0200
+@@ -19,7 +19,7 @@
  """
  
  import wx, math
@@ -155,11 +187,10 @@
  from .constants import *
  from .Widgets import *
  
-Index: Cecilia5_5.3.5-src/Resources/PreferencePanel.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/PreferencePanel.py
-+++ Cecilia5_5.3.5-src/Resources/PreferencePanel.py
-@@ -19,7 +19,7 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/PreferencePanel.py 
new/Resources/PreferencePanel.py
+--- Cecilia5_5.4.1-src/Resources/PreferencePanel.py    2020-08-30 
22:33:34.000000000 +0200
++++ new/Resources/PreferencePanel.py   2021-05-03 21:13:46.976146944 +0200
+@@ -19,7 +19,7 @@
  """
  
  import wx, os, sys
@@ -168,24 +199,22 @@
  from .constants import *
  from .Widgets import *
  
-Index: Cecilia5_5.3.5-src/Resources/Preset.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Preset.py
-+++ Cecilia5_5.3.5-src/Resources/Preset.py
-@@ -19,7 +19,7 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/Preset.py new/Resources/Preset.py
+--- Cecilia5_5.4.1-src/Resources/Preset.py     2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Preset.py    2021-05-03 21:22:29.055870445 +0200
+@@ -19,7 +19,7 @@
  """
  
- import wx
+ import wx, os
 -import Resources.CeciliaLib as CeciliaLib
 +from cecilia.Resources import CeciliaLib
  from .constants import *
  from .Widgets import *
  
-Index: Cecilia5_5.3.5-src/Resources/Sliders.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Sliders.py
-+++ Cecilia5_5.3.5-src/Resources/Sliders.py
-@@ -19,7 +19,7 @@ along with Cecilia 5.  If not, see <http
+diff -Nur Cecilia5_5.4.1-src/Resources/Sliders.py new/Resources/Sliders.py
+--- Cecilia5_5.4.1-src/Resources/Sliders.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Sliders.py   2021-05-03 21:13:46.976146944 +0200
+@@ -19,7 +19,7 @@
  """
  
  import wx, math
@@ -194,11 +223,29 @@
  from .constants import *
  from .Widgets import *
  
-Index: Cecilia5_5.3.5-src/Resources/TogglePopup.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/TogglePopup.py
-+++ Cecilia5_5.3.5-src/Resources/TogglePopup.py
-@@ -20,7 +20,7 @@ from __future__ import division
+diff -Nur Cecilia5_5.4.1-src/Resources/splash.py new/Resources/splash.py
+--- Cecilia5_5.4.1-src/Resources/splash.py     2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/splash.py    2021-05-03 21:20:45.595127385 +0200
+@@ -19,7 +19,7 @@
+ """
+ 
+ import wx, sys, os
+-from .constants import *
++from cecilia.Resources.constants import *
+ 
+ def GetRoundBitmap(w, h, r):
+     maskColour = wx.Colour(0, 0, 0)
+@@ -100,4 +100,4 @@
+ 
+     def OnClose(self):
+         self.callback()
+-        self.Destroy()
+\ Kein Zeilenumbruch am Dateiende.
++        self.Destroy()
+diff -Nur Cecilia5_5.4.1-src/Resources/TogglePopup.py 
new/Resources/TogglePopup.py
+--- Cecilia5_5.4.1-src/Resources/TogglePopup.py        2020-08-30 
22:33:34.000000000 +0200
++++ new/Resources/TogglePopup.py       2021-05-03 21:13:46.976146944 +0200
+@@ -21,7 +21,7 @@
  import wx, random
  from .Widgets import Label, CustomMenu, Toggle, Button, ListEntry
  from .constants import *
@@ -207,12 +254,11 @@
  
  class CECPopup:
      def __init__(self, parent, label, values, init, rate, name, colour, 
tooltip=True, output=True):
-Index: Cecilia5_5.3.5-src/Resources/Widgets.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Widgets.py
-+++ Cecilia5_5.3.5-src/Resources/Widgets.py
-@@ -24,7 +24,7 @@ from pyo import PyoGuiSpectrum, rescale
- from pyolib._wxwidgets import ControlSlider, HRangeSlider
+diff -Nur Cecilia5_5.4.1-src/Resources/Widgets.py new/Resources/Widgets.py
+--- Cecilia5_5.4.1-src/Resources/Widgets.py    2020-08-30 22:33:34.000000000 
+0200
++++ new/Resources/Widgets.py   2021-05-03 21:13:46.976146944 +0200
+@@ -24,7 +24,7 @@
+ from pyo.lib._wxwidgets import ControlSlider, HRangeSlider
  from .constants import *
  from .Drunk import *
 -import Resources.CeciliaLib as CeciliaLib
@@ -220,93 +266,9 @@
  
  class MenuFrame(wx.Menu):
      def __init__(self, parent, choice):
-Index: Cecilia5_5.3.5-src/Resources/audio.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/audio.py
-+++ Cecilia5_5.3.5-src/Resources/audio.py
-@@ -20,7 +20,7 @@ along with Cecilia 5.  If not, see <http
- 
- import wx
- import os, math, copy, time, traceback
--import Resources.CeciliaLib as CeciliaLib
-+from cecilia.Resources import CeciliaLib
- from .constants import *
- from .API_interface import *
- 
-@@ -2023,4 +2023,4 @@ class AudioServer():
-                     print('not a file')
-         if CeciliaLib.getVar("DEBUG"):
-             print()
--        return soundDict
-\ No newline at end of file
-+        return soundDict
-Index: Cecilia5_5.3.5-src/Resources/constants.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/constants.py
-+++ Cecilia5_5.3.5-src/Resources/constants.py
-@@ -17,7 +17,7 @@ GNU General Public License for more deta
- You should have received a copy of the GNU General Public License
- along with Cecilia 5.  If not, see <http://www.gnu.org/licenses/>.
- """
--import os, sys
-+import os, sys, cecilia
- from .images import *
- 
- BUILD_RST = False
-@@ -42,7 +42,7 @@ if '/%s.app' % APP_NAME in os.getcwd():
-     RESOURCES_PATH = os.getcwd()
-     os.environ["LANG"] = "en_CA.UTF-8"
- else:
--    RESOURCES_PATH = os.path.join(os.getcwd(), 'Resources')
-+    RESOURCES_PATH = cecilia.Resources.__path__[0]
- 
- if not os.path.isdir(RESOURCES_PATH) and sys.platform == "win32":
-     RESOURCES_PATH = os.path.join(os.getenv("ProgramFiles"), "Cecilia5", 
"Resources")
-@@ -742,4 +742,4 @@ Choose a post-processing module.
- Parameters appear on the left buttons. 
- 
- Signal routing is from top to bottom.
--"""
-\ No newline at end of file
-+"""
-Index: Cecilia5_5.3.5-src/Resources/menubar.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/menubar.py
-+++ Cecilia5_5.3.5-src/Resources/menubar.py
-@@ -20,7 +20,7 @@ along with Cecilia 5.  If not, see <http
- 
- import wx, os
- from .constants import *
--import Resources.CeciliaLib as CeciliaLib
-+from cecilia.Resources import CeciliaLib
- 
- class InterfaceMenuBar(wx.MenuBar):
-     def __init__(self, frame, mainFrame=None):
-Index: Cecilia5_5.3.5-src/Resources/splash.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/splash.py
-+++ Cecilia5_5.3.5-src/Resources/splash.py
-@@ -1,8 +1,7 @@
--#!/usr/bin/env python
- # encoding: utf-8
- 
- import wx, sys, os
--from .constants import *
-+from cecilia.Resources.constants import *
- 
- def GetRoundBitmap(w, h, r):
-     maskColour = wx.Colour(0, 0, 0)
-@@ -76,4 +75,4 @@ class CeciliaSplashScreen(wx.Frame):
- 
-     def OnClose(self):
-         self.callback()
--        self.Destroy()
-\ No newline at end of file
-+        self.Destroy()
-Index: Cecilia5_5.3.5-src/setup.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/setup.py
-+++ Cecilia5_5.3.5-src/setup.py
+diff -Nur Cecilia5_5.4.1-src/setup.py new/setup.py
+--- Cecilia5_5.4.1-src/setup.py        2020-08-30 22:33:34.000000000 +0200
++++ new/setup.py       2021-05-03 21:13:46.976146944 +0200
 @@ -1,24 +1,20 @@
 -"""
 -This is a setup.py script generated by py2applet
@@ -338,7 +300,7 @@
 +setup(  name = "cecilia",
 +        author = "Jean Piche, Olivier Belanger, Jean-Michel Dumas",
 +        author_email = "belan...@gmail.com",
-+        version = "5.3.5",
++        version = "5.4.1",
 +        description = "Sound synthesis and audio signal processing 
environment",
 +        url = "https://github.com/belangeo/cecilia5";,
 +        license = "GPLv3",
@@ -350,21 +312,3 @@
 +            'cecilia.Resources': ['modules/*/*', 'Cecilia5.icns', 
'Cecilia5.ico', 'CeciliaFileIcon5.icns', 'CeciliaFileIcon5.ico', 
'Cecilia_splash.png'],
 +        }
 +    )
-Index: Cecilia5_5.3.5-src/Resources/API_interface.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/API_interface.py
-+++ Cecilia5_5.3.5-src/Resources/API_interface.py
-@@ -1,4 +1,3 @@
--#!/usr/bin/env python
- # encoding: utf-8
- """
- Copyright 2011 iACT, Universite de Montreal,
-Index: Cecilia5_5.3.5-src/Resources/Grapher_parser.py
-===================================================================
---- Cecilia5_5.3.5-src.orig/Resources/Grapher_parser.py
-+++ Cecilia5_5.3.5-src/Resources/Grapher_parser.py
-@@ -1,4 +1,3 @@
--#!/usr/bin/env python
- # encoding: utf-8
- """
- Grapher's line parser.

Reply via email to