opusfile: ver bump.

This commit is contained in:
4fury
2020-06-28 21:32:23 +03:00
parent 5279f37ea1
commit c32074b763
8 changed files with 49 additions and 46 deletions
+8 -11
View File
@@ -1,24 +1,21 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 2 # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-fiv") autotools.autoreconf("-fiv")
options = "\ options = "--disable-static"
--disable-static \
"
if get.buildTYPE() == "_emul32": if get.buildTYPE() == "_emul32":
options += " --libdir=/usr/lib32 \ options += " --libdir=/usr/lib32 "
" shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options) autotools.configure(options)
@@ -30,6 +27,6 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() != "_emul32": if get.buildTYPE() != "_emul32":
pisitools.dodoc("AUTHORS", "COPYING", "INSTALL", "README") pisitools.dodoc("AUTHORS", "COPYING", "INSTALL", "README")
+3 -3
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>libopus</Name> <Name>libopus</Name>
<Homepage>http://www.opus-codec.org/</Homepage> <Homepage>https://opus-codec.org/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
@@ -114,4 +114,4 @@
<Email>ertugrulerata@gmail.com</Email> <Email>ertugrulerata@gmail.com</Email>
</Update> </Update>
</History> </History>
</PISI> </PISI>
+5 -7
View File
@@ -1,8 +1,8 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 2 # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
@@ -13,10 +13,7 @@ def setup():
options = "--disable-static" options = "--disable-static"
if get.buildTYPE() == "_emul32": if get.buildTYPE() == "_emul32":
options += \ options += " --libdir=/usr/lib32 "
"\
--libdir=/usr/lib32 \
"
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options) autotools.configure(options)
@@ -31,4 +28,5 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() != "_emul32": if get.buildTYPE() != "_emul32":
pisitools.dodoc("AUTHORS", "COPYING", "README.md") pisitools.dodoc("AUTHORS", "COPYING", "README.md")
+2 -2
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>libopusenc</Name> <Name>libopusenc</Name>
<Homepage>https://www.opus-codec.org/</Homepage> <Homepage>https://opus-codec.org/</Homepage>
<Packager> <Packager>
<Name>fury</Name> <Name>fury</Name>
<Email>wascheme@tuta.io</Email> <Email>wascheme@tuta.io</Email>
+4 -4
View File
@@ -1,8 +1,8 @@
#!/usr/bin/env python #!/usr/bin/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/licenses/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
@@ -14,8 +14,7 @@ def setup():
if get.buildTYPE() == "emul32": if get.buildTYPE() == "emul32":
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
options += " --libdir=/usr/lib32 \ options += " --libdir=/usr/lib32 "
"
autotools.configure(options) autotools.configure(options)
@@ -26,3 +25,4 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README*") pisitools.dodoc("AUTHORS", "COPYING", "README*")
+14 -8
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>opusfile</Name> <Name>opusfile</Name>
@@ -12,19 +12,18 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Library for opening, seeking, and decoding .opus files</Summary> <Summary>Library for opening, seeking, and decoding .opus files</Summary>
<Description>Library for opening, seeking, and decoding .opus files</Description> <Description>Library for opening, seeking, and decoding .opus files</Description>
<Archive sha1sum="fc3bf2a73be16836a16d9e55ff1097de3835dce3" type="targz">https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.11.tar.gz</Archive> <Archive sha1sum="3e86971fef28292f982a32730632b1d531059ed5" type="targz">https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>libogg-devel</Dependency> <Dependency>libogg-devel</Dependency>
<Dependency>libopus-devel</Dependency> <Dependency>libopus-devel</Dependency>
<Dependency>openssl-devel</Dependency> <Dependency>openssl-devel</Dependency>
</BuildDependencies> </BuildDependencies>
-->
<!--
<Patches> <Patches>
<!--
<Patch>opusfile.patch</Patch> <Patch>opusfile.patch</Patch>
<Patch level="1">opusfile.patch</Patch> <Patch level="1">opusfile.patch</Patch>
-->
</Patches> </Patches>
-->
</Source> </Source>
<Package> <Package>
@@ -40,7 +39,7 @@
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>opusfile-32bit</Name> <Name>opusfile-32bit</Name>
<PartOf>emul32</PartOf> <PartOf>emul32</PartOf>
@@ -60,7 +59,7 @@
<Path fileType="library">/usr/lib32</Path> <Path fileType="library">/usr/lib32</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>opusfile-devel</Name> <Name>opusfile-devel</Name>
<Summary>Development files for opusfile</Summary> <Summary>Development files for opusfile</Summary>
@@ -73,8 +72,15 @@
<Path fileType="library">/usr/lib32/pkgconfig</Path> <Path fileType="library">/usr/lib32/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2020-06-27</Date>
<Version>0.12</Version>
<Comment>Version bump</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2020-03-07</Date> <Date>2020-03-07</Date>
<Version>0.11</Version> <Version>0.11</Version>
+11 -9
View File
@@ -1,20 +1,21 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 2 # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
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("--enable-sse --enable-assertions \ autotools.configure("--enable-sse \
--disable-static \ --enable-assertions \
--disable-oggtest \ --disable-static \
--disable-opustest \ --disable-oggtest \
--disable-opusfiletest \ --disable-opustest \
--disable-libopusenctest") --disable-opusfiletest \
--disable-libopusenctest")
# fix unused direct dependency analysis # fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
@@ -25,4 +26,5 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING") pisitools.dodoc("AUTHORS", "COPYING")
+2 -2
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>opus-tools</Name> <Name>opus-tools</Name>
<Homepage>https://www.opus-codec.org/</Homepage> <Homepage>https://opus-codec.org/</Homepage>
<Packager> <Packager>
<Name>fury</Name> <Name>fury</Name>
<Email>wascheme@tuta.io</Email> <Email>wascheme@tuta.io</Email>