Merge pull request #7487 from suvari/master

orc: version bump to 0.4.31
This commit is contained in:
Kamil ATLI
2020-01-11 22:08:25 +03:00
committed by GitHub
3 changed files with 29 additions and 11 deletions
+18 -7
View File
@@ -1,19 +1,30 @@
#!/usr/bin/python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#
# 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/copyleft/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure("--disable-static") options = "--prefix=/usr \
"
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") if get.buildTYPE() == "emul32":
options += "--bindir=/usr/emul32 \
--libdir=lib32"
mesontools.configure(options)
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/emul32")
return
+10 -3
View File
@@ -1,4 +1,3 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
@@ -14,9 +13,10 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>The Oil Runtime Compiler</Summary> <Summary>The Oil Runtime Compiler</Summary>
<Description>Optimized Inner Loop Runtime Compiler</Description> <Description>Optimized Inner Loop Runtime Compiler</Description>
<Archive sha1sum="8444720a197a15a3da05292ce86a33df7226e3c9" type="tarxz">https://gstreamer.freedesktop.org/src/orc/orc-0.4.28.tar.xz</Archive> <Archive sha1sum="5d714f43f6c8a5d909b5f483e2e70447d6fe478a" type="tarxz">https://gstreamer.freedesktop.org/src/orc/orc-0.4.31.tar.xz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>valgrind</Dependency> <Dependency>valgrind</Dependency>
<Dependency>meson</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -56,6 +56,13 @@
</Package> </Package>
<History> <History>
<Update release="6">
<Date>2020-01-11</Date>
<Version>0.4.31</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="5"> <Update release="5">
<Date>2018-07-31</Date> <Date>2018-07-31</Date>
<Version>0.4.28</Version> <Version>0.4.28</Version>
@@ -92,4 +99,4 @@
<Email>kaptan@pisilinux.org</Email> <Email>kaptan@pisilinux.org</Email>
</Update> </Update>
</History> </History>
</PISI> </PISI>
+1 -1
View File
@@ -8,7 +8,7 @@
<Package> <Package>
<Name>orc-devel</Name> <Name>orc-devel</Name>
<Summary xml:lang="tr">orc için geliştirme dosyaları</Summary> <Summary xml:lang="tr">orc için geliştirme dosyaları</Summary>
</Package> </Package>
</PISI> </PISI>