gst-python3: 1.22.0 -> 1.22.1

This commit is contained in:
Tim Biermann 2023-03-05 14:06:46 +01:00
parent e77e0612ef
commit 6740827cdd
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 16 additions and 16 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/wQGW1Ue/fkrIz9ZEKE1PzBOmgdw+btIaHyX2eOB6aJw6NxayOs5k3j+xBQobFo+GKPVWdTIPt3+8LvM+yXMgw=
SHA256 (Pkgfile) = 8e1792b37d2d81d08c2809a4b7afa796c925033f43bce82cf6893baf4b65acee
RWSagIOpLGJF3+s1tLUJThfgbBOz/8V8e8WC74/NdmAUcWbBjvxZv1kgzP4Qot4fpahm/8xzFUKRabJXMtEJxK6lOCujtnS0cgY=
SHA256 (Pkgfile) = d43730fb6cca096c8658af85cd6edd3c44fc7193a71043708b8e69ae70e44ad2
SHA256 (.footprint) = 3efbb2ced3fb3a9620d28e7d3e43a3860633403e3ec7519003c8039c53f67763
SHA256 (gst-python-1.22.0.tar.xz) = 6c63ad364ca4617eb2cbb3975ab26c66760eb3c7a6adf5be69f99c11e21ef3a5
SHA256 (gst-python-1.22.1.tar.xz) = 96008a441d685a64275a515b893ccad0fea1d560c43acd0763533e17f3a13ebb

View File

@ -1,26 +1,26 @@
# Description: Python bindings for gstreamer.
# URL: https://gstreamer.freedesktop.org/modules/gst-python.html
# Maintainer: Danny Rawlins, crux at romster dot me
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gst-plugins-base python3-gobject
name=gst-python3
version=1.22.0
version=1.22.1
release=1
source=(https://gstreamer.freedesktop.org/src/gst-python/gst-python-$version.tar.xz)
build() {
cd gst-python-$version
cd gst-python-$version
meson build \
--prefix=/usr \
--libexecdir=/usr/lib \
-D buildtype=plain \
-D python=/usr/bin/python3
meson build \
--prefix=/usr \
--libexecdir=/usr/lib \
-D buildtype=plain \
-D python=/usr/bin/python3
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
/usr/bin/python3 -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -O -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -OO -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -O -m compileall -d /usr/lib $PKG/usr/lib
/usr/bin/python3 -OO -m compileall -d /usr/lib $PKG/usr/lib
}