gst-* ver. bump
This commit is contained in:
@@ -4,38 +4,38 @@
|
|||||||
# Licensed under the GNU General Public License, version 3.
|
# Licensed under the GNU General Public License, version 3.
|
||||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
# 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 shelltools
|
||||||
|
from pisi.actionsapi import mesontools
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
opts = {
|
shelltools.export("AUTOPOINT", "true")
|
||||||
"introspection": "no" if get.buildTYPE() == "emul32" else "yes",
|
options = "-Dpackage-name='PisiLinux gstreamer-plugins-base package' \
|
||||||
}
|
-Dpackage-origin='https://www.pisilinux.org' \
|
||||||
|
-Dexamples=disabled \
|
||||||
options = "--with-package-name='PisiLinux gstreamer-plugins-base package' \
|
-Dgtk_doc=disabled \
|
||||||
--with-package-origin='http://www.pisilinux.org' \
|
|
||||||
--disable-examples \
|
|
||||||
"
|
"
|
||||||
if get.buildTYPE() == "emul32":
|
if get.buildTYPE() == "emul32":
|
||||||
options += "--enable-introspection=no \
|
shelltools.export("CC", "%s -m32" % get.CC())
|
||||||
--disable-wayland \
|
shelltools.export("CXX", "%s -m32" % get.CXX())
|
||||||
--disable-gbm \
|
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)
|
mesontools.configure(options)
|
||||||
|
|
||||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
|
||||||
|
|
||||||
def build():
|
def build():
|
||||||
autotools.make()
|
mesontools.build()
|
||||||
|
|
||||||
|
|
||||||
def install():
|
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")
|
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
|
||||||
|
|||||||
@@ -12,11 +12,14 @@
|
|||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<Summary>Basepack of plugins for gstreamer</Summary>
|
<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>
|
<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>
|
<BuildDependencies>
|
||||||
|
<Dependency>git</Dependency>
|
||||||
|
<Dependency>meson</Dependency>
|
||||||
<Dependency>mesa-devel</Dependency>
|
<Dependency>mesa-devel</Dependency>
|
||||||
<Dependency>libdrm-devel</Dependency>
|
<Dependency>libdrm-devel</Dependency>
|
||||||
<Dependency>libgudev-devel</Dependency>
|
<Dependency>libgudev-devel</Dependency>
|
||||||
|
<Dependency>libglvnd-devel</Dependency>
|
||||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||||
<Dependency>valgrind</Dependency>
|
<Dependency>valgrind</Dependency>
|
||||||
<Dependency>zlib-devel</Dependency>
|
<Dependency>zlib-devel</Dependency>
|
||||||
@@ -39,7 +42,8 @@
|
|||||||
<Dependency>wayland-devel</Dependency>
|
<Dependency>wayland-devel</Dependency>
|
||||||
<Dependency>libunwind-devel</Dependency>
|
<Dependency>libunwind-devel</Dependency>
|
||||||
<Dependency>xorg-proto</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>
|
<Dependency>gobject-introspection-devel</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
</Source>
|
</Source>
|
||||||
@@ -71,7 +75,7 @@
|
|||||||
<Dependency>libtheora</Dependency>
|
<Dependency>libtheora</Dependency>
|
||||||
<Dependency>cdparanoia</Dependency>
|
<Dependency>cdparanoia</Dependency>
|
||||||
<Dependency>wayland-client</Dependency>
|
<Dependency>wayland-client</Dependency>
|
||||||
<Dependency versionFrom="1.16.2">gstreamer</Dependency>
|
<Dependency versionFrom="1.17.2">gstreamer</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="executable">/usr/bin</Path>
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
@@ -108,6 +112,9 @@
|
|||||||
<Dependency>gstreamer-32bit</Dependency>
|
<Dependency>gstreamer-32bit</Dependency>
|
||||||
<Dependency>libgudev-32bit</Dependency>
|
<Dependency>libgudev-32bit</Dependency>
|
||||||
<Dependency>libdrm-32bit</Dependency>
|
<Dependency>libdrm-32bit</Dependency>
|
||||||
|
<Dependency>mesa-32bit</Dependency>
|
||||||
|
<Dependency>libglvnd-32bit</Dependency>
|
||||||
|
<Dependency>libjpeg-turbo-32bit</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency release="current">gst-plugins-base</Dependency>
|
<Dependency release="current">gst-plugins-base</Dependency>
|
||||||
@@ -139,6 +146,7 @@
|
|||||||
<Files>
|
<Files>
|
||||||
<Path fileType="library">/usr/lib32/gstreamer-1.0</Path>
|
<Path fileType="library">/usr/lib32/gstreamer-1.0</Path>
|
||||||
<Path fileType="library">/usr/lib32/libgst*</Path>
|
<Path fileType="library">/usr/lib32/libgst*</Path>
|
||||||
|
<Path fileType="library">/usr/lib32/libgraphene*</Path>
|
||||||
</Files>
|
</Files>
|
||||||
<Replaces>
|
<Replaces>
|
||||||
<Package>gst-plugins-base-next-32bit</Package>
|
<Package>gst-plugins-base-next-32bit</Package>
|
||||||
@@ -156,7 +164,9 @@
|
|||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="header">/usr/include</Path>
|
<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/lib/pkgconfig</Path>
|
||||||
|
<Path fileType="library">/usr/lib32/pkgconfig/graphene*</Path>
|
||||||
<Path fileType="data">/usr/lib32/pkgconfig/gstreamer*.pc</Path>
|
<Path fileType="data">/usr/lib32/pkgconfig/gstreamer*.pc</Path>
|
||||||
<!-- FIXME: Remove this if not necessary -->
|
<!-- FIXME: Remove this if not necessary -->
|
||||||
<Path fileType="man">/usr/share/man/man3</Path>
|
<Path fileType="man">/usr/share/man/man3</Path>
|
||||||
@@ -166,16 +176,23 @@
|
|||||||
</Replaces>
|
</Replaces>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<Package>
|
<!--Package>
|
||||||
<Name>gst-plugins-base-docs</Name>
|
<Name>gst-plugins-base-docs</Name>
|
||||||
<IsA>data:doc</IsA>
|
<IsA>data:doc</IsA>
|
||||||
<Summary>gst-plugins-base reference documents</Summary>
|
<Summary>gst-plugins-base reference documents</Summary>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="data">/usr/share/gtk-doc</Path>
|
<Path fileType="data">/usr/share/gtk-doc</Path>
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package-->
|
||||||
|
|
||||||
<History>
|
<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">
|
<Update release="11">
|
||||||
<Date>2020-01-11</Date>
|
<Date>2020-01-11</Date>
|
||||||
<Version>1.16.2</Version>
|
<Version>1.16.2</Version>
|
||||||
|
|||||||
Reference in New Issue
Block a user