diff --git a/desktop/lxqt/qterminal/pspec.xml b/desktop/lxqt/qterminal/pspec.xml index 63e1ae2ec0..a93b2a9413 100644 --- a/desktop/lxqt/qterminal/pspec.xml +++ b/desktop/lxqt/qterminal/pspec.xml @@ -1,7 +1,7 @@ qterminal - https://github.com/lxqt/qterminal‎ + https://github.com/lxqt/qterminal Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org diff --git a/multimedia/misc/sdl2-mixer/pspec.xml b/multimedia/misc/sdl2-mixer/pspec.xml index 5680440fb6..1fdd7eb30a 100644 --- a/multimedia/misc/sdl2-mixer/pspec.xml +++ b/multimedia/misc/sdl2-mixer/pspec.xml @@ -3,7 +3,7 @@ sdl2-mixer - http://www.libsdl.org/projects/SDL2_mixer/ + http://www.libsdl.org/projects/SDL_mixer/ PisiLinux Community admins@pisilinux.org diff --git a/util/admin/htop/actions.py b/util/admin/htop/actions.py index 28dceb8984..66643c72a6 100644 --- a/util/admin/htop/actions.py +++ b/util/admin/htop/actions.py @@ -1,17 +1,19 @@ +#!/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 shelltools from pisi.actionsapi import autotools from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools from pisi.actionsapi import get def setup(): shelltools.system("sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure") autotools.configure("--enable-taskstats \ - --enable-unicode") + --enable-unicode \ + --enable-cgroup") def build(): autotools.make("-j1") @@ -19,4 +21,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README") + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/util/admin/htop/pspec.xml b/util/admin/htop/pspec.xml index aeafd7f665..d6ad4b0afa 100644 --- a/util/admin/htop/pspec.xml +++ b/util/admin/htop/pspec.xml @@ -1,9 +1,9 @@ - + htop - http://htop.sourceforge.net/ + https://github.com/htop-dev/htop PisiLinux Community admins@pisilinux.org @@ -14,8 +14,9 @@ app:gui An interactive process viewer for Linux htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. - http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz + https://dl.bintray.com/htop/source/htop-3.0.1.tar.gz + python3 ncurses-devel gettext-devel @@ -39,6 +40,13 @@ + + 2020-09-11 + 3.0.1 + Community version bump. + PisiLinux Community + admins@pisilinux.org + 2018-09-09 2.0.2 diff --git a/util/admin/inxi/actions.py b/util/admin/inxi/actions.py index 9c175eb86d..8c22e786d8 100644 --- a/util/admin/inxi/actions.py +++ b/util/admin/inxi/actions.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # 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 pisitools @@ -14,5 +14,5 @@ def install(): pisitools.dobin("inxi") pisitools.doman("inxi.1") pisitools.dodoc("inxi.changelog") - + pisitools.dosym("/usr/bin/inxi", "/usr/share/kde4/apps/konversation/scripts/inxi") diff --git a/util/admin/inxi/pspec.xml b/util/admin/inxi/pspec.xml index 0dbdec9623..3c593a74d3 100644 --- a/util/admin/inxi/pspec.xml +++ b/util/admin/inxi/pspec.xml @@ -1,5 +1,5 @@ - + inxi @@ -8,13 +8,13 @@ Yusuf Aydemir yusuf.aydemir@pisilinux.org - GPLv1 + GPLv3 app:console script to get system information script to get system information - https://github.com/smxi/inxi/archive/3.0.20-1.tar.gz + https://github.com/smxi/inxi/archive/3.1.06-1.tar.gz - + @@ -29,9 +29,16 @@ + + 2020-09-11 + 3.1.06.1 + Version bump. + fury + wascheme@tuta.io + 2018-09-09 - 3.0.2 + 3.0.20.1 Version bump. Mustafa Cinasal muscnsl@gmail.com diff --git a/util/archive/zziplib/actions.py b/util/archive/zziplib/actions.py index d32d7d5a85..e834745a4e 100644 --- a/util/archive/zziplib/actions.py +++ b/util/archive/zziplib/actions.py @@ -5,25 +5,27 @@ # 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 cmaketools from pisi.actionsapi import pisitools from pisi.actionsapi import get +shelltools.export("JOBS", get.makeJOBS().replace("-j5", "-j1")) + def setup(): -# autotools.autoreconf("-vif") - autotools.configure("--disable-static --enable-sdl --with-zlib") + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib -L", sourceDir = '..') def build(): - autotools.make() + shelltools.cd("build") + cmaketools.make() + cmaketools.make("docs") def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - - # Extract and install shipped man pages - #shelltools.system("tar xvf docs/zziplib-manpages.tar") - for manp in shelltools.ls("man3"): - pisitools.doman("man3/%s" % manp) + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) pisitools.dohtml("docs/*.htm*") + shelltools.cd("..") pisitools.dodoc("ChangeLog", "COPYING.LIB", "README", "TODO", "docs/COPYING*", "docs/README.SDL") diff --git a/util/archive/zziplib/pspec.xml b/util/archive/zziplib/pspec.xml index 297a9c6394..7f379265e1 100644 --- a/util/archive/zziplib/pspec.xml +++ b/util/archive/zziplib/pspec.xml @@ -1,5 +1,5 @@ - + zziplib @@ -13,20 +13,27 @@ ZLIB app:console library - libZ-based ZIP-access Library + util.archive + libZ-based ZIP-access Library. - zziplib provides read access to zipped files in a zip-archive, using compression based solely on free algorithms provided by zlib. + The ZZIPlib provides read access on ZIP-archives and unpacked data. It features an additional simplified API following the standard Posix API for file access. - https://sourceforge.net/projects/zziplib/files/zziplib13/0.13.68/zziplib-0.13.68.tar.bz2 + + https://github.com/gdraheim/zziplib/archive/v0.13.71.tar.gz + - libsdl-devel + cmake + python3 + libxslt zlib-devel + aalib-devel + docbook-xsl + docbook-xml + libsdl-devel + libsdl2-devel - + @@ -39,6 +46,7 @@ /usr/bin /usr/lib /usr/share/aclocal + /usr/share/man/man3 @@ -48,11 +56,11 @@ zziplib libsdl-devel + libsdl2-devel /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 + /usr/lib/pkgconfig @@ -68,6 +76,13 @@ + + 2020-06-23 + 0.13.71 + Ver. bump + fury + wascheme@tuta.io + 2019-10-31 0.13.68 diff --git a/util/misc/strace/actions.py b/util/misc/strace/actions.py index 44383527fa..efa4968eab 100644 --- a/util/misc/strace/actions.py +++ b/util/misc/strace/actions.py @@ -2,7 +2,7 @@ # -*- 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 @@ -21,4 +21,4 @@ def check(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("ChangeLog", "CREDITS", "NEWS", "README", "README-linux-ptrace",) + pisitools.dodoc("ChangeLog", "COPYING", "CREDITS", "NEWS", "README", "README-linux-ptrace",) diff --git a/util/misc/strace/pspec.xml b/util/misc/strace/pspec.xml index f610b61e13..0f414d0b5e 100644 --- a/util/misc/strace/pspec.xml +++ b/util/misc/strace/pspec.xml @@ -12,13 +12,15 @@ app:console Tracks and displays system calls associated with a running process strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. - https://strace.io/files/4.21/strace-4.21.tar.xz + https://strace.io/files/5.8/strace-5.8.tar.xz libaio-devel libunwind-devel + kernel-headers + kernel-module-headers - + @@ -35,6 +37,13 @@ + + 2020-09-11 + 5.8 + Kernel bump. + PisiLinux Community + admins@pisilinux.org + 2020-08-13 4.21 diff --git a/util/misc/tmux/pspec.xml b/util/misc/tmux/pspec.xml index fb094a7f35..04ace8129b 100644 --- a/util/misc/tmux/pspec.xml +++ b/util/misc/tmux/pspec.xml @@ -44,6 +44,6 @@ First release. Hasan Basri hbasria@pisilinux.org - +