gst-* ver. bump

This commit is contained in:
Rmys
2020-07-14 23:26:42 +03:00
parent 0de98ea837
commit a174b7deca
2 changed files with 45 additions and 28 deletions
+23 -23
View File
@@ -4,38 +4,38 @@
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
opts = {
"introspection": "no" if get.buildTYPE() == "emul32" else "yes",
}
options = "--with-package-name='PisiLinux gstreamer-plugins-base package' \
--with-package-origin='http://www.pisilinux.org' \
--disable-examples \
shelltools.export("AUTOPOINT", "true")
options = "-Dpackage-name='PisiLinux gstreamer-plugins-base package' \
-Dpackage-origin='https://www.pisilinux.org' \
-Dexamples=disabled \
-Dgtk_doc=disabled \
"
if get.buildTYPE() == "emul32":
options += "--enable-introspection=no \
--disable-wayland \
--disable-gbm \
shelltools.export("CC", "%s -m32" % get.CC())
shelltools.export("CXX", "%s -m32" % get.CXX())
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
options += " --bindir=/usr/bin32 \
--libdir=/usr/lib32 \
-Dintrospection=disabled \
"
else:
options += "--enable-introspection=yes \
"
autotools.configure(options)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
mesontools.configure(options)
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
if get.buildTYPE() == "emul32":
pisitools.removeDir("/usr/bin32")
return
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
+22 -5
View File
@@ -12,11 +12,14 @@
<IsA>library</IsA>
<Summary>Basepack of plugins for gstreamer</Summary>
<Description>GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included.</Description>
<Archive sha1sum="7c650c99cd02f8ebc66d7b980a6b33663c71a89d" type="tarxz">http://ftp.acc.umu.se/pub/gnome/sources/gst-plugins-base/1.16/gst-plugins-base-1.16.2.tar.xz</Archive>
<Archive sha1sum="562f4f68a76ca8cc63b2ac1921aedde0db7fd955" type="tarxz">http://ftp.acc.umu.se/pub/gnome/sources/gst-plugins-base/1.17/gst-plugins-base-1.17.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>git</Dependency>
<Dependency>meson</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>valgrind</Dependency>
<Dependency>zlib-devel</Dependency>
@@ -39,7 +42,8 @@
<Dependency>wayland-devel</Dependency>
<Dependency>libunwind-devel</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency versionFrom="1.16.2">gstreamer-devel</Dependency>
<Dependency>xorg-server-xvfb</Dependency>
<Dependency versionFrom="1.17.2">gstreamer-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
@@ -71,7 +75,7 @@
<Dependency>libtheora</Dependency>
<Dependency>cdparanoia</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency versionFrom="1.16.2">gstreamer</Dependency>
<Dependency versionFrom="1.17.2">gstreamer</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -108,6 +112,9 @@
<Dependency>gstreamer-32bit</Dependency>
<Dependency>libgudev-32bit</Dependency>
<Dependency>libdrm-32bit</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>libglvnd-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">gst-plugins-base</Dependency>
@@ -139,6 +146,7 @@
<Files>
<Path fileType="library">/usr/lib32/gstreamer-1.0</Path>
<Path fileType="library">/usr/lib32/libgst*</Path>
<Path fileType="library">/usr/lib32/libgraphene*</Path>
</Files>
<Replaces>
<Package>gst-plugins-base-next-32bit</Package>
@@ -156,7 +164,9 @@
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="header">/usr/lib32/graphene-1.0/include/graphene-config.h</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="library">/usr/lib32/pkgconfig/graphene*</Path>
<Path fileType="data">/usr/lib32/pkgconfig/gstreamer*.pc</Path>
<!-- FIXME: Remove this if not necessary -->
<Path fileType="man">/usr/share/man/man3</Path>
@@ -166,16 +176,23 @@
</Replaces>
</Package>
<Package>
<!--Package>
<Name>gst-plugins-base-docs</Name>
<IsA>data:doc</IsA>
<Summary>gst-plugins-base reference documents</Summary>
<Files>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
</Package-->
<History>
<Update release="12">
<Date>2020-07-14</Date>
<Version>1.17.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2020-01-11</Date>
<Version>1.16.2</Version>