diff --git a/hardware/sound/alsa-lib/pspec.xml b/hardware/sound/alsa-lib/pspec.xml
index 9f155b018b..6fe8a1e8a9 100644
--- a/hardware/sound/alsa-lib/pspec.xml
+++ b/hardware/sound/alsa-lib/pspec.xml
@@ -13,7 +13,7 @@
app:console
The Advanced Linux Sound Architecture (ALSA) library
alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs.
- ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.2.6.1.tar.bz2
+ ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.2.7.tar.bz2
doxygen
python-devel
@@ -61,6 +61,13 @@
+
+ 2022-06-03
+ 1.2.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-12-10
1.2.6.1
diff --git a/hardware/sound/alsa-plugins/pspec.xml b/hardware/sound/alsa-plugins/pspec.xml
index daee2d353b..d3455a422d 100644
--- a/hardware/sound/alsa-plugins/pspec.xml
+++ b/hardware/sound/alsa-plugins/pspec.xml
@@ -20,7 +20,8 @@
libsamplerate-devel
speexdsp-devel
ffmpeg-devel
- alsa-lib-devel
+ jack-audio-connection-kit-devel
+ alsa-lib-devel
@@ -38,7 +39,8 @@
libsamplerate
speexdsp
ffmpeg
- alsa-lib
+ jack-audio-connection-kit
+ alsa-lib
/etc/alsa/conf.d
@@ -51,6 +53,13 @@
+
+ 2022-06-03
+ 1.2.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-01-25
1.2.6
diff --git a/hardware/sound/alsa-tools/pspec.xml b/hardware/sound/alsa-tools/pspec.xml
index 120be15abb..42e33c1d5e 100644
--- a/hardware/sound/alsa-tools/pspec.xml
+++ b/hardware/sound/alsa-tools/pspec.xml
@@ -17,7 +17,7 @@
gtk2-devel
fltk-devel
- alsa-lib-devel
+ alsa-lib-devel
usx2yloader_udev.patch
@@ -100,6 +100,13 @@
+
+ 2022-06-03
+ 1.2.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-09-21
1.2.5
diff --git a/hardware/sound/alsa-utils/pspec.xml b/hardware/sound/alsa-utils/pspec.xml
index c40f025842..6287cbd1e7 100644
--- a/hardware/sound/alsa-utils/pspec.xml
+++ b/hardware/sound/alsa-utils/pspec.xml
@@ -12,7 +12,7 @@
app:console
Advanced Linux Sound Architecture (ALSA) utilities
alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA).
- ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.2.6.tar.bz2
+ ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.2.7.tar.bz2
xmlto
util-linux
@@ -21,7 +21,7 @@
libxslt-devel
ncurses-devel
libsamplerate-devel
- alsa-lib-devel
+ alsa-lib-devel
@@ -41,6 +41,7 @@
/usr/share/man
/var/lib/alsa
/usr/bin
+ /usr/lib
/usr/share/alsa
/lib/udev/rules.d
/usr/share/sounds
@@ -59,6 +60,13 @@
+
+ 2022-06-03
+ 1.2.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-12-10
1.2.6
diff --git a/programming/language/python3/python3-pyalsaaudio/actions.py b/programming/language/python3/python3-pyalsaaudio/actions.py
index 8c1185f8a2..a9eb5d9092 100644
--- a/programming/language/python3/python3-pyalsaaudio/actions.py
+++ b/programming/language/python3/python3-pyalsaaudio/actions.py
@@ -5,11 +5,24 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
#WorkDir="pyalsaaudio-%s" % get.srcVERSION()
def build():
+ shelltools.copytree("../pyalsaaudio-%s" % (get.srcVERSION().replace("_", "~")), "../pyalsaaudio-%s-py2" % get.srcVERSION())
+
+
+ shelltools.cd("../pyalsaaudio-%s-py2" % get.srcVERSION())
+ pythonmodules.compile()
+
+ shelltools.cd("../pyalsaaudio-%s" % get.srcVERSION())
pythonmodules.compile(pyVer="3")
def install():
+ shelltools.cd("../pyalsaaudio-%s-py2" % get.srcVERSION())
+ pythonmodules.install()
+
+ shelltools.cd("../pyalsaaudio-%s" % get.srcVERSION())
pythonmodules.install(pyVer="3")
diff --git a/programming/language/python3/python3-pyalsaaudio/pspec.xml b/programming/language/python3/python3-pyalsaaudio/pspec.xml
index 04fbeb2ad2..c0a51e05d9 100644
--- a/programming/language/python3/python3-pyalsaaudio/pspec.xml
+++ b/programming/language/python3/python3-pyalsaaudio/pspec.xml
@@ -13,7 +13,7 @@
library
This package contains wrappers for accessing the ALSA API from Python.
It is fairly complete for PCM devices and Mixer access.
- https://files.pythonhosted.org/packages/23/b1/672d496718562301ce2052b07196ca31874e4f1a497881ae44b2279a4e1d/pyalsaaudio-0.9.0.tar.gz
+ https://files.pythonhosted.org/packages/a9/bd/24f576c07953671edfeba2545c3c92c46e97384f622957ecf95967c2b456/pyalsaaudio-0.9.2.tar.gz
python3-devel
python-setuptools
@@ -44,12 +44,18 @@
alsa-lib
- /usr/lib/python*
- /usr/share/doc/python-pyalsaaudio
+ /usr/lib/python2.7
+
+ 2022-06-03
+ 0.9.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-01-23
0.9.0