Merge pull request #9933 from 4fury-c3440d8/codecs

codecs.
This commit is contained in:
Kamil ATLI
2021-12-11 20:17:54 +03:00
committed by GitHub
12 changed files with 105 additions and 81 deletions
+2 -3
View File
@@ -2,13 +2,12 @@
# -*- 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 pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure("--disable-static") autotools.configure("--disable-static")
@@ -18,4 +17,4 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "README*") pisitools.dodoc("COPYING", "README*")
+11 -3
View File
@@ -1,5 +1,5 @@
<?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>libogg</Name> <Name>libogg</Name>
@@ -10,9 +10,10 @@
</Packager> </Packager>
<License>BSD</License> <License>BSD</License>
<IsA>library</IsA> <IsA>library</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>The Ogg media file format library</Summary> <Summary>The Ogg media file format library</Summary>
<Description>libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams.</Description> <Description>libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams.</Description>
<Archive sha1sum="f07499a35566aa62affb5ca989f62eed5b8092c3" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.4.tar.xz</Archive> <Archive sha1sum="5a368421a636f7faa4c2f662857cb507dffd7c99" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.5.tar.xz</Archive>
</Source> </Source>
<Package> <Package>
@@ -47,7 +48,7 @@
<Summary>32-bit shared libraries for libogg</Summary> <Summary>32-bit shared libraries for libogg</Summary>
<BuildType>emul32</BuildType> <BuildType>emul32</BuildType>
<BuildDependencies> <BuildDependencies>
<!-- <Dependency></Dependency> -->
</BuildDependencies> </BuildDependencies>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency release="current">libogg</Dependency> <Dependency release="current">libogg</Dependency>
@@ -58,6 +59,13 @@
</Package> </Package>
<History> <History>
<Update release="7">
<Date>2021-12-04</Date>
<Version>1.3.5</Version>
<Comment>Version bump.</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="6"> <Update release="6">
<Date>2020-01-06</Date> <Date>2020-01-06</Date>
<Version>1.3.4</Version> <Version>1.3.4</Version>
+4 -25
View File
@@ -2,38 +2,17 @@
# -*- 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 shelltools 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 libtools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
options = "--disable-static \ shelltools.export("PYTHON", "/usr/bin/env python3")
--disable-sqlite \
--enable-flac \
--enable-alsa \
--enable-largefile \
--disable-gcc-pipe \
--disable-jack \
--disable-octave \
--disable-gcc-werror \
--disable-dependency-tracking"
pisitools.dosed("examples/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS") autotools.configure("--enable-alsa --disable-static")
pisitools.dosed("tests/Makefile.am", "noinst_PROGRAMS", "check_PROGRAMS")
shelltools.unlink("M4/libtool.m4")
for i in shelltools.ls("M4/lt*.m4"):
shelltools.unlink(i)
autotools.autoreconf("-fi -I M4")
autotools.configure(options)
pisitools.dosed("doc/Makefile", "^htmldocdir.*", "htmldocdir = /usr/share/doc/%s/html" % get.srcNAME())
def build(): def build():
autotools.make() autotools.make()
@@ -41,4 +20,4 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README") pisitools.dodoc("AUTHORS", "NEWS")
+17 -6
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>libsndfile</Name> <Name>libsndfile</Name>
<Homepage>http://www.mega-nerd.com/libsndfile/</Homepage> <Homepage>https://libsndfile.github.io/libsndfile/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
@@ -11,19 +11,20 @@
<License>LGPLv2.1</License> <License>LGPLv2.1</License>
<IsA>library</IsA> <IsA>library</IsA>
<IsA>app:console</IsA> <IsA>app:console</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>A C library for reading and writing files containing sampled sound</Summary> <Summary>A C library for reading and writing files containing sampled sound</Summary>
<Description>Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface.</Description> <Description>Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface.</Description>
<Archive sha1sum="85aa967e19f6b9bf975601d79669025e5f8bc77d" type="targz">http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz</Archive> <Archive sha1sum="f16a88e7223baef7c4497536dc1b55b56811debc" type="tarbz2">https://github.com/libsndfile/libsndfile/releases/download/1.0.31/libsndfile-1.0.31.tar.bz2</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>flac-devel</Dependency> <Dependency>flac-devel</Dependency>
<Dependency>libogg-devel</Dependency> <Dependency>libogg-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>libopus-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency> <Dependency>alsa-lib-devel</Dependency>
<Dependency>libvorbis-devel</Dependency> <Dependency>libvorbis-devel</Dependency>
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<Patch level="1">libsndfile-1.0.18-less_strict_tests.patch</Patch> <!-- <Patch level="1">missing.patch</Patch> -->
<!-- <Patch level="1">libsndfile-1.0.17-regtests-need-sqlite.patch</Patch> -->
<!-- <Patch level="1">m4dir.patch</Patch> -->
</Patches> </Patches>
</Source> </Source>
@@ -32,6 +33,7 @@
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>flac</Dependency> <Dependency>flac</Dependency>
<Dependency>libogg</Dependency> <Dependency>libogg</Dependency>
<Dependency>libopus</Dependency>
<Dependency>alsa-lib</Dependency> <Dependency>alsa-lib</Dependency>
<Dependency>libvorbis</Dependency> <Dependency>libvorbis</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
@@ -66,12 +68,14 @@
<Dependency>flac-32bit</Dependency> <Dependency>flac-32bit</Dependency>
<Dependency>alsa-lib-32bit</Dependency> <Dependency>alsa-lib-32bit</Dependency>
<Dependency>libogg-32bit</Dependency> <Dependency>libogg-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>libvorbis-32bit</Dependency> <Dependency>libvorbis-32bit</Dependency>
</BuildDependencies> </BuildDependencies>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>flac-32bit</Dependency> <Dependency>flac-32bit</Dependency>
<Dependency>alsa-lib-32bit</Dependency> <Dependency>alsa-lib-32bit</Dependency>
<Dependency>libogg-32bit</Dependency> <Dependency>libogg-32bit</Dependency>
<Dependency>libopus-32bit</Dependency>
<Dependency>libvorbis-32bit</Dependency> <Dependency>libvorbis-32bit</Dependency>
<Dependency release="current">libsndfile</Dependency> <Dependency release="current">libsndfile</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
@@ -81,6 +85,13 @@
</Package> </Package>
<History> <History>
<Update release="7">
<Date>2021-12-04</Date>
<Version>1.0.31</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="6"> <Update release="6">
<Date>2020-01-12</Date> <Date>2020-01-12</Date>
<Version>1.0.28</Version> <Version>1.0.28</Version>
+3 -2
View File
@@ -2,7 +2,7 @@
# -*- 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
@@ -18,4 +18,5 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING")
pisitools.dodoc("COPYING")
+10 -2
View File
@@ -1,5 +1,5 @@
<?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>libvorbis</Name> <Name>libvorbis</Name>
@@ -10,9 +10,10 @@
</Packager> </Packager>
<License>BSD</License> <License>BSD</License>
<IsA>library</IsA> <IsA>library</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>The Vorbis general audio compression codec</Summary> <Summary>The Vorbis general audio compression codec</Summary>
<Description>libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel.</Description> <Description>libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel.</Description>
<Archive sha1sum="237e3d1c66452734fd9b32f494f44238b4f0185e" type="tarxz">http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.6.tar.xz</Archive> <Archive sha1sum="0a2dd71a999656b8091506839e8007a61a8fda1f" type="tarxz">https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.xz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>libogg-devel</Dependency> <Dependency>libogg-devel</Dependency>
</BuildDependencies> </BuildDependencies>
@@ -73,6 +74,13 @@
</Package> </Package>
<History> <History>
<Update release="7">
<Date>2021-12-04</Date>
<Version>1.3.7</Version>
<Comment>Version bump.</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="6"> <Update release="6">
<Date>2020-01-06</Date> <Date>2020-01-06</Date>
<Version>1.3.6</Version> <Version>1.3.6</Version>
+2 -5
View File
@@ -2,16 +2,13 @@
# -*- 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
from pisi.actionsapi import libtools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
#pisitools.dosed("configure", "-O3")
# libtools.libtoolize()
autotools.configure("--disable-static") autotools.configure("--disable-static")
def build(): def build():
@@ -20,4 +17,4 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "TODO", "ChangeLog", "AUTHORS") pisitools.dodoc("AUTHORS", "NEWS")
+12 -4
View File
@@ -1,18 +1,19 @@
<?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>twolame</Name> <Name>twolame</Name>
<Homepage>http://www.twolame.org</Homepage> <Homepage>https://www.twolame.org/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>LGPLv2.1</License> <License>LGPLv2.1</License>
<IsA>app:console</IsA> <IsA>app:console</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>An optimised MPEG Audio Layer 2</Summary> <Summary>An optimised MPEG Audio Layer 2</Summary>
<Description>TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME.</Description> <Description>TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME.</Description>
<Archive sha1sum="3ca460472c2f6eeedad70291d8e37da88b64eb8b" type="targz">mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz</Archive> <Archive sha1sum="6ec05fdaf555ef4157746ac3c91e8cdd20d4a3bc" type="targz">mirrors://sourceforge/twolame/twolame-0.4.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>libsndfile-devel</Dependency> <Dependency>libsndfile-devel</Dependency>
</BuildDependencies> </BuildDependencies>
@@ -45,7 +46,14 @@
</Package> </Package>
<History> <History>
<Update release="5"> <Update release="6">
<Date>2021-12-04</Date>
<Version>0.4.0</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2020-01-18</Date> <Date>2020-01-18</Date>
<Version>0.3.13</Version> <Version>0.3.13</Version>
<Comment>Rebuild</Comment> <Comment>Rebuild</Comment>
+13 -13
View File
@@ -2,25 +2,24 @@
# -*- 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
from pisi.actionsapi import shelltools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): j = ''.join([
shelltools.export("AT_M4DIR", "m4") ' --enable-nls',
autotools.autoreconf("-vfi") ' --enable-vcut',
' --enable-ogg123',
' --with-flac',
' --with-kate',
' --with-speex',
' --docdir=/%s/%s' % (get.docDIR(), get.srcNAME())
])
autotools.configure('--disable-dependency-tracking \ def setup():
--enable-nls \ autotools.configure(j)
--enable-vcut \
--enable-ogg123 \
--with-flac \
--with-speex \
--with-kate \
--docdir="/%s/%s"' % (get.docDIR(), get.srcNAME()))
def build(): def build():
autotools.make() autotools.make()
@@ -29,4 +28,5 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("/usr/share/doc") pisitools.removeDir("/usr/share/doc")
pisitools.dodoc("CHANGES", "COPYING", "AUTHORS", "README", "ogg123/ogg123rc-example") pisitools.dodoc("CHANGES", "COPYING", "AUTHORS", "README", "ogg123/ogg123rc-example")
+15 -6
View File
@@ -1,26 +1,28 @@
<?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>vorbis-tools</Name> <Name>vorbis-tools</Name>
<Homepage>http://www.vorbis.com/</Homepage> <Homepage>https://xiph.org/vorbis/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>as-is</License> <License>as-is</License>
<IsA>app:console</IsA> <IsA>app:console</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>Tools for using the Ogg Vorbis sound file format</Summary> <Summary>Tools for using the Ogg Vorbis sound file format</Summary>
<Description>This set of tools allow you to play and encode Ogg Vorbis files.</Description> <Description>This set of tools allow you to play and encode Ogg Vorbis files.</Description>
<Archive sha1sum="fc6a820bdb5ad6fcac074721fab5c3f96eaf6562" type="targz">http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz</Archive> <Archive sha1sum="c7012dc104da4f35a5d5d46e902cd49214377f5b" type="targz">https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.2.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>libvorbis-devel</Dependency> <Dependency>curl-devel</Dependency>
<Dependency>libao-devel</Dependency>
<Dependency>flac-devel</Dependency> <Dependency>flac-devel</Dependency>
<Dependency>libao-devel</Dependency>
<Dependency>speex-devel</Dependency> <Dependency>speex-devel</Dependency>
<Dependency>libogg-devel</Dependency> <Dependency>libogg-devel</Dependency>
<Dependency>libkate-devel</Dependency> <Dependency>libkate-devel</Dependency>
<Dependency>curl-devel</Dependency> <Dependency>opusfile-devel</Dependency>
<Dependency>libvorbis-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -43,6 +45,13 @@
</Package> </Package>
<History> <History>
<Update release="6">
<Date>2021-12-04</Date>
<Version>1.4.2</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="5"> <Update release="5">
<Date>2020-03-08</Date> <Date>2020-03-08</Date>
<Version>1.4.0</Version> <Version>1.4.0</Version>
+3 -8
View File
@@ -2,19 +2,14 @@
# -*- 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 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 get from pisi.actionsapi import get
def setup(): def setup():
shelltools.system("./autogen.sh") autotools.configure("--disable-static --enable-asm")
autotools.configure("--prefix=/usr \
--libdir=/usr/lib \
--disable-static \
--enable-mmx")
def build(): def build():
autotools.make() autotools.make()
@@ -22,4 +17,4 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README") pisitools.dodoc("AUTHORS", "NEWS")
+13 -4
View File
@@ -1,18 +1,20 @@
<?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>wavpack</Name> <Name>wavpack</Name>
<Homepage>http://www.wavpack.com</Homepage> <Homepage>https://www.wavpack.com/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>BSD</License> <License>BSD</License>
<IsA>library</IsA> <IsA>library</IsA>
<IsA>app:console</IsA>
<PartOf>multimedia.sound</PartOf>
<Summary>WavPack audio compression tools</Summary> <Summary>WavPack audio compression tools</Summary>
<Description>WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode.</Description> <Description>WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode.</Description>
<Archive sha1sum="7a8c9228d8e0f48828cf0a8f31aabcc8ae1f1c3b" type="targz">https://github.com/dbry/WavPack/archive/5.1.0.tar.gz</Archive> <Archive sha1sum="2cee45389af573aaac0bc79b02e974cb6c411f90" type="tarxz">https://www.wavpack.com/wavpack-5.4.0.tar.xz</Archive>
</Source> </Source>
<Package> <Package>
@@ -37,7 +39,14 @@
</Package> </Package>
<History> <History>
<Update release="5"> <Update release="6">
<Date>2021-12-04</Date>
<Version>5.4.0</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2020-01-18</Date> <Date>2020-01-18</Date>
<Version>5.1.0</Version> <Version>5.1.0</Version>
<Comment>Rebuild.</Comment> <Comment>Rebuild.</Comment>