diff --git a/multimedia/misc/libopus/actions.py b/multimedia/misc/libopus/actions.py
index 53128cbf15..27bda59d28 100644
--- a/multimedia/misc/libopus/actions.py
+++ b/multimedia/misc/libopus/actions.py
@@ -1,24 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
-# Licensed under the GNU General Public License, version 2
-# See the file http://www.gnu.org/copyleft/gpl.txt
+# Licensed under the GNU General Public License, version 3.
+# 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 pisitools
-from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fiv")
- options = "\
- --disable-static \
- "
+ options = "--disable-static"
if get.buildTYPE() == "_emul32":
- options += " --libdir=/usr/lib32 \
- "
- shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
+ options += " --libdir=/usr/lib32 "
+ shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options)
@@ -30,6 +27,6 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
-
if get.buildTYPE() != "_emul32":
pisitools.dodoc("AUTHORS", "COPYING", "INSTALL", "README")
+
diff --git a/multimedia/misc/libopus/pspec.xml b/multimedia/misc/libopus/pspec.xml
index 31b8a9bf25..e56eb4e725 100644
--- a/multimedia/misc/libopus/pspec.xml
+++ b/multimedia/misc/libopus/pspec.xml
@@ -1,9 +1,9 @@
-
+
libopus
- http://www.opus-codec.org/
+ https://opus-codec.org/
PisiLinux Community
admins@pisilinux.org
@@ -114,4 +114,4 @@
ertugrulerata@gmail.com
-
\ No newline at end of file
+
diff --git a/multimedia/misc/libopusenc/actions.py b/multimedia/misc/libopusenc/actions.py
index 02dffabf4e..37778e8760 100644
--- a/multimedia/misc/libopusenc/actions.py
+++ b/multimedia/misc/libopusenc/actions.py
@@ -1,8 +1,8 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
-# Licensed under the GNU General Public License, version 2
-# See the file http://www.gnu.org/copyleft/gpl.txt
+# Licensed under the GNU General Public License, version 3.
+# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
@@ -13,10 +13,7 @@ def setup():
options = "--disable-static"
if get.buildTYPE() == "_emul32":
- options += \
- "\
- --libdir=/usr/lib32 \
- "
+ options += " --libdir=/usr/lib32 "
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options)
@@ -31,4 +28,5 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() != "_emul32":
- pisitools.dodoc("AUTHORS", "COPYING", "README.md")
\ No newline at end of file
+ pisitools.dodoc("AUTHORS", "COPYING", "README.md")
+
diff --git a/multimedia/misc/libopusenc/pspec.xml b/multimedia/misc/libopusenc/pspec.xml
index 449ca8a348..6bcd0a27fb 100644
--- a/multimedia/misc/libopusenc/pspec.xml
+++ b/multimedia/misc/libopusenc/pspec.xml
@@ -1,9 +1,9 @@
-
+
libopusenc
- https://www.opus-codec.org/
+ https://opus-codec.org/
fury
wascheme@tuta.io
diff --git a/multimedia/misc/opusfile/actions.py b/multimedia/misc/opusfile/actions.py
index 2767cf3de1..44d3165b51 100644
--- a/multimedia/misc/opusfile/actions.py
+++ b/multimedia/misc/opusfile/actions.py
@@ -1,8 +1,8 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# 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 pisitools
@@ -14,8 +14,7 @@ def setup():
if get.buildTYPE() == "emul32":
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
- options += " --libdir=/usr/lib32 \
- "
+ options += " --libdir=/usr/lib32 "
autotools.configure(options)
@@ -26,3 +25,4 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README*")
+
diff --git a/multimedia/misc/opusfile/pspec.xml b/multimedia/misc/opusfile/pspec.xml
index 5f61a4ec5c..1a09ac4e1c 100644
--- a/multimedia/misc/opusfile/pspec.xml
+++ b/multimedia/misc/opusfile/pspec.xml
@@ -1,5 +1,5 @@
-
+
opusfile
@@ -12,19 +12,18 @@
library
Library for opening, seeking, and decoding .opus files
Library for opening, seeking, and decoding .opus files
- https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.11.tar.gz
+ https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz
libogg-devel
libopus-devel
openssl-devel
- -->
-
- -->
@@ -40,7 +39,7 @@
/usr/share/doc
-
+
opusfile-32bit
emul32
@@ -60,7 +59,7 @@
/usr/lib32
-
+
opusfile-devel
Development files for opusfile
@@ -73,8 +72,15 @@
/usr/lib32/pkgconfig
-
+
+
+ 2020-06-27
+ 0.12
+ Version bump
+ PisiLinux Community
+ admins@pisilinux.org
+
2020-03-07
0.11
diff --git a/multimedia/sound/opus-tools/actions.py b/multimedia/sound/opus-tools/actions.py
index 3b8d1ca576..4c316cbb49 100644
--- a/multimedia/sound/opus-tools/actions.py
+++ b/multimedia/sound/opus-tools/actions.py
@@ -1,20 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
-# Licensed under the GNU General Public License, version 2
-# See the file http://www.gnu.org/copyleft/gpl.txt
+# Licensed under the GNU General Public License, version 3.
+# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
- autotools.configure("--enable-sse --enable-assertions \
- --disable-static \
- --disable-oggtest \
- --disable-opustest \
- --disable-opusfiletest \
- --disable-libopusenctest")
+ autotools.configure("--enable-sse \
+ --enable-assertions \
+ --disable-static \
+ --disable-oggtest \
+ --disable-opustest \
+ --disable-opusfiletest \
+ --disable-libopusenctest")
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
@@ -25,4 +26,5 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("AUTHORS", "COPYING")
\ No newline at end of file
+ pisitools.dodoc("AUTHORS", "COPYING")
+
diff --git a/multimedia/sound/opus-tools/pspec.xml b/multimedia/sound/opus-tools/pspec.xml
index a5e488ffd1..86cb2467bf 100644
--- a/multimedia/sound/opus-tools/pspec.xml
+++ b/multimedia/sound/opus-tools/pspec.xml
@@ -1,9 +1,9 @@
-
+
opus-tools
- https://www.opus-codec.org/
+ https://opus-codec.org/
fury
wascheme@tuta.io
@@ -43,6 +43,13 @@
+
+ 2020-06-28
+ 0.2
+ Rebuild.
+ wascheme@tuta.io
+ fury
+
2019-06-24
0.2
diff --git a/programming/tool/cppcheck/pspec.xml b/programming/tool/cppcheck/pspec.xml
index 5c306262cd..f8f40e45f9 100644
--- a/programming/tool/cppcheck/pspec.xml
+++ b/programming/tool/cppcheck/pspec.xml
@@ -9,7 +9,8 @@
wascheme@tuta.io
GPLv3
- app
+ app:gui
+ app:console
programming.tool
static analysis of C/C++ code.
@@ -41,35 +42,20 @@
libgcc
libpcre
python3
+ qt5-base
+ qt5-charts
python3-Pygments
- /usr/bin/cppcheck
+ /usr/bin
/usr/share
+ /usr/share/Cppcheck
+ /usr/share/Cppcheck/lang
/usr/share/doc
-
- app:gui
- cppcheck-gui
-
- cppcheck
-
- libgcc
- libpcre
- qt5-base
- qt5-charts
-
-
- /usr/bin/cppcheck-gui
- /usr/share/applications
- /usr/share/icons
- /usr/share/Cppcheck/lang
-
-
-
2020-06-27