From 03386f55133c75ea2d0e0b4ab69e0832c0a27254 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:18:53 +0300 Subject: [PATCH 01/80] coin upstream 4.0.3 --- science/misc/coin/actions.py | 42 +++++++++++++++----------------- science/misc/coin/pspec.xml | 47 +++++++++++++++++++++--------------- 2 files changed, 48 insertions(+), 41 deletions(-) diff --git a/science/misc/coin/actions.py b/science/misc/coin/actions.py index f2928c2b27..9dced38434 100644 --- a/science/misc/coin/actions.py +++ b/science/misc/coin/actions.py @@ -2,28 +2,31 @@ # -*- 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 from pisi.actionsapi import get +i = ''.join([ + ' --prefix=/usr', + ' --with-mesa', + ' --disable-debug', + ' --enable-man', + ' --enable-html', + ' --enable-shared', + ' --enable-threadsafe', + ' --enable-exceptions', + ' --enable-optimization', + ' --enable-system-expat', + ' --enable-javascript-api', + ' --disable-maintainer-mode', + ' --disable-dependency-tracking ' + ]) + def setup(): - autotools.configure("--prefix=/usr \ - --mandir=/usr/share/man \ - --enable-optimization \ - --enable-javascript-api \ - --enable-threadsafe \ - --enable-exceptions \ - --enable-man \ - --with-mesa \ - --disable-debug \ - --enable-shared \ - --enable-html \ - --disable-maintainer-mode \ - --disable-dependency-tracking \ - --enable-system-expat") - + autotools.configure(i) + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") def build(): @@ -32,9 +35,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "NEWS", "README*", "RELNOTES", "THANKS") - - # remove conflict man file with openssl - pisitools.remove("/usr/share/man/man3/threads.3") - # remove conflict man file with libftdi-devel - pisitools.remove("/usr/share/man/man3/deprecated.3") + pisitools.dodoc("AUTHORS", "COPYING", "THANKS") diff --git a/science/misc/coin/pspec.xml b/science/misc/coin/pspec.xml index acd71f26c4..a7bf04f109 100644 --- a/science/misc/coin/pspec.xml +++ b/science/misc/coin/pspec.xml @@ -1,51 +1,46 @@ - + coin - https://bitbucket.org/Coin3D/coin/wiki/Home + https://github.com/coin3d/coin PisiLinux Community admin@pisilinux.org - GPLv2 + BSDv3 app:console Coin3D is a high-level 3D graphics toolkit. Is a high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1. - https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz + https://github.com/coin3d/coin/releases/download/v4.0.3/coin-4.0.3-src.tar.gz - libXext-devel + doxygen mesa-devel + expat-devel + boost-devel libSM-devel libICE-devel - doxygen - libglade-devel + libXext-devel mesa-glu-devel - clang-name-lookup.diff - fix_gcc_4_8_1.patch - Coin-2.5.0-inttypes.patch - Coin-2.4.6-man3.diff + coin - libX11 - libglvnd - libXext mesa libSM libICE - libglade + libXext + mesa-glu - /usr/bin /usr/lib - /usr/share/man - /usr/share/Coin + /usr/share + /usr/share/man/man3 @@ -53,12 +48,19 @@ coin-devel Development files for coin + mesa-devel + expat-devel + libSM-devel + libICE-devel + libXext-devel coin + /usr/bin /usr/include /usr/lib/pkgconfig /usr/share/aclocal + /usr/share/man/man1 @@ -66,11 +68,18 @@ coin-docs Documents for Coin - /usr/share/doc + /usr/share/doc/coin/html + + 2025-01-30 + 4.0.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2020-01-27 3.1.3 From cfbbbf3018022733934781403cc3ecf3839c6ea2 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:20:18 +0300 Subject: [PATCH 02/80] cares upstream 1.34.4 --- network/misc/c-ares/actions.py | 22 +++++++++++----------- network/misc/c-ares/pspec.xml | 22 +++++++++++++++------- 2 files changed, 26 insertions(+), 18 deletions(-) diff --git a/network/misc/c-ares/actions.py b/network/misc/c-ares/actions.py index 59d17080d9..ae8ec4e05f 100644 --- a/network/misc/c-ares/actions.py +++ b/network/misc/c-ares/actions.py @@ -2,23 +2,23 @@ # -*- 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 pisitools -from pisi.actionsapi import cmaketools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools +i = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - shelltools.export("CXXFLAGS", get.CXXFLAGS().replace("-D_FORTIFY_SOURCE=2", "")) - shelltools.export("CFLAGS", get.CFLAGS().replace("-D_FORTIFY_SOURCE=2", "")) - cmaketools.configure() + cmaketools.configure(i) def build(): - cmaketools.make() + mesontools.build() def install(): - cmaketools.install() + mesontools.install() - pisitools.dodoc("AUTHORS", "README*", "NEWS", "CHANGES", "RELEASE-NOTES", "LICENSE.md") + pisitools.dodoc("AUTHORS", "LICENSE.md") diff --git a/network/misc/c-ares/pspec.xml b/network/misc/c-ares/pspec.xml index 7f2cc68f10..8a9efd80da 100644 --- a/network/misc/c-ares/pspec.xml +++ b/network/misc/c-ares/pspec.xml @@ -1,20 +1,21 @@ - + c-ares - https://c-ares.haxx.se/ + https://c-ares.org/ PisiLinux Community admins@pisilinux.org - as-is + MIT library A C library that performs DNS requests and name resolves asynchronously c-ares is a C library that performs DNS requests and name resolves asynchronously. c-ares is a fork of the library named 'ares', written by Greg Hudson at MIT. - https://c-ares.haxx.se/download/c-ares-1.18.1.tar.gz + https://github.com/c-ares/c-ares/releases/download/v1.34.4/c-ares-1.34.4.tar.gz cmake + ninja @@ -24,7 +25,7 @@ /usr/bin /usr/lib /usr/share/man - /usr/share/doc/c-ares/* + /usr/share/doc @@ -36,12 +37,19 @@ /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/pkgconfig + + 2025-01-30 + 1.34.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-10-22 1.18.1 From 1d77e4ed29a4bf007d2d714409d0164122614645 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:22:12 +0300 Subject: [PATCH 03/80] libdca-0.0.7 --- multimedia/sound/libdca/actions.py | 16 ++++++---------- multimedia/sound/libdca/pspec.xml | 14 ++++++++++---- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/multimedia/sound/libdca/actions.py b/multimedia/sound/libdca/actions.py index 0c7a71e757..c6c448e932 100644 --- a/multimedia/sound/libdca/actions.py +++ b/multimedia/sound/libdca/actions.py @@ -2,26 +2,22 @@ # -*- 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 from pisi.actionsapi import get def setup(): - autotools.autoreconf("-fi") - autotools.configure("--enable-shared \ - --disable-static") + autotools.autoreconf("-fiv") + autotools.configure("--enable-shared --disable-static") def build(): - autotools.make('OPT_CFLAGS=""') + autotools.make() def install(): autotools.rawInstall('DESTDIR="%s"' % get.installDIR()) - pisitools.remove("/usr/lib/*.a") - # FIXME: avidemux needs this - # pisitools.insinto("/usr/include","libdts/dca_internal.h") - - pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "TODO", "doc/libdca.txt") + pisitools.remove("/usr/lib/libdts.a") + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/multimedia/sound/libdca/pspec.xml b/multimedia/sound/libdca/pspec.xml index 9a05d1459d..3f748be2d9 100644 --- a/multimedia/sound/libdca/pspec.xml +++ b/multimedia/sound/libdca/pspec.xml @@ -1,5 +1,5 @@ - + libdca @@ -12,10 +12,9 @@ library Library for decoding DTS Coherent Acoustics streams libdts is a free library for decoding DTS Coherent Acoustics streams. - http://download.videolan.org/pub/videolan/libdca/0.0.6/libdca-0.0.6.tar.bz2 + http://download.videolan.org/pub/videolan/libdca/0.0.7/libdca-0.0.7.tar.bz2 - libdca-0.0.5-cflags.patch - + @@ -42,6 +41,13 @@ + + 2025-01-28 + 0.0.7 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2020-01-18 0.0.6 From fc37e50610edff81f97cae21249f0b43ddc2a8f9 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:23:51 +0300 Subject: [PATCH 04/80] libcaca-0.99_beta20 --- multimedia/graphics/libcaca/actions.py | 11 ++--------- multimedia/graphics/libcaca/pspec.xml | 26 +++++++++++++++++++------- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/multimedia/graphics/libcaca/actions.py b/multimedia/graphics/libcaca/actions.py index 7b4d4510a3..6ef5e82496 100644 --- a/multimedia/graphics/libcaca/actions.py +++ b/multimedia/graphics/libcaca/actions.py @@ -2,16 +2,13 @@ # -*- 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 -from pisi.actionsapi import libtools from pisi.actionsapi import get def setup(): - #autotools.autoreconf("-vfi") - #libtools.libtoolize("--force --install") autotools.configure("--disable-doc \ --disable-static \ --disable-ruby \ @@ -35,8 +32,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - # we remove la files but symlinks stay there, so we remove by hand - pisitools.remove("/usr/lib/*.la") - #pisitools.removeDir("/usr/share/java") - - pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "NEWS","NOTES", "README", "THANKS") + pisitools.dodoc("AUTHORS", "COPYING*", "THANKS") diff --git a/multimedia/graphics/libcaca/pspec.xml b/multimedia/graphics/libcaca/pspec.xml index d89ba0f9e5..1f3820f96d 100644 --- a/multimedia/graphics/libcaca/pspec.xml +++ b/multimedia/graphics/libcaca/pspec.xml @@ -1,9 +1,9 @@ - + libcaca - http://caca.zoy.org/ + https://github.com/cacalabs/libcaca PisiLinux Community admins@pisilinux.org @@ -14,23 +14,27 @@ library A library that creates colored ASCII-art graphics libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals - https://fossies.org/linux/privat/libcaca-0.99.beta19.tar.gz + https://github.com/cacalabs/libcaca/releases/download/v0.99.beta20/libcaca-0.99.beta20.tar.bz2 - imlib2-devel + zlib-devel slang-devel - ncurses-devel libX11-devel + imlib2-devel + ncurses-devel + + + libcaca - imlib2 zlib slang - ncurses libX11 + imlib2 + ncurses /usr/bin @@ -45,6 +49,7 @@ libcaca-devel Development files for libcaca + zlib-devel libcaca @@ -55,6 +60,13 @@ + + 2025-01-29 + 0.99_beta20 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2020-01-19 0.99_beta19 From cf3b2688dcb7880e1ea4d5c2a66f1eb68b53efd6 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:25:11 +0300 Subject: [PATCH 05/80] codec2 upstream 1.2.0 --- multimedia/sound/codec2/actions.py | 29 ++++++++++-------------- multimedia/sound/codec2/pspec.xml | 36 +++++++++++++++--------------- 2 files changed, 30 insertions(+), 35 deletions(-) diff --git a/multimedia/sound/codec2/actions.py b/multimedia/sound/codec2/actions.py index 000e17dd5b..b445010a69 100755 --- a/multimedia/sound/codec2/actions.py +++ b/multimedia/sound/codec2/actions.py @@ -2,28 +2,23 @@ # -*- 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 autotools -from pisi.actionsapi import cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools + +y = ''.join([ + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -DCMAKE_BUILD_TYPE=None', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - shelltools.system("mkdir build_") - shelltools.cd("build_") - - shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib") + cmaketools.configure(y) def build(): - shelltools.cd("build_") - cmaketools.make() + mesontools.build() def install(): - shelltools.cd("build_") - autotools.rawInstall("DESTDIR=%s" %get.installDIR()) - - shelltools.cd("..") - pisitools.dodoc("COPYING", "README") + mesontools.install() + pisitools.dodoc("COPYING") diff --git a/multimedia/sound/codec2/pspec.xml b/multimedia/sound/codec2/pspec.xml index f3c24d4543..c5c10fbe5d 100755 --- a/multimedia/sound/codec2/pspec.xml +++ b/multimedia/sound/codec2/pspec.xml @@ -1,50 +1,53 @@ - + codec2 - http://www.rowetel.com/?page_id=452 + https://github.com/drowe67/codec2 Mathias Freire mathiasfreire45@gmail.com - LGPL + LGPLv2.1 library Low bit rate open source speech codec Codec 2 is an open source speech codec designed for communications quality speech between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF digital radio. - https://hobbes1069.fedorapeople.org/freetel/codec2/codec2-0.8.1.tar.xz + https://github.com/drowe67/codec2/archive/1.2.0/codec2-1.2.0.tar.gz cmake - speex-devel - portaudio-devel + ninja - + codec2 - - speex - portaudio - - /usr/bin /usr/lib /usr/share/doc - - + + codec2-devel Header files for codec2. codec2 - /usr/include + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + 2025-01-29 + 1.2.0 + Version bump. + Idris Kalp + idriskalp@gmail.com + 2020-01-12 0.8.1 @@ -54,6 +57,3 @@ - - - From 2bf86e56e3ac847bff3899bb4984766e1a74e283 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:25:35 +0300 Subject: [PATCH 06/80] gkrellm-2.4.0 --- hardware/info/gkrellm/actions.py | 46 +++++++++++++------------------- hardware/info/gkrellm/pspec.xml | 44 +++++++++++------------------- 2 files changed, 34 insertions(+), 56 deletions(-) diff --git a/hardware/info/gkrellm/actions.py b/hardware/info/gkrellm/actions.py index 36ecac8a26..53d87c0685 100644 --- a/hardware/info/gkrellm/actions.py +++ b/hardware/info/gkrellm/actions.py @@ -2,38 +2,28 @@ # -*- 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 -from pisi.actionsapi import shelltools -from pisi.actionsapi import get +from pisi.actionsapi import autotools, pisitools, get +i = ''.join([ + ' without-gnutls=no', + ' without-ssl=yes', + ' without-ntlm=yes', + ' without-libsensors=yes', + ' INSTALLROOT=/usr', + ' INCLUDEDIR=/usr/include/gkrellm2', + ' CFLAGS=\'%s\'' % get.CFLAGS(), + ' LDFLAGS=\'%s\' ' % get.LDFLAGS() + ]) def build(): - shelltools.export("LDFLAGS", "%s -lgmodule-2.0" % get.LDFLAGS()) - autotools.make('CC=%s \ - INSTALLROOT=/usr \ - INCLUDEDIR=/usr/include/gkrellm2 \ - LOCALEDIR=/usr/share/locale \ - STRIP="" \ - LINK_FLAGS="%s -Wl,-E" \ - enable_nls=1 \ - without-ssl=yes \ - without-sensors=no \ - without-libsensors=yes' % (get.CC(), get.LDFLAGS())) - # without ssl option enables gnutls + autotools.make(i) def install(): - autotools.rawInstall("DESTDIR=%s \ - PREFIX=/usr" % get.installDIR()) - - pisitools.insinto("/etc", "server/gkrellmd.conf") - - pisitools.doman("gkrellm.1") - pisitools.doman("gkrellmd.1") - - pisitools.dodoc("CREDITS", "README", "Changelog", "COPYRIGHT") - pisitools.dohtml("*") - + a = get.installDIR() + b = "DESTDIR=%s PREFIX=/usr CFGDIR=%s/etc" % (a, a) + autotools.rawInstall(b) + pisitools.dodoc("CREDITS", "COPYRIGHT", "COPYING") + pisitools.removeDir("/usr/lib/systemd") diff --git a/hardware/info/gkrellm/pspec.xml b/hardware/info/gkrellm/pspec.xml index a5007bfa1e..f5bdebe226 100644 --- a/hardware/info/gkrellm/pspec.xml +++ b/hardware/info/gkrellm/pspec.xml @@ -1,61 +1,42 @@ - + gkrellm - https://www.gkrellm.net/ + https://gkrellm.srcbox.net/ PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3 gkrellm app:gui service - A compact and clean system monitoring tool + A compact and clean system monitoring tool. A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. - https://gkrellm.srcbox.net/releases/gkrellm-2.3.11.tar.bz2 + https://gkrellm.srcbox.net/releases/gkrellm-2.4.0.tar.bz2 - gnutls-devel gtk2-devel - pango-devel - libX11-devel - glib2-devel - libgcrypt-devel - libICE-devel libSM-devel + gnutls-devel - drop_privileges.patch - gkrellmd-conf.patch + gkrellm - gnutls gtk2 - pango - glib2 - libX11 - libgcrypt - libICE - gdk-pixbuf libSM + gnutls /etc /usr/bin - /usr/lib - /usr/share/doc /usr/share - /usr/share/man - - gkrellm.desktop - gkrellm.png - System.Service @@ -65,8 +46,8 @@ gkrellm-devel Development files for gkrellm - gkrellm gtk2-devel + gkrellm /usr/include @@ -75,6 +56,13 @@ + + 2025-01-29 + 2.4.0 + Version bump. + Pisi Linux community + admins@pisilinux.org + 2024-11-29 2.3.11 From 15247ed1aed3699c5782b20417afd2bfd9f1f668 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:26:46 +0300 Subject: [PATCH 07/80] clean up formatting. --- desktop/kde/applications/akonadi-calendar-tools/pspec.xml | 1 - desktop/kde/applications/akonadi-calendar/pspec.xml | 1 - desktop/kde/applications/akonadi-contacts/pspec.xml | 1 - desktop/kde/applications/akonadi-import-wizard/pspec.xml | 1 - desktop/kde/applications/akonadi-mime/pspec.xml | 1 - desktop/kde/applications/akonadi-search/pspec.xml | 1 - desktop/kde/applications/akonadi/pspec.xml | 1 - desktop/kde/applications/akonadiconsole/pspec.xml | 1 - desktop/kde/applications/akregator/pspec.xml | 1 - desktop/kde/applications/analitza/pspec.xml | 1 - desktop/kde/applications/ark/pspec.xml | 1 - desktop/kde/applications/artikulate/pspec.xml | 1 - desktop/kde/applications/audiocd-kio/pspec.xml | 1 - desktop/kde/applications/baloo-widgets/pspec.xml | 1 - desktop/kde/applications/blinken/pspec.xml | 1 - desktop/kde/applications/bomber/pspec.xml | 1 - desktop/kde/applications/bovo/pspec.xml | 1 - desktop/kde/applications/calendarsupport/pspec.xml | 1 - desktop/kde/applications/cantor/pspec.xml | 1 - desktop/kde/applications/dolphin-plugins/pspec.xml | 1 - desktop/kde/applications/dolphin/pspec.xml | 1 - desktop/kde/applications/dragonplayer/pspec.xml | 1 - desktop/kde/applications/eventviews/pspec.xml | 1 - desktop/kde/applications/falkon/pspec.xml | 1 - desktop/kde/applications/ffmpegthumbs/pspec.xml | 1 - desktop/kde/applications/filelight/pspec.xml | 1 - desktop/kde/applications/granatier/pspec.xml | 1 - desktop/kde/applications/grantlee-editor/pspec.xml | 1 - desktop/kde/applications/grantleetheme/pspec.xml | 1 - desktop/kde/applications/gwenview/pspec.xml | 1 - desktop/kde/applications/incidenceeditor/pspec.xml | 1 - desktop/kde/applications/kaccounts-integration/pspec.xml | 1 - desktop/kde/applications/kaccounts-providers/pspec.xml | 1 - desktop/kde/applications/kaddressbook/pspec.xml | 1 - desktop/kde/applications/kalarm/pspec.xml | 1 - desktop/kde/applications/kalgebra/pspec.xml | 1 - desktop/kde/applications/kalzium/pspec.xml | 1 - desktop/kde/applications/kamera/pspec.xml | 1 - desktop/kde/applications/kanagram/pspec.xml | 1 - desktop/kde/applications/kapman/pspec.xml | 1 - desktop/kde/applications/kapptemplate/pspec.xml | 1 - desktop/kde/applications/kate/pspec.xml | 1 - desktop/kde/applications/katomic/pspec.xml | 1 - desktop/kde/applications/kblackbox/pspec.xml | 1 - desktop/kde/applications/kblocks/pspec.xml | 1 - desktop/kde/applications/kbounce/pspec.xml | 1 - desktop/kde/applications/kbreakout/pspec.xml | 1 - desktop/kde/applications/kbruch/pspec.xml | 1 - desktop/kde/applications/kcalc/pspec.xml | 1 - desktop/kde/applications/kcalutils/pspec.xml | 1 - desktop/kde/applications/kcharselect/pspec.xml | 1 - desktop/kde/applications/kcolorchooser/pspec.xml | 1 - desktop/kde/applications/kcron/pspec.xml | 1 - desktop/kde/applications/kde-dev-scripts/pspec.xml | 1 - desktop/kde/applications/kdebugsettings/pspec.xml | 1 - desktop/kde/applications/kdeconnect/pspec.xml | 1 - desktop/kde/applications/kdeedu-data/pspec.xml | 1 - desktop/kde/applications/kdegraphics-mobipocket/pspec.xml | 1 - desktop/kde/applications/kdegraphics-svgpart/pspec.xml | 1 - desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml | 1 - desktop/kde/applications/kdenetwork-filesharing/pspec.xml | 1 - desktop/kde/applications/kdenlive/pspec.xml | 1 - desktop/kde/applications/kdepim-addons/pspec.xml | 1 - desktop/kde/applications/kdepim-runtime/pspec.xml | 1 - desktop/kde/applications/kdesdk-thumbnailers/pspec.xml | 1 - desktop/kde/applications/kdf/pspec.xml | 1 - desktop/kde/applications/kdiagram/pspec.xml | 1 - desktop/kde/applications/kdialog/pspec.xml | 1 - desktop/kde/applications/kdiamond/pspec.xml | 1 - desktop/kde/applications/keditbookmarks/pspec.xml | 1 - desktop/kde/applications/kfind/pspec.xml | 1 - desktop/kde/applications/kfourinline/pspec.xml | 1 - desktop/kde/applications/kgeography/pspec.xml | 1 - desktop/kde/applications/kget/pspec.xml | 1 - desktop/kde/applications/kgpg/pspec.xml | 1 - desktop/kde/applications/khangman/pspec.xml | 1 - desktop/kde/applications/khelpcenter/pspec.xml | 1 - desktop/kde/applications/kidentitymanagement/pspec.xml | 1 - desktop/kde/applications/kig/pspec.xml | 1 - desktop/kde/applications/killbots/pspec.xml | 1 - desktop/kde/applications/kimap/pspec.xml | 1 - desktop/kde/applications/kio-admin/pspec.xml | 1 - desktop/kde/applications/kio-extras/pspec.xml | 1 - desktop/kde/applications/kio-gdrive/pspec.xml | 1 - desktop/kde/applications/kio-zeroconf/pspec.xml | 1 - desktop/kde/applications/kiriki/pspec.xml | 1 - desktop/kde/applications/kiten/pspec.xml | 1 - desktop/kde/applications/kitinerary/pspec.xml | 1 - desktop/kde/applications/kjumpingcube/pspec.xml | 1 - desktop/kde/applications/kldap/pspec.xml | 1 - desktop/kde/applications/kleopatra/pspec.xml | 1 - desktop/kde/applications/klettres/pspec.xml | 1 - desktop/kde/applications/klickety/pspec.xml | 1 - desktop/kde/applications/klines/pspec.xml | 1 - desktop/kde/applications/kmahjongg/pspec.xml | 1 - desktop/kde/applications/kmail-account-wizard/pspec.xml | 1 - desktop/kde/applications/kmail/pspec.xml | 1 - desktop/kde/applications/kmailtransport/pspec.xml | 1 - desktop/kde/applications/kmbox/pspec.xml | 1 - desktop/kde/applications/kmime/pspec.xml | 1 - desktop/kde/applications/kmines/pspec.xml | 1 - desktop/kde/applications/kmix/pspec.xml | 1 - desktop/kde/applications/kmplot/pspec.xml | 1 - desktop/kde/applications/knavalbattle/pspec.xml | 1 - desktop/kde/applications/knetwalk/pspec.xml | 1 - desktop/kde/applications/kollision/pspec.xml | 1 - desktop/kde/applications/kolourpaint/pspec.xml | 1 - desktop/kde/applications/kompare/pspec.xml | 1 - desktop/kde/applications/konqueror/pspec.xml | 1 - desktop/kde/applications/konsole/pspec.xml | 1 - desktop/kde/applications/kontact/pspec.xml | 1 - desktop/kde/applications/kontactinterface/pspec.xml | 1 - desktop/kde/applications/konversation/pspec.xml | 1 - desktop/kde/applications/korganizer/pspec.xml | 1 - desktop/kde/applications/kpat/pspec.xml | 1 - desktop/kde/applications/kpimtextedit/pspec.xml | 1 - desktop/kde/applications/kpkpass/pspec.xml | 1 - desktop/kde/applications/kpmcore/pspec.xml | 1 - desktop/kde/applications/kqtquickcharts/pspec.xml | 1 - desktop/kde/applications/krdc/pspec.xml | 1 - desktop/kde/applications/krfb/pspec.xml | 1 - desktop/kde/applications/kross-interpreters/pspec.xml | 1 - desktop/kde/applications/kruler/pspec.xml | 1 - desktop/kde/applications/ksanecore/pspec.xml | 1 - desktop/kde/applications/kshisen/pspec.xml | 1 - desktop/kde/applications/ksmtp/pspec.xml | 1 - desktop/kde/applications/ksquares/pspec.xml | 1 - desktop/kde/applications/ksudoku/pspec.xml | 1 - desktop/kde/applications/ksystemlog/pspec.xml | 1 - desktop/kde/applications/kteatime/pspec.xml | 1 - desktop/kde/applications/ktimer/pspec.xml | 1 - desktop/kde/applications/ktnef/pspec.xml | 1 - desktop/kde/applications/ktorrent/pspec.xml | 1 - desktop/kde/applications/ktuberling/pspec.xml | 1 - desktop/kde/applications/kturtle/pspec.xml | 1 - desktop/kde/applications/kwalletmanager/pspec.xml | 1 - desktop/kde/applications/kwave/pspec.xml | 1 - desktop/kde/applications/kwordquiz/pspec.xml | 1 - desktop/kde/applications/libgravatar/pspec.xml | 1 - desktop/kde/applications/libkcddb/pspec.xml | 1 - desktop/kde/applications/libkcompactdisc/pspec.xml | 1 - desktop/kde/applications/libkdcraw/pspec.xml | 1 - desktop/kde/applications/libkdegames/pspec.xml | 1 - desktop/kde/applications/libkdepim/pspec.xml | 1 - desktop/kde/applications/libkeduvocdocument/pspec.xml | 1 - desktop/kde/applications/libkexiv2/pspec.xml | 1 - desktop/kde/applications/libkgapi/pspec.xml | 1 - desktop/kde/applications/libkleo/pspec.xml | 1 - desktop/kde/applications/libkmahjongg/pspec.xml | 1 - desktop/kde/applications/libkomparediff2/pspec.xml | 1 - desktop/kde/applications/libksane/pspec.xml | 1 - desktop/kde/applications/libksieve/pspec.xml | 1 - desktop/kde/applications/libktorrent/pspec.xml | 1 - desktop/kde/applications/lokalize/pspec.xml | 1 - desktop/kde/applications/mailcommon/pspec.xml | 1 - desktop/kde/applications/mailimporter/pspec.xml | 1 - desktop/kde/applications/marble/pspec.xml | 1 - desktop/kde/applications/messagelib/pspec.xml | 1 - desktop/kde/applications/mimetreeparser/pspec.xml | 1 - desktop/kde/applications/minuet/pspec.xml | 1 - desktop/kde/applications/okular/pspec.xml | 1 - desktop/kde/applications/parley/pspec.xml | 1 - desktop/kde/applications/partitionmanager/pspec.xml | 1 - desktop/kde/applications/picmi/pspec.xml | 1 - desktop/kde/applications/pim-data-exporter/pspec.xml | 1 - desktop/kde/applications/pim-sieve-editor/pspec.xml | 1 - desktop/kde/applications/pimcommon/pspec.xml | 1 - desktop/kde/applications/poxml/pspec.xml | 1 - desktop/kde/applications/rocs/pspec.xml | 1 - desktop/kde/applications/signon-kwallet-extension/pspec.xml | 1 - desktop/kde/applications/spectacle/pspec.xml | 1 - desktop/kde/applications/step/pspec.xml | 1 - desktop/kde/applications/umbrello/pspec.xml | 1 - desktop/kde/framework/attica/pspec.xml | 1 - desktop/kde/framework/baloo/pspec.xml | 1 - desktop/kde/framework/bluez-qt/pspec.xml | 1 - desktop/kde/framework/breeze-icons/pspec.xml | 1 - desktop/kde/framework/extra-cmake-modules/pspec.xml | 1 - desktop/kde/framework/frameworkintegration/pspec.xml | 1 - desktop/kde/framework/kapidox/pspec.xml | 1 - desktop/kde/framework/karchive/pspec.xml | 1 - desktop/kde/framework/kauth/pspec.xml | 1 - desktop/kde/framework/kbookmarks/pspec.xml | 1 - desktop/kde/framework/kcalendarcore/pspec.xml | 1 - desktop/kde/framework/kcmutils/pspec.xml | 1 - desktop/kde/framework/kcodecs/pspec.xml | 1 - desktop/kde/framework/kcolorscheme/pspec.xml | 1 - desktop/kde/framework/kcompletion/pspec.xml | 1 - desktop/kde/framework/kconfig/pspec.xml | 1 - desktop/kde/framework/kconfigwidgets/pspec.xml | 1 - desktop/kde/framework/kcontacts/pspec.xml | 1 - desktop/kde/framework/kcoreaddons/pspec.xml | 1 - desktop/kde/framework/kcrash/pspec.xml | 1 - desktop/kde/framework/kdav/pspec.xml | 1 - desktop/kde/framework/kdbusaddons/pspec.xml | 1 - desktop/kde/framework/kdeclarative/pspec.xml | 1 - desktop/kde/framework/kded/pspec.xml | 1 - desktop/kde/framework/kdesu/pspec.xml | 1 - desktop/kde/framework/kdnssd/pspec.xml | 1 - desktop/kde/framework/kdoctools/pspec.xml | 1 - desktop/kde/framework/kfilemetadata/pspec.xml | 1 - desktop/kde/framework/kglobalaccel/pspec.xml | 1 - desktop/kde/framework/kguiaddons/pspec.xml | 1 - desktop/kde/framework/kholidays/pspec.xml | 1 - desktop/kde/framework/ki18n/pspec.xml | 1 - desktop/kde/framework/kiconthemes/pspec.xml | 1 - desktop/kde/framework/kidletime/pspec.xml | 1 - desktop/kde/framework/kimageformats/pspec.xml | 1 - desktop/kde/framework/kio/pspec.xml | 1 - desktop/kde/framework/kirigami-addons/pspec.xml | 1 - desktop/kde/framework/kirigami/pspec.xml | 1 - desktop/kde/framework/kitemmodels/pspec.xml | 1 - desktop/kde/framework/kitemviews/pspec.xml | 1 - desktop/kde/framework/kjobwidgets/pspec.xml | 1 - desktop/kde/framework/knewstuff/pspec.xml | 1 - desktop/kde/framework/knotifications/pspec.xml | 1 - desktop/kde/framework/knotifyconfig/pspec.xml | 1 - desktop/kde/framework/kpackage/pspec.xml | 1 - desktop/kde/framework/kparts/pspec.xml | 1 - desktop/kde/framework/kpeople/pspec.xml | 1 - desktop/kde/framework/kplotting/pspec.xml | 1 - desktop/kde/framework/kpty/pspec.xml | 1 - desktop/kde/framework/kquickcharts/pspec.xml | 1 - desktop/kde/framework/krunner/pspec.xml | 1 - desktop/kde/framework/kservice/pspec.xml | 1 - desktop/kde/framework/kstatusnotifieritem/pspec.xml | 1 - desktop/kde/framework/ksvg/pspec.xml | 1 - desktop/kde/framework/ksyndication/pspec.xml | 1 - desktop/kde/framework/ktexteditor/pspec.xml | 1 - desktop/kde/framework/ktexttemplate/pspec.xml | 1 - desktop/kde/framework/ktextwidgets/pspec.xml | 1 - desktop/kde/framework/kunitconversion/pspec.xml | 1 - desktop/kde/framework/kuserfeedback/pspec.xml | 1 - desktop/kde/framework/kwallet/pspec.xml | 1 - desktop/kde/framework/kwidgetsaddons/pspec.xml | 1 - desktop/kde/framework/kwindowsystem/pspec.xml | 1 - desktop/kde/framework/kxmlgui/pspec.xml | 1 - desktop/kde/framework/modemmanager-qt/pspec.xml | 1 - desktop/kde/framework/networkmanager-qt/pspec.xml | 1 - desktop/kde/framework/oxygen-icons/pspec.xml | 1 - desktop/kde/framework/plasma-wayland-protocols/pspec.xml | 1 - desktop/kde/framework/prison/pspec.xml | 1 - desktop/kde/framework/purpose/pspec.xml | 1 - desktop/kde/framework/qqc2-desktop-style/pspec.xml | 1 - desktop/kde/framework/solid/pspec.xml | 1 - desktop/kde/framework/sonnet/pspec.xml | 1 - desktop/kde/framework/syntax-highlighting/pspec.xml | 1 - desktop/kde/framework/threadweaver/pspec.xml | 1 - desktop/kde/plasma/bluedevil/pspec.xml | 1 - desktop/kde/plasma/breeze-grub/pspec.xml | 1 - desktop/kde/plasma/breeze-gtk/pspec.xml | 1 - desktop/kde/plasma/breeze-plymouth/pspec.xml | 1 - desktop/kde/plasma/breeze/pspec.xml | 1 - desktop/kde/plasma/discover/pspec.xml | 1 - desktop/kde/plasma/drkonqi/pspec.xml | 1 - desktop/kde/plasma/kactivitymanagerd/pspec.xml | 1 - desktop/kde/plasma/kde-cli-tools/pspec.xml | 1 - desktop/kde/plasma/kde-gtk-config/pspec.xml | 1 - desktop/kde/plasma/kdecorations/pspec.xml | 1 - desktop/kde/plasma/kdeplasma-addons/pspec.xml | 1 - desktop/kde/plasma/kgamma/pspec.xml | 1 - desktop/kde/plasma/kglobalacceld/pspec.xml | 1 - desktop/kde/plasma/kinfocenter/pspec.xml | 1 - desktop/kde/plasma/kmenuedit/pspec.xml | 1 - desktop/kde/plasma/kpipewire/pspec.xml | 1 - desktop/kde/plasma/kscreen/pspec.xml | 1 - desktop/kde/plasma/kscreenlocker/pspec.xml | 1 - desktop/kde/plasma/ksshaskpass/pspec.xml | 1 - desktop/kde/plasma/ksystemstats/pspec.xml | 1 - desktop/kde/plasma/kwallet-pam/pspec.xml | 1 - desktop/kde/plasma/kwayland-integration/pspec.xml | 1 - desktop/kde/plasma/kwayland/pspec.xml | 1 - desktop/kde/plasma/kwin/pspec.xml | 1 - desktop/kde/plasma/kwrited/pspec.xml | 1 - desktop/kde/plasma/layer-shell-qt/pspec.xml | 1 - desktop/kde/plasma/libkscreen/pspec.xml | 1 - desktop/kde/plasma/libksysguard/pspec.xml | 1 - desktop/kde/plasma/libplasma/pspec.xml | 1 - desktop/kde/plasma/milou/pspec.xml | 1 - desktop/kde/plasma/oxygen-sounds/pspec.xml | 1 - desktop/kde/plasma/oxygen/pspec.xml | 1 - desktop/kde/plasma/plasma-activities-stats/pspec.xml | 1 - desktop/kde/plasma/plasma-activities/pspec.xml | 1 - desktop/kde/plasma/plasma-browser-integration/pspec.xml | 1 - desktop/kde/plasma/plasma-desktop/pspec.xml | 1 - desktop/kde/plasma/plasma-firewall/pspec.xml | 1 - desktop/kde/plasma/plasma-integration/pspec.xml | 1 - desktop/kde/plasma/plasma-nm/pspec.xml | 1 - desktop/kde/plasma/plasma-pa/pspec.xml | 1 - desktop/kde/plasma/plasma-sdk/pspec.xml | 1 - desktop/kde/plasma/plasma-systemmonitor/pspec.xml | 1 - desktop/kde/plasma/plasma-vault/pspec.xml | 1 - desktop/kde/plasma/plasma-welcome/pspec.xml | 1 - desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml | 1 - desktop/kde/plasma/plasma-workspace/pspec.xml | 1 - desktop/kde/plasma/plasma5-support/pspec.xml | 1 - desktop/kde/plasma/plymouth-kcm/pspec.xml | 1 - desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml | 1 - desktop/kde/plasma/powerdevil/pspec.xml | 1 - desktop/kde/plasma/print-manager/pspec.xml | 1 - desktop/kde/plasma/qqc2-breeze-style/pspec.xml | 1 - desktop/kde/plasma/sddm-kcm/pspec.xml | 1 - desktop/kde/plasma/system-settings/pspec.xml | 1 - desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml | 1 - desktop/kde5/framework/attica5/pspec.xml | 1 - desktop/kde5/framework/baloo5/pspec.xml | 1 - desktop/kde5/framework/bluez-qt5/pspec.xml | 1 - desktop/kde5/framework/breeze-icons5/pspec.xml | 1 - desktop/kde5/framework/frameworkintegration5/pspec.xml | 1 - desktop/kde5/framework/kactivities-stats5/pspec.xml | 1 - desktop/kde5/framework/kactivities5/pspec.xml | 1 - desktop/kde5/framework/kapidox5/pspec.xml | 1 - desktop/kde5/framework/karchive5/pspec.xml | 1 - desktop/kde5/framework/kauth5/pspec.xml | 1 - desktop/kde5/framework/kbookmarks5/pspec.xml | 1 - desktop/kde5/framework/kcalendarcore5/pspec.xml | 1 - desktop/kde5/framework/kcmutils5/pspec.xml | 1 - desktop/kde5/framework/kcodecs5/pspec.xml | 1 - desktop/kde5/framework/kcompletion5/pspec.xml | 1 - desktop/kde5/framework/kconfig5/pspec.xml | 1 - desktop/kde5/framework/kconfigwidgets5/pspec.xml | 1 - desktop/kde5/framework/kcontacts5/pspec.xml | 1 - desktop/kde5/framework/kcoreaddons5/pspec.xml | 1 - desktop/kde5/framework/kcrash5/pspec.xml | 1 - desktop/kde5/framework/kdav5/pspec.xml | 1 - desktop/kde5/framework/kdbusaddons5/pspec.xml | 1 - desktop/kde5/framework/kdeclarative5/pspec.xml | 1 - desktop/kde5/framework/kded5/pspec.xml | 1 - desktop/kde5/framework/kdelibs4-support5/pspec.xml | 1 - desktop/kde5/framework/kdesignerplugin5/pspec.xml | 1 - desktop/kde5/framework/kdesu5/pspec.xml | 1 - desktop/kde5/framework/kdewebkit5/pspec.xml | 1 - desktop/kde5/framework/kdnssd5/pspec.xml | 1 - desktop/kde5/framework/kdoctools5/pspec.xml | 1 - desktop/kde5/framework/kemoticons5/pspec.xml | 1 - desktop/kde5/framework/kfilemetadata5/pspec.xml | 1 - desktop/kde5/framework/kglobalaccel5/pspec.xml | 1 - desktop/kde5/framework/kguiaddons5/pspec.xml | 1 - desktop/kde5/framework/kholidays5/pspec.xml | 1 - desktop/kde5/framework/khtml5/pspec.xml | 1 - desktop/kde5/framework/ki18n5/pspec.xml | 1 - desktop/kde5/framework/kiconthemes5/pspec.xml | 1 - desktop/kde5/framework/kidletime5/pspec.xml | 1 - desktop/kde5/framework/kimageformats5/pspec.xml | 1 - desktop/kde5/framework/kinit5/pspec.xml | 1 - desktop/kde5/framework/kio5/pspec.xml | 1 - desktop/kde5/framework/kirigami5/pspec.xml | 1 - desktop/kde5/framework/kitemmodels5/pspec.xml | 1 - desktop/kde5/framework/kitemviews5/pspec.xml | 1 - desktop/kde5/framework/kjobwidgets5/pspec.xml | 1 - desktop/kde5/framework/kjs5/pspec.xml | 1 - desktop/kde5/framework/kjsembed5/pspec.xml | 1 - desktop/kde5/framework/kmediaplayer5/pspec.xml | 1 - desktop/kde5/framework/knewstuff5/pspec.xml | 1 - desktop/kde5/framework/knotifications5/pspec.xml | 1 - desktop/kde5/framework/knotifyconfig5/pspec.xml | 1 - desktop/kde5/framework/kpackage5/pspec.xml | 1 - desktop/kde5/framework/kparts5/pspec.xml | 1 - desktop/kde5/framework/kpeople5/pspec.xml | 1 - desktop/kde5/framework/kplotting5/pspec.xml | 1 - desktop/kde5/framework/kpty5/pspec.xml | 1 - desktop/kde5/framework/kquickcharts5/pspec.xml | 1 - desktop/kde5/framework/kross5/pspec.xml | 1 - desktop/kde5/framework/krunner5/pspec.xml | 1 - desktop/kde5/framework/kservice5/pspec.xml | 1 - desktop/kde5/framework/ksyndication5/pspec.xml | 1 - desktop/kde5/framework/ktexteditor5/pspec.xml | 1 - desktop/kde5/framework/ktextwidgets5/pspec.xml | 1 - desktop/kde5/framework/kunitconversion5/pspec.xml | 1 - desktop/kde5/framework/kuserfeedback5/pspec.xml | 1 - desktop/kde5/framework/kwallet5/pspec.xml | 1 - desktop/kde5/framework/kwayland5/pspec.xml | 1 - desktop/kde5/framework/kwidgetsaddons5/pspec.xml | 1 - desktop/kde5/framework/kwindowsystem5/pspec.xml | 1 - desktop/kde5/framework/kxmlgui5/pspec.xml | 1 - desktop/kde5/framework/kxmlrpcclient5/pspec.xml | 1 - desktop/kde5/framework/modemmanager-qt5/pspec.xml | 1 - desktop/kde5/framework/networkmanager-qt5/pspec.xml | 1 - desktop/kde5/framework/oxygen-icons5/pspec.xml | 1 - desktop/kde5/framework/plasma-framework5/pspec.xml | 1 - desktop/kde5/framework/prison5/pspec.xml | 1 - desktop/kde5/framework/purpose5/pspec.xml | 1 - desktop/kde5/framework/qqc2-desktop-style5/pspec.xml | 1 - desktop/kde5/framework/solid5/pspec.xml | 1 - desktop/kde5/framework/sonnet5/pspec.xml | 1 - desktop/kde5/framework/syntax-highlighting5/pspec.xml | 1 - desktop/kde5/framework/threadweaver5/pspec.xml | 1 - 387 files changed, 387 deletions(-) diff --git a/desktop/kde/applications/akonadi-calendar-tools/pspec.xml b/desktop/kde/applications/akonadi-calendar-tools/pspec.xml index 75f24a6d03..e7579b1ed6 100755 --- a/desktop/kde/applications/akonadi-calendar-tools/pspec.xml +++ b/desktop/kde/applications/akonadi-calendar-tools/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi-calendar/pspec.xml b/desktop/kde/applications/akonadi-calendar/pspec.xml index 94c93b49f6..94b3a42844 100755 --- a/desktop/kde/applications/akonadi-calendar/pspec.xml +++ b/desktop/kde/applications/akonadi-calendar/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi-contacts/pspec.xml b/desktop/kde/applications/akonadi-contacts/pspec.xml index fd330a9a83..c90a16816b 100755 --- a/desktop/kde/applications/akonadi-contacts/pspec.xml +++ b/desktop/kde/applications/akonadi-contacts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi-import-wizard/pspec.xml b/desktop/kde/applications/akonadi-import-wizard/pspec.xml index b37323e975..cf13992639 100755 --- a/desktop/kde/applications/akonadi-import-wizard/pspec.xml +++ b/desktop/kde/applications/akonadi-import-wizard/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi-mime/pspec.xml b/desktop/kde/applications/akonadi-mime/pspec.xml index 43a0d9adb7..de7ebb8e05 100755 --- a/desktop/kde/applications/akonadi-mime/pspec.xml +++ b/desktop/kde/applications/akonadi-mime/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi-search/pspec.xml b/desktop/kde/applications/akonadi-search/pspec.xml index 586930a14f..085fc42b40 100755 --- a/desktop/kde/applications/akonadi-search/pspec.xml +++ b/desktop/kde/applications/akonadi-search/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadi/pspec.xml b/desktop/kde/applications/akonadi/pspec.xml index 4e2820ce32..e2a1963a5b 100755 --- a/desktop/kde/applications/akonadi/pspec.xml +++ b/desktop/kde/applications/akonadi/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/akonadiconsole/pspec.xml b/desktop/kde/applications/akonadiconsole/pspec.xml index f602491e7a..5ecc61e3e5 100755 --- a/desktop/kde/applications/akonadiconsole/pspec.xml +++ b/desktop/kde/applications/akonadiconsole/pspec.xml @@ -1,4 +1,3 @@ - akonadiconsole diff --git a/desktop/kde/applications/akregator/pspec.xml b/desktop/kde/applications/akregator/pspec.xml index fef79e3a07..76f4df9a9d 100755 --- a/desktop/kde/applications/akregator/pspec.xml +++ b/desktop/kde/applications/akregator/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/analitza/pspec.xml b/desktop/kde/applications/analitza/pspec.xml index da22c30707..75cb34f280 100755 --- a/desktop/kde/applications/analitza/pspec.xml +++ b/desktop/kde/applications/analitza/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ark/pspec.xml b/desktop/kde/applications/ark/pspec.xml index 5d6aafd193..dc00b6890e 100755 --- a/desktop/kde/applications/ark/pspec.xml +++ b/desktop/kde/applications/ark/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/artikulate/pspec.xml b/desktop/kde/applications/artikulate/pspec.xml index 518a87f04e..aa55bd8b30 100755 --- a/desktop/kde/applications/artikulate/pspec.xml +++ b/desktop/kde/applications/artikulate/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/audiocd-kio/pspec.xml b/desktop/kde/applications/audiocd-kio/pspec.xml index 13bfc65c1e..5f0a7fc5e1 100755 --- a/desktop/kde/applications/audiocd-kio/pspec.xml +++ b/desktop/kde/applications/audiocd-kio/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/baloo-widgets/pspec.xml b/desktop/kde/applications/baloo-widgets/pspec.xml index 2cbd524771..dda652c497 100755 --- a/desktop/kde/applications/baloo-widgets/pspec.xml +++ b/desktop/kde/applications/baloo-widgets/pspec.xml @@ -1,4 +1,3 @@ - baloo-widgets diff --git a/desktop/kde/applications/blinken/pspec.xml b/desktop/kde/applications/blinken/pspec.xml index 0d48eca061..5d03163d74 100755 --- a/desktop/kde/applications/blinken/pspec.xml +++ b/desktop/kde/applications/blinken/pspec.xml @@ -1,4 +1,3 @@ - blinken diff --git a/desktop/kde/applications/bomber/pspec.xml b/desktop/kde/applications/bomber/pspec.xml index c1f68fc311..cad1e1cc54 100755 --- a/desktop/kde/applications/bomber/pspec.xml +++ b/desktop/kde/applications/bomber/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/bovo/pspec.xml b/desktop/kde/applications/bovo/pspec.xml index 02d05f7c39..51c1c9cf31 100755 --- a/desktop/kde/applications/bovo/pspec.xml +++ b/desktop/kde/applications/bovo/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/calendarsupport/pspec.xml b/desktop/kde/applications/calendarsupport/pspec.xml index c74795cb3d..0add2eb260 100755 --- a/desktop/kde/applications/calendarsupport/pspec.xml +++ b/desktop/kde/applications/calendarsupport/pspec.xml @@ -1,4 +1,3 @@ - calendarsupport diff --git a/desktop/kde/applications/cantor/pspec.xml b/desktop/kde/applications/cantor/pspec.xml index 4c524933be..3e7b9846b3 100755 --- a/desktop/kde/applications/cantor/pspec.xml +++ b/desktop/kde/applications/cantor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/dolphin-plugins/pspec.xml b/desktop/kde/applications/dolphin-plugins/pspec.xml index 3bb5c819cc..890e12e100 100755 --- a/desktop/kde/applications/dolphin-plugins/pspec.xml +++ b/desktop/kde/applications/dolphin-plugins/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/dolphin/pspec.xml b/desktop/kde/applications/dolphin/pspec.xml index ff61808102..2934bb6473 100755 --- a/desktop/kde/applications/dolphin/pspec.xml +++ b/desktop/kde/applications/dolphin/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/dragonplayer/pspec.xml b/desktop/kde/applications/dragonplayer/pspec.xml index bfc011ea08..f28bd9cc19 100755 --- a/desktop/kde/applications/dragonplayer/pspec.xml +++ b/desktop/kde/applications/dragonplayer/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/eventviews/pspec.xml b/desktop/kde/applications/eventviews/pspec.xml index f21e5c99b5..3210ac0b79 100755 --- a/desktop/kde/applications/eventviews/pspec.xml +++ b/desktop/kde/applications/eventviews/pspec.xml @@ -1,4 +1,3 @@ - eventviews diff --git a/desktop/kde/applications/falkon/pspec.xml b/desktop/kde/applications/falkon/pspec.xml index 8e63e86472..bd48bc932b 100644 --- a/desktop/kde/applications/falkon/pspec.xml +++ b/desktop/kde/applications/falkon/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ffmpegthumbs/pspec.xml b/desktop/kde/applications/ffmpegthumbs/pspec.xml index 4f46aa9d34..f69bfbe669 100755 --- a/desktop/kde/applications/ffmpegthumbs/pspec.xml +++ b/desktop/kde/applications/ffmpegthumbs/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/filelight/pspec.xml b/desktop/kde/applications/filelight/pspec.xml index f8c904dc86..2430c4f962 100755 --- a/desktop/kde/applications/filelight/pspec.xml +++ b/desktop/kde/applications/filelight/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/granatier/pspec.xml b/desktop/kde/applications/granatier/pspec.xml index 02a8972d8c..51b20996b5 100755 --- a/desktop/kde/applications/granatier/pspec.xml +++ b/desktop/kde/applications/granatier/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/grantlee-editor/pspec.xml b/desktop/kde/applications/grantlee-editor/pspec.xml index 774e99a65f..5e488343aa 100755 --- a/desktop/kde/applications/grantlee-editor/pspec.xml +++ b/desktop/kde/applications/grantlee-editor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/grantleetheme/pspec.xml b/desktop/kde/applications/grantleetheme/pspec.xml index 977abf2549..7c0ef61797 100755 --- a/desktop/kde/applications/grantleetheme/pspec.xml +++ b/desktop/kde/applications/grantleetheme/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/gwenview/pspec.xml b/desktop/kde/applications/gwenview/pspec.xml index 793718e4b6..6ba9c78f43 100755 --- a/desktop/kde/applications/gwenview/pspec.xml +++ b/desktop/kde/applications/gwenview/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/incidenceeditor/pspec.xml b/desktop/kde/applications/incidenceeditor/pspec.xml index 9367de9b91..393771ccff 100755 --- a/desktop/kde/applications/incidenceeditor/pspec.xml +++ b/desktop/kde/applications/incidenceeditor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kaccounts-integration/pspec.xml b/desktop/kde/applications/kaccounts-integration/pspec.xml index d7beb96f42..df12b0bdab 100755 --- a/desktop/kde/applications/kaccounts-integration/pspec.xml +++ b/desktop/kde/applications/kaccounts-integration/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kaccounts-providers/pspec.xml b/desktop/kde/applications/kaccounts-providers/pspec.xml index 8357fbf38d..1ed6593214 100755 --- a/desktop/kde/applications/kaccounts-providers/pspec.xml +++ b/desktop/kde/applications/kaccounts-providers/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kaddressbook/pspec.xml b/desktop/kde/applications/kaddressbook/pspec.xml index 3a29608029..26623429dd 100755 --- a/desktop/kde/applications/kaddressbook/pspec.xml +++ b/desktop/kde/applications/kaddressbook/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kalarm/pspec.xml b/desktop/kde/applications/kalarm/pspec.xml index 885296bc41..76894b1e49 100755 --- a/desktop/kde/applications/kalarm/pspec.xml +++ b/desktop/kde/applications/kalarm/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kalgebra/pspec.xml b/desktop/kde/applications/kalgebra/pspec.xml index 9ee898d94f..865b65c6e5 100755 --- a/desktop/kde/applications/kalgebra/pspec.xml +++ b/desktop/kde/applications/kalgebra/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kalzium/pspec.xml b/desktop/kde/applications/kalzium/pspec.xml index 58fc79fe5e..a20ba2d939 100644 --- a/desktop/kde/applications/kalzium/pspec.xml +++ b/desktop/kde/applications/kalzium/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kamera/pspec.xml b/desktop/kde/applications/kamera/pspec.xml index 7bf7e504e9..b73c97c1c7 100755 --- a/desktop/kde/applications/kamera/pspec.xml +++ b/desktop/kde/applications/kamera/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kanagram/pspec.xml b/desktop/kde/applications/kanagram/pspec.xml index 02def9a8df..06e389f9cd 100755 --- a/desktop/kde/applications/kanagram/pspec.xml +++ b/desktop/kde/applications/kanagram/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kapman/pspec.xml b/desktop/kde/applications/kapman/pspec.xml index 77634802eb..8c201f3377 100755 --- a/desktop/kde/applications/kapman/pspec.xml +++ b/desktop/kde/applications/kapman/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kapptemplate/pspec.xml b/desktop/kde/applications/kapptemplate/pspec.xml index 047f87dc3d..7e0fe06e2f 100755 --- a/desktop/kde/applications/kapptemplate/pspec.xml +++ b/desktop/kde/applications/kapptemplate/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kate/pspec.xml b/desktop/kde/applications/kate/pspec.xml index c5789faac0..533d9137f9 100755 --- a/desktop/kde/applications/kate/pspec.xml +++ b/desktop/kde/applications/kate/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/katomic/pspec.xml b/desktop/kde/applications/katomic/pspec.xml index 5542abe8d3..df55da5458 100755 --- a/desktop/kde/applications/katomic/pspec.xml +++ b/desktop/kde/applications/katomic/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kblackbox/pspec.xml b/desktop/kde/applications/kblackbox/pspec.xml index 70aeccc761..a213355fbd 100755 --- a/desktop/kde/applications/kblackbox/pspec.xml +++ b/desktop/kde/applications/kblackbox/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kblocks/pspec.xml b/desktop/kde/applications/kblocks/pspec.xml index 71f9a989da..c29d6228cb 100755 --- a/desktop/kde/applications/kblocks/pspec.xml +++ b/desktop/kde/applications/kblocks/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kbounce/pspec.xml b/desktop/kde/applications/kbounce/pspec.xml index a8b1326a9f..b2f5d755fc 100755 --- a/desktop/kde/applications/kbounce/pspec.xml +++ b/desktop/kde/applications/kbounce/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kbreakout/pspec.xml b/desktop/kde/applications/kbreakout/pspec.xml index d5fbf26dcd..5d4cbd65c6 100755 --- a/desktop/kde/applications/kbreakout/pspec.xml +++ b/desktop/kde/applications/kbreakout/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kbruch/pspec.xml b/desktop/kde/applications/kbruch/pspec.xml index ff9f8a5508..97a8cf4535 100755 --- a/desktop/kde/applications/kbruch/pspec.xml +++ b/desktop/kde/applications/kbruch/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kcalc/pspec.xml b/desktop/kde/applications/kcalc/pspec.xml index eac99c823a..1a20f04572 100755 --- a/desktop/kde/applications/kcalc/pspec.xml +++ b/desktop/kde/applications/kcalc/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kcalutils/pspec.xml b/desktop/kde/applications/kcalutils/pspec.xml index ffb6c0a8ba..85e5edf70c 100755 --- a/desktop/kde/applications/kcalutils/pspec.xml +++ b/desktop/kde/applications/kcalutils/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kcharselect/pspec.xml b/desktop/kde/applications/kcharselect/pspec.xml index 495f7421d9..8fb8f21e5d 100755 --- a/desktop/kde/applications/kcharselect/pspec.xml +++ b/desktop/kde/applications/kcharselect/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kcolorchooser/pspec.xml b/desktop/kde/applications/kcolorchooser/pspec.xml index f59c0a772a..52a85b7d83 100755 --- a/desktop/kde/applications/kcolorchooser/pspec.xml +++ b/desktop/kde/applications/kcolorchooser/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kcron/pspec.xml b/desktop/kde/applications/kcron/pspec.xml index e39faed729..a2dbb921f9 100755 --- a/desktop/kde/applications/kcron/pspec.xml +++ b/desktop/kde/applications/kcron/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kde-dev-scripts/pspec.xml b/desktop/kde/applications/kde-dev-scripts/pspec.xml index 9c862746c2..d879e7a11b 100755 --- a/desktop/kde/applications/kde-dev-scripts/pspec.xml +++ b/desktop/kde/applications/kde-dev-scripts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdebugsettings/pspec.xml b/desktop/kde/applications/kdebugsettings/pspec.xml index e2d4feebf5..9d3b25312d 100755 --- a/desktop/kde/applications/kdebugsettings/pspec.xml +++ b/desktop/kde/applications/kdebugsettings/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdeconnect/pspec.xml b/desktop/kde/applications/kdeconnect/pspec.xml index 219a4e8c3d..f810398b0c 100644 --- a/desktop/kde/applications/kdeconnect/pspec.xml +++ b/desktop/kde/applications/kdeconnect/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdeedu-data/pspec.xml b/desktop/kde/applications/kdeedu-data/pspec.xml index e1568b8b01..dfa629e1b3 100755 --- a/desktop/kde/applications/kdeedu-data/pspec.xml +++ b/desktop/kde/applications/kdeedu-data/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdegraphics-mobipocket/pspec.xml b/desktop/kde/applications/kdegraphics-mobipocket/pspec.xml index a7537c7a53..3728ba9472 100644 --- a/desktop/kde/applications/kdegraphics-mobipocket/pspec.xml +++ b/desktop/kde/applications/kdegraphics-mobipocket/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdegraphics-svgpart/pspec.xml b/desktop/kde/applications/kdegraphics-svgpart/pspec.xml index a1c0a3c909..4fdff84f15 100755 --- a/desktop/kde/applications/kdegraphics-svgpart/pspec.xml +++ b/desktop/kde/applications/kdegraphics-svgpart/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml b/desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml index 753e88c599..ead684c44c 100755 --- a/desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml +++ b/desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdenetwork-filesharing/pspec.xml b/desktop/kde/applications/kdenetwork-filesharing/pspec.xml index 466fda08ca..a84a952c06 100755 --- a/desktop/kde/applications/kdenetwork-filesharing/pspec.xml +++ b/desktop/kde/applications/kdenetwork-filesharing/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdenlive/pspec.xml b/desktop/kde/applications/kdenlive/pspec.xml index bb550a3f3e..b92902d517 100755 --- a/desktop/kde/applications/kdenlive/pspec.xml +++ b/desktop/kde/applications/kdenlive/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdepim-addons/pspec.xml b/desktop/kde/applications/kdepim-addons/pspec.xml index 815d31e04c..2209148c62 100755 --- a/desktop/kde/applications/kdepim-addons/pspec.xml +++ b/desktop/kde/applications/kdepim-addons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdepim-runtime/pspec.xml b/desktop/kde/applications/kdepim-runtime/pspec.xml index a8450c054d..266d0bde6f 100755 --- a/desktop/kde/applications/kdepim-runtime/pspec.xml +++ b/desktop/kde/applications/kdepim-runtime/pspec.xml @@ -1,4 +1,3 @@ -  diff --git a/desktop/kde/applications/kdesdk-thumbnailers/pspec.xml b/desktop/kde/applications/kdesdk-thumbnailers/pspec.xml index e1b411f82e..77554a5a1f 100755 --- a/desktop/kde/applications/kdesdk-thumbnailers/pspec.xml +++ b/desktop/kde/applications/kdesdk-thumbnailers/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdf/pspec.xml b/desktop/kde/applications/kdf/pspec.xml index 96e77c2b98..fd63665b68 100755 --- a/desktop/kde/applications/kdf/pspec.xml +++ b/desktop/kde/applications/kdf/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdiagram/pspec.xml b/desktop/kde/applications/kdiagram/pspec.xml index dd10fa2393..f741ee97ed 100755 --- a/desktop/kde/applications/kdiagram/pspec.xml +++ b/desktop/kde/applications/kdiagram/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdialog/pspec.xml b/desktop/kde/applications/kdialog/pspec.xml index 1cf90453c8..07c3a075a8 100755 --- a/desktop/kde/applications/kdialog/pspec.xml +++ b/desktop/kde/applications/kdialog/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kdiamond/pspec.xml b/desktop/kde/applications/kdiamond/pspec.xml index f6c9a4a0b8..522a53d5fd 100755 --- a/desktop/kde/applications/kdiamond/pspec.xml +++ b/desktop/kde/applications/kdiamond/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/keditbookmarks/pspec.xml b/desktop/kde/applications/keditbookmarks/pspec.xml index 78c94d7b6c..a1134b63df 100755 --- a/desktop/kde/applications/keditbookmarks/pspec.xml +++ b/desktop/kde/applications/keditbookmarks/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kfind/pspec.xml b/desktop/kde/applications/kfind/pspec.xml index c30165fdc7..e197fe526f 100755 --- a/desktop/kde/applications/kfind/pspec.xml +++ b/desktop/kde/applications/kfind/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kfourinline/pspec.xml b/desktop/kde/applications/kfourinline/pspec.xml index dd3c155ffe..2af7cf0208 100755 --- a/desktop/kde/applications/kfourinline/pspec.xml +++ b/desktop/kde/applications/kfourinline/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kgeography/pspec.xml b/desktop/kde/applications/kgeography/pspec.xml index 38e688d609..20401c93b3 100755 --- a/desktop/kde/applications/kgeography/pspec.xml +++ b/desktop/kde/applications/kgeography/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kget/pspec.xml b/desktop/kde/applications/kget/pspec.xml index 1d1484d00d..9bfbf23fc0 100644 --- a/desktop/kde/applications/kget/pspec.xml +++ b/desktop/kde/applications/kget/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kgpg/pspec.xml b/desktop/kde/applications/kgpg/pspec.xml index 6f3aeaad7b..ed8cd0ae00 100755 --- a/desktop/kde/applications/kgpg/pspec.xml +++ b/desktop/kde/applications/kgpg/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/khangman/pspec.xml b/desktop/kde/applications/khangman/pspec.xml index 6b5c336cad..14acbad6f0 100755 --- a/desktop/kde/applications/khangman/pspec.xml +++ b/desktop/kde/applications/khangman/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/khelpcenter/pspec.xml b/desktop/kde/applications/khelpcenter/pspec.xml index b9355aafa7..907d094f13 100755 --- a/desktop/kde/applications/khelpcenter/pspec.xml +++ b/desktop/kde/applications/khelpcenter/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kidentitymanagement/pspec.xml b/desktop/kde/applications/kidentitymanagement/pspec.xml index 753011db4c..7cabacc0c2 100755 --- a/desktop/kde/applications/kidentitymanagement/pspec.xml +++ b/desktop/kde/applications/kidentitymanagement/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kig/pspec.xml b/desktop/kde/applications/kig/pspec.xml index 0690a8dad7..685f1ab04e 100755 --- a/desktop/kde/applications/kig/pspec.xml +++ b/desktop/kde/applications/kig/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/killbots/pspec.xml b/desktop/kde/applications/killbots/pspec.xml index 444bbadf2e..cb46873eb4 100755 --- a/desktop/kde/applications/killbots/pspec.xml +++ b/desktop/kde/applications/killbots/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kimap/pspec.xml b/desktop/kde/applications/kimap/pspec.xml index cc2f175824..0eeb168255 100755 --- a/desktop/kde/applications/kimap/pspec.xml +++ b/desktop/kde/applications/kimap/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kio-admin/pspec.xml b/desktop/kde/applications/kio-admin/pspec.xml index 5fcde938b0..4b16c1f889 100644 --- a/desktop/kde/applications/kio-admin/pspec.xml +++ b/desktop/kde/applications/kio-admin/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kio-extras/pspec.xml b/desktop/kde/applications/kio-extras/pspec.xml index cafadbd459..7d9c61ef48 100755 --- a/desktop/kde/applications/kio-extras/pspec.xml +++ b/desktop/kde/applications/kio-extras/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kio-gdrive/pspec.xml b/desktop/kde/applications/kio-gdrive/pspec.xml index defe2c2e3d..0d1425085e 100644 --- a/desktop/kde/applications/kio-gdrive/pspec.xml +++ b/desktop/kde/applications/kio-gdrive/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kio-zeroconf/pspec.xml b/desktop/kde/applications/kio-zeroconf/pspec.xml index d3e305d603..7341e81032 100644 --- a/desktop/kde/applications/kio-zeroconf/pspec.xml +++ b/desktop/kde/applications/kio-zeroconf/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kiriki/pspec.xml b/desktop/kde/applications/kiriki/pspec.xml index ea95544262..c184d77ff9 100755 --- a/desktop/kde/applications/kiriki/pspec.xml +++ b/desktop/kde/applications/kiriki/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kiten/pspec.xml b/desktop/kde/applications/kiten/pspec.xml index d833ace95f..0bf45c218e 100755 --- a/desktop/kde/applications/kiten/pspec.xml +++ b/desktop/kde/applications/kiten/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kitinerary/pspec.xml b/desktop/kde/applications/kitinerary/pspec.xml index 306fd397c1..cc5105bc5d 100755 --- a/desktop/kde/applications/kitinerary/pspec.xml +++ b/desktop/kde/applications/kitinerary/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kjumpingcube/pspec.xml b/desktop/kde/applications/kjumpingcube/pspec.xml index 023a96faae..11ebd45da3 100755 --- a/desktop/kde/applications/kjumpingcube/pspec.xml +++ b/desktop/kde/applications/kjumpingcube/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kldap/pspec.xml b/desktop/kde/applications/kldap/pspec.xml index 5bf36bb7bd..0cfe775f88 100755 --- a/desktop/kde/applications/kldap/pspec.xml +++ b/desktop/kde/applications/kldap/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kleopatra/pspec.xml b/desktop/kde/applications/kleopatra/pspec.xml index 41cf787359..7c5dab7df1 100755 --- a/desktop/kde/applications/kleopatra/pspec.xml +++ b/desktop/kde/applications/kleopatra/pspec.xml @@ -1,4 +1,3 @@ - kleopatra diff --git a/desktop/kde/applications/klettres/pspec.xml b/desktop/kde/applications/klettres/pspec.xml index 3c0e669185..945a8046e0 100755 --- a/desktop/kde/applications/klettres/pspec.xml +++ b/desktop/kde/applications/klettres/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/klickety/pspec.xml b/desktop/kde/applications/klickety/pspec.xml index 92c685ab91..1ca2294777 100755 --- a/desktop/kde/applications/klickety/pspec.xml +++ b/desktop/kde/applications/klickety/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/klines/pspec.xml b/desktop/kde/applications/klines/pspec.xml index ce62191383..fc190efb00 100755 --- a/desktop/kde/applications/klines/pspec.xml +++ b/desktop/kde/applications/klines/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmahjongg/pspec.xml b/desktop/kde/applications/kmahjongg/pspec.xml index f66bb28c75..7e3c3aaeb8 100755 --- a/desktop/kde/applications/kmahjongg/pspec.xml +++ b/desktop/kde/applications/kmahjongg/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmail-account-wizard/pspec.xml b/desktop/kde/applications/kmail-account-wizard/pspec.xml index 331c346aed..8f41f2189f 100755 --- a/desktop/kde/applications/kmail-account-wizard/pspec.xml +++ b/desktop/kde/applications/kmail-account-wizard/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmail/pspec.xml b/desktop/kde/applications/kmail/pspec.xml index ba103b8b1b..fc29771543 100644 --- a/desktop/kde/applications/kmail/pspec.xml +++ b/desktop/kde/applications/kmail/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmailtransport/pspec.xml b/desktop/kde/applications/kmailtransport/pspec.xml index 36dcc64359..07ceab698e 100755 --- a/desktop/kde/applications/kmailtransport/pspec.xml +++ b/desktop/kde/applications/kmailtransport/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmbox/pspec.xml b/desktop/kde/applications/kmbox/pspec.xml index 19953a0f1a..176c0dd898 100755 --- a/desktop/kde/applications/kmbox/pspec.xml +++ b/desktop/kde/applications/kmbox/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmime/pspec.xml b/desktop/kde/applications/kmime/pspec.xml index d0a5972750..02a1794a42 100755 --- a/desktop/kde/applications/kmime/pspec.xml +++ b/desktop/kde/applications/kmime/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmines/pspec.xml b/desktop/kde/applications/kmines/pspec.xml index 1582955d84..cdfaf2dbcd 100755 --- a/desktop/kde/applications/kmines/pspec.xml +++ b/desktop/kde/applications/kmines/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmix/pspec.xml b/desktop/kde/applications/kmix/pspec.xml index 4887af847f..b8dd71c826 100755 --- a/desktop/kde/applications/kmix/pspec.xml +++ b/desktop/kde/applications/kmix/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kmplot/pspec.xml b/desktop/kde/applications/kmplot/pspec.xml index 573f8244ce..3ee435ae94 100755 --- a/desktop/kde/applications/kmplot/pspec.xml +++ b/desktop/kde/applications/kmplot/pspec.xml @@ -1,4 +1,3 @@ - kmplot diff --git a/desktop/kde/applications/knavalbattle/pspec.xml b/desktop/kde/applications/knavalbattle/pspec.xml index afaa1ba0f5..3db0e99d1c 100755 --- a/desktop/kde/applications/knavalbattle/pspec.xml +++ b/desktop/kde/applications/knavalbattle/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/knetwalk/pspec.xml b/desktop/kde/applications/knetwalk/pspec.xml index a683444ab4..a9120354d2 100755 --- a/desktop/kde/applications/knetwalk/pspec.xml +++ b/desktop/kde/applications/knetwalk/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kollision/pspec.xml b/desktop/kde/applications/kollision/pspec.xml index ca701476b0..3d812fe80e 100755 --- a/desktop/kde/applications/kollision/pspec.xml +++ b/desktop/kde/applications/kollision/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kolourpaint/pspec.xml b/desktop/kde/applications/kolourpaint/pspec.xml index ea0061469f..64d9188ec8 100755 --- a/desktop/kde/applications/kolourpaint/pspec.xml +++ b/desktop/kde/applications/kolourpaint/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kompare/pspec.xml b/desktop/kde/applications/kompare/pspec.xml index b2a5741e1b..530a465001 100755 --- a/desktop/kde/applications/kompare/pspec.xml +++ b/desktop/kde/applications/kompare/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/konqueror/pspec.xml b/desktop/kde/applications/konqueror/pspec.xml index 9c7d337caf..6dae1f962d 100755 --- a/desktop/kde/applications/konqueror/pspec.xml +++ b/desktop/kde/applications/konqueror/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/konsole/pspec.xml b/desktop/kde/applications/konsole/pspec.xml index 3aa1ec98c4..9381a47e85 100755 --- a/desktop/kde/applications/konsole/pspec.xml +++ b/desktop/kde/applications/konsole/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kontact/pspec.xml b/desktop/kde/applications/kontact/pspec.xml index 0433b84ef0..19f52ba0b8 100755 --- a/desktop/kde/applications/kontact/pspec.xml +++ b/desktop/kde/applications/kontact/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kontactinterface/pspec.xml b/desktop/kde/applications/kontactinterface/pspec.xml index 7a86645c62..e7951bc423 100755 --- a/desktop/kde/applications/kontactinterface/pspec.xml +++ b/desktop/kde/applications/kontactinterface/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/konversation/pspec.xml b/desktop/kde/applications/konversation/pspec.xml index a8294e15fd..9b7a7d3438 100755 --- a/desktop/kde/applications/konversation/pspec.xml +++ b/desktop/kde/applications/konversation/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/korganizer/pspec.xml b/desktop/kde/applications/korganizer/pspec.xml index ab58e41eb0..0a0692de0a 100755 --- a/desktop/kde/applications/korganizer/pspec.xml +++ b/desktop/kde/applications/korganizer/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kpat/pspec.xml b/desktop/kde/applications/kpat/pspec.xml index 88781d33f6..1e5ab1db7e 100755 --- a/desktop/kde/applications/kpat/pspec.xml +++ b/desktop/kde/applications/kpat/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kpimtextedit/pspec.xml b/desktop/kde/applications/kpimtextedit/pspec.xml index e62f65798d..8df4d96216 100755 --- a/desktop/kde/applications/kpimtextedit/pspec.xml +++ b/desktop/kde/applications/kpimtextedit/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kpkpass/pspec.xml b/desktop/kde/applications/kpkpass/pspec.xml index b157f6df55..76352cdc1c 100755 --- a/desktop/kde/applications/kpkpass/pspec.xml +++ b/desktop/kde/applications/kpkpass/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kpmcore/pspec.xml b/desktop/kde/applications/kpmcore/pspec.xml index 59edbaf24b..1fca7701fd 100755 --- a/desktop/kde/applications/kpmcore/pspec.xml +++ b/desktop/kde/applications/kpmcore/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kqtquickcharts/pspec.xml b/desktop/kde/applications/kqtquickcharts/pspec.xml index 22a7645649..174dd556c0 100755 --- a/desktop/kde/applications/kqtquickcharts/pspec.xml +++ b/desktop/kde/applications/kqtquickcharts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/krdc/pspec.xml b/desktop/kde/applications/krdc/pspec.xml index e44107036e..fbe401d237 100755 --- a/desktop/kde/applications/krdc/pspec.xml +++ b/desktop/kde/applications/krdc/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/krfb/pspec.xml b/desktop/kde/applications/krfb/pspec.xml index 26795ce1cb..f5be7f7381 100755 --- a/desktop/kde/applications/krfb/pspec.xml +++ b/desktop/kde/applications/krfb/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kross-interpreters/pspec.xml b/desktop/kde/applications/kross-interpreters/pspec.xml index 0ed8d29823..ce809d9ce1 100755 --- a/desktop/kde/applications/kross-interpreters/pspec.xml +++ b/desktop/kde/applications/kross-interpreters/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kruler/pspec.xml b/desktop/kde/applications/kruler/pspec.xml index 324c56b358..2de0a51d27 100755 --- a/desktop/kde/applications/kruler/pspec.xml +++ b/desktop/kde/applications/kruler/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ksanecore/pspec.xml b/desktop/kde/applications/ksanecore/pspec.xml index 9607906a06..ea405d7713 100644 --- a/desktop/kde/applications/ksanecore/pspec.xml +++ b/desktop/kde/applications/ksanecore/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kshisen/pspec.xml b/desktop/kde/applications/kshisen/pspec.xml index 8c242e964f..2af2a8edb5 100755 --- a/desktop/kde/applications/kshisen/pspec.xml +++ b/desktop/kde/applications/kshisen/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ksmtp/pspec.xml b/desktop/kde/applications/ksmtp/pspec.xml index 81847638a7..317e45a704 100755 --- a/desktop/kde/applications/ksmtp/pspec.xml +++ b/desktop/kde/applications/ksmtp/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ksquares/pspec.xml b/desktop/kde/applications/ksquares/pspec.xml index d3fe7d4daa..cdb785ffc2 100755 --- a/desktop/kde/applications/ksquares/pspec.xml +++ b/desktop/kde/applications/ksquares/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ksudoku/pspec.xml b/desktop/kde/applications/ksudoku/pspec.xml index 97c193c6c5..ea57c7fa46 100644 --- a/desktop/kde/applications/ksudoku/pspec.xml +++ b/desktop/kde/applications/ksudoku/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ksystemlog/pspec.xml b/desktop/kde/applications/ksystemlog/pspec.xml index e77b769aa7..8c8294684c 100755 --- a/desktop/kde/applications/ksystemlog/pspec.xml +++ b/desktop/kde/applications/ksystemlog/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kteatime/pspec.xml b/desktop/kde/applications/kteatime/pspec.xml index 0491dfaeca..8c0917a8a0 100755 --- a/desktop/kde/applications/kteatime/pspec.xml +++ b/desktop/kde/applications/kteatime/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ktimer/pspec.xml b/desktop/kde/applications/ktimer/pspec.xml index df25fa1203..455c9ed49f 100755 --- a/desktop/kde/applications/ktimer/pspec.xml +++ b/desktop/kde/applications/ktimer/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ktnef/pspec.xml b/desktop/kde/applications/ktnef/pspec.xml index ba0d7a8968..92d0e8d976 100755 --- a/desktop/kde/applications/ktnef/pspec.xml +++ b/desktop/kde/applications/ktnef/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ktorrent/pspec.xml b/desktop/kde/applications/ktorrent/pspec.xml index 6028eb801b..ca1b56005f 100644 --- a/desktop/kde/applications/ktorrent/pspec.xml +++ b/desktop/kde/applications/ktorrent/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/ktuberling/pspec.xml b/desktop/kde/applications/ktuberling/pspec.xml index f409d3e528..4f07bbcf03 100755 --- a/desktop/kde/applications/ktuberling/pspec.xml +++ b/desktop/kde/applications/ktuberling/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kturtle/pspec.xml b/desktop/kde/applications/kturtle/pspec.xml index a772074c48..4e42a368c7 100755 --- a/desktop/kde/applications/kturtle/pspec.xml +++ b/desktop/kde/applications/kturtle/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kwalletmanager/pspec.xml b/desktop/kde/applications/kwalletmanager/pspec.xml index 86621ecdfe..bb5935652a 100755 --- a/desktop/kde/applications/kwalletmanager/pspec.xml +++ b/desktop/kde/applications/kwalletmanager/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kwave/pspec.xml b/desktop/kde/applications/kwave/pspec.xml index 46fa8d8347..2c3c0a8a11 100755 --- a/desktop/kde/applications/kwave/pspec.xml +++ b/desktop/kde/applications/kwave/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/kwordquiz/pspec.xml b/desktop/kde/applications/kwordquiz/pspec.xml index bb21171e0a..743cbdc8f7 100755 --- a/desktop/kde/applications/kwordquiz/pspec.xml +++ b/desktop/kde/applications/kwordquiz/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libgravatar/pspec.xml b/desktop/kde/applications/libgravatar/pspec.xml index 326deeb057..70565454ae 100755 --- a/desktop/kde/applications/libgravatar/pspec.xml +++ b/desktop/kde/applications/libgravatar/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkcddb/pspec.xml b/desktop/kde/applications/libkcddb/pspec.xml index e65969dcc2..49cb838331 100755 --- a/desktop/kde/applications/libkcddb/pspec.xml +++ b/desktop/kde/applications/libkcddb/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkcompactdisc/pspec.xml b/desktop/kde/applications/libkcompactdisc/pspec.xml index 9d8d67af06..5bf96bb0c1 100755 --- a/desktop/kde/applications/libkcompactdisc/pspec.xml +++ b/desktop/kde/applications/libkcompactdisc/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkdcraw/pspec.xml b/desktop/kde/applications/libkdcraw/pspec.xml index ffa85048ff..3f39f7db09 100755 --- a/desktop/kde/applications/libkdcraw/pspec.xml +++ b/desktop/kde/applications/libkdcraw/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkdegames/pspec.xml b/desktop/kde/applications/libkdegames/pspec.xml index 781ebac3b0..1fde17d679 100755 --- a/desktop/kde/applications/libkdegames/pspec.xml +++ b/desktop/kde/applications/libkdegames/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkdepim/pspec.xml b/desktop/kde/applications/libkdepim/pspec.xml index 343efc12ca..4907869335 100755 --- a/desktop/kde/applications/libkdepim/pspec.xml +++ b/desktop/kde/applications/libkdepim/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkeduvocdocument/pspec.xml b/desktop/kde/applications/libkeduvocdocument/pspec.xml index 377c3f866c..e0bfd47729 100755 --- a/desktop/kde/applications/libkeduvocdocument/pspec.xml +++ b/desktop/kde/applications/libkeduvocdocument/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkexiv2/pspec.xml b/desktop/kde/applications/libkexiv2/pspec.xml index 58b4da71a9..6e557f7d8d 100755 --- a/desktop/kde/applications/libkexiv2/pspec.xml +++ b/desktop/kde/applications/libkexiv2/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkgapi/pspec.xml b/desktop/kde/applications/libkgapi/pspec.xml index aa3e98ca91..5e67bece20 100755 --- a/desktop/kde/applications/libkgapi/pspec.xml +++ b/desktop/kde/applications/libkgapi/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkleo/pspec.xml b/desktop/kde/applications/libkleo/pspec.xml index 853b979918..e6e617bc6c 100755 --- a/desktop/kde/applications/libkleo/pspec.xml +++ b/desktop/kde/applications/libkleo/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkmahjongg/pspec.xml b/desktop/kde/applications/libkmahjongg/pspec.xml index efedf47a00..ca071978e3 100755 --- a/desktop/kde/applications/libkmahjongg/pspec.xml +++ b/desktop/kde/applications/libkmahjongg/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libkomparediff2/pspec.xml b/desktop/kde/applications/libkomparediff2/pspec.xml index b809cf21bc..920c2be061 100755 --- a/desktop/kde/applications/libkomparediff2/pspec.xml +++ b/desktop/kde/applications/libkomparediff2/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libksane/pspec.xml b/desktop/kde/applications/libksane/pspec.xml index 1eb65094fc..03c2d6ba77 100755 --- a/desktop/kde/applications/libksane/pspec.xml +++ b/desktop/kde/applications/libksane/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libksieve/pspec.xml b/desktop/kde/applications/libksieve/pspec.xml index 7143f78d71..e5cde91b78 100755 --- a/desktop/kde/applications/libksieve/pspec.xml +++ b/desktop/kde/applications/libksieve/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/libktorrent/pspec.xml b/desktop/kde/applications/libktorrent/pspec.xml index 56d91a4942..ce67d89439 100644 --- a/desktop/kde/applications/libktorrent/pspec.xml +++ b/desktop/kde/applications/libktorrent/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/lokalize/pspec.xml b/desktop/kde/applications/lokalize/pspec.xml index 8313c81727..b65d91f216 100755 --- a/desktop/kde/applications/lokalize/pspec.xml +++ b/desktop/kde/applications/lokalize/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/mailcommon/pspec.xml b/desktop/kde/applications/mailcommon/pspec.xml index 28efb22537..c9ec24a9b2 100755 --- a/desktop/kde/applications/mailcommon/pspec.xml +++ b/desktop/kde/applications/mailcommon/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/mailimporter/pspec.xml b/desktop/kde/applications/mailimporter/pspec.xml index 8acc9d819c..1ffec8d1df 100755 --- a/desktop/kde/applications/mailimporter/pspec.xml +++ b/desktop/kde/applications/mailimporter/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/marble/pspec.xml b/desktop/kde/applications/marble/pspec.xml index 345f110f6c..da1bb6f19d 100755 --- a/desktop/kde/applications/marble/pspec.xml +++ b/desktop/kde/applications/marble/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/messagelib/pspec.xml b/desktop/kde/applications/messagelib/pspec.xml index e06703e7d7..682f2d9b89 100755 --- a/desktop/kde/applications/messagelib/pspec.xml +++ b/desktop/kde/applications/messagelib/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/mimetreeparser/pspec.xml b/desktop/kde/applications/mimetreeparser/pspec.xml index 1626329991..ced3b9816b 100644 --- a/desktop/kde/applications/mimetreeparser/pspec.xml +++ b/desktop/kde/applications/mimetreeparser/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/minuet/pspec.xml b/desktop/kde/applications/minuet/pspec.xml index 77573f3c0c..2b92fa70ed 100755 --- a/desktop/kde/applications/minuet/pspec.xml +++ b/desktop/kde/applications/minuet/pspec.xml @@ -1,4 +1,3 @@ - minuet diff --git a/desktop/kde/applications/okular/pspec.xml b/desktop/kde/applications/okular/pspec.xml index a99c6c6a02..4969b5d81c 100755 --- a/desktop/kde/applications/okular/pspec.xml +++ b/desktop/kde/applications/okular/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/parley/pspec.xml b/desktop/kde/applications/parley/pspec.xml index a39cf412ce..3495a84419 100755 --- a/desktop/kde/applications/parley/pspec.xml +++ b/desktop/kde/applications/parley/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/partitionmanager/pspec.xml b/desktop/kde/applications/partitionmanager/pspec.xml index 07300b3ff6..00940e44cd 100755 --- a/desktop/kde/applications/partitionmanager/pspec.xml +++ b/desktop/kde/applications/partitionmanager/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/picmi/pspec.xml b/desktop/kde/applications/picmi/pspec.xml index 7b5f62ca94..305b8bea50 100755 --- a/desktop/kde/applications/picmi/pspec.xml +++ b/desktop/kde/applications/picmi/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/pim-data-exporter/pspec.xml b/desktop/kde/applications/pim-data-exporter/pspec.xml index f22bdd4f5c..d484286a1a 100755 --- a/desktop/kde/applications/pim-data-exporter/pspec.xml +++ b/desktop/kde/applications/pim-data-exporter/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/pim-sieve-editor/pspec.xml b/desktop/kde/applications/pim-sieve-editor/pspec.xml index 931880d9b9..24a5909c4c 100755 --- a/desktop/kde/applications/pim-sieve-editor/pspec.xml +++ b/desktop/kde/applications/pim-sieve-editor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/pimcommon/pspec.xml b/desktop/kde/applications/pimcommon/pspec.xml index 0f19ab7337..3fe0ff0c58 100755 --- a/desktop/kde/applications/pimcommon/pspec.xml +++ b/desktop/kde/applications/pimcommon/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/poxml/pspec.xml b/desktop/kde/applications/poxml/pspec.xml index a7682c2b3b..f8fd2f3293 100755 --- a/desktop/kde/applications/poxml/pspec.xml +++ b/desktop/kde/applications/poxml/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/rocs/pspec.xml b/desktop/kde/applications/rocs/pspec.xml index 1b69fbb5f2..0dcdba118a 100755 --- a/desktop/kde/applications/rocs/pspec.xml +++ b/desktop/kde/applications/rocs/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/signon-kwallet-extension/pspec.xml b/desktop/kde/applications/signon-kwallet-extension/pspec.xml index 09d9b8d311..cfa81ecc78 100755 --- a/desktop/kde/applications/signon-kwallet-extension/pspec.xml +++ b/desktop/kde/applications/signon-kwallet-extension/pspec.xml @@ -1,4 +1,3 @@ - signon-kwallet-extension diff --git a/desktop/kde/applications/spectacle/pspec.xml b/desktop/kde/applications/spectacle/pspec.xml index e2f91a1cb4..270dfba491 100755 --- a/desktop/kde/applications/spectacle/pspec.xml +++ b/desktop/kde/applications/spectacle/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/step/pspec.xml b/desktop/kde/applications/step/pspec.xml index 029974c076..66dfd35d43 100755 --- a/desktop/kde/applications/step/pspec.xml +++ b/desktop/kde/applications/step/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/applications/umbrello/pspec.xml b/desktop/kde/applications/umbrello/pspec.xml index 91c0f868a4..01b28e14d8 100755 --- a/desktop/kde/applications/umbrello/pspec.xml +++ b/desktop/kde/applications/umbrello/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/attica/pspec.xml b/desktop/kde/framework/attica/pspec.xml index 4a2c1d09ab..2ca65ed316 100755 --- a/desktop/kde/framework/attica/pspec.xml +++ b/desktop/kde/framework/attica/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/baloo/pspec.xml b/desktop/kde/framework/baloo/pspec.xml index 428fead037..911c7950b7 100755 --- a/desktop/kde/framework/baloo/pspec.xml +++ b/desktop/kde/framework/baloo/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/bluez-qt/pspec.xml b/desktop/kde/framework/bluez-qt/pspec.xml index f2f09b4d3f..193ffb234b 100755 --- a/desktop/kde/framework/bluez-qt/pspec.xml +++ b/desktop/kde/framework/bluez-qt/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/breeze-icons/pspec.xml b/desktop/kde/framework/breeze-icons/pspec.xml index 5d27f43b41..aa4988d153 100755 --- a/desktop/kde/framework/breeze-icons/pspec.xml +++ b/desktop/kde/framework/breeze-icons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/extra-cmake-modules/pspec.xml b/desktop/kde/framework/extra-cmake-modules/pspec.xml index 08110ec607..4cacabe6d4 100755 --- a/desktop/kde/framework/extra-cmake-modules/pspec.xml +++ b/desktop/kde/framework/extra-cmake-modules/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/frameworkintegration/pspec.xml b/desktop/kde/framework/frameworkintegration/pspec.xml index 7fa97a25a0..481b8155c4 100755 --- a/desktop/kde/framework/frameworkintegration/pspec.xml +++ b/desktop/kde/framework/frameworkintegration/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kapidox/pspec.xml b/desktop/kde/framework/kapidox/pspec.xml index 753bb98789..fe50b0247a 100755 --- a/desktop/kde/framework/kapidox/pspec.xml +++ b/desktop/kde/framework/kapidox/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/karchive/pspec.xml b/desktop/kde/framework/karchive/pspec.xml index bfe3f15f64..722eae92df 100755 --- a/desktop/kde/framework/karchive/pspec.xml +++ b/desktop/kde/framework/karchive/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kauth/pspec.xml b/desktop/kde/framework/kauth/pspec.xml index b339d83198..2638388ccc 100644 --- a/desktop/kde/framework/kauth/pspec.xml +++ b/desktop/kde/framework/kauth/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kbookmarks/pspec.xml b/desktop/kde/framework/kbookmarks/pspec.xml index 164369551b..cf5b02edd4 100755 --- a/desktop/kde/framework/kbookmarks/pspec.xml +++ b/desktop/kde/framework/kbookmarks/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcalendarcore/pspec.xml b/desktop/kde/framework/kcalendarcore/pspec.xml index c92dee6547..9e1bdb248a 100644 --- a/desktop/kde/framework/kcalendarcore/pspec.xml +++ b/desktop/kde/framework/kcalendarcore/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcmutils/pspec.xml b/desktop/kde/framework/kcmutils/pspec.xml index bf2eb08394..8ed5da3b63 100755 --- a/desktop/kde/framework/kcmutils/pspec.xml +++ b/desktop/kde/framework/kcmutils/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcodecs/pspec.xml b/desktop/kde/framework/kcodecs/pspec.xml index 237504b038..1f18298a1a 100755 --- a/desktop/kde/framework/kcodecs/pspec.xml +++ b/desktop/kde/framework/kcodecs/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcolorscheme/pspec.xml b/desktop/kde/framework/kcolorscheme/pspec.xml index 50495af904..121bf0bec8 100644 --- a/desktop/kde/framework/kcolorscheme/pspec.xml +++ b/desktop/kde/framework/kcolorscheme/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcompletion/pspec.xml b/desktop/kde/framework/kcompletion/pspec.xml index 55e092f41d..e035daccd9 100644 --- a/desktop/kde/framework/kcompletion/pspec.xml +++ b/desktop/kde/framework/kcompletion/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kconfig/pspec.xml b/desktop/kde/framework/kconfig/pspec.xml index debf1a94b0..77978468ca 100755 --- a/desktop/kde/framework/kconfig/pspec.xml +++ b/desktop/kde/framework/kconfig/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kconfigwidgets/pspec.xml b/desktop/kde/framework/kconfigwidgets/pspec.xml index d57f70c767..cb8eace8e3 100755 --- a/desktop/kde/framework/kconfigwidgets/pspec.xml +++ b/desktop/kde/framework/kconfigwidgets/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcontacts/pspec.xml b/desktop/kde/framework/kcontacts/pspec.xml index 330db768ca..b5aeff4f16 100755 --- a/desktop/kde/framework/kcontacts/pspec.xml +++ b/desktop/kde/framework/kcontacts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcoreaddons/pspec.xml b/desktop/kde/framework/kcoreaddons/pspec.xml index 6ba7b9429c..011ab45728 100755 --- a/desktop/kde/framework/kcoreaddons/pspec.xml +++ b/desktop/kde/framework/kcoreaddons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kcrash/pspec.xml b/desktop/kde/framework/kcrash/pspec.xml index 17ea806787..a72a718983 100644 --- a/desktop/kde/framework/kcrash/pspec.xml +++ b/desktop/kde/framework/kcrash/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdav/pspec.xml b/desktop/kde/framework/kdav/pspec.xml index d012dbca44..d5532959cc 100644 --- a/desktop/kde/framework/kdav/pspec.xml +++ b/desktop/kde/framework/kdav/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdbusaddons/pspec.xml b/desktop/kde/framework/kdbusaddons/pspec.xml index e372df321f..6478b31c9e 100755 --- a/desktop/kde/framework/kdbusaddons/pspec.xml +++ b/desktop/kde/framework/kdbusaddons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdeclarative/pspec.xml b/desktop/kde/framework/kdeclarative/pspec.xml index ef81959581..5696d33ffe 100755 --- a/desktop/kde/framework/kdeclarative/pspec.xml +++ b/desktop/kde/framework/kdeclarative/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kded/pspec.xml b/desktop/kde/framework/kded/pspec.xml index 048ca46d32..33ea3bcbc9 100755 --- a/desktop/kde/framework/kded/pspec.xml +++ b/desktop/kde/framework/kded/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdesu/pspec.xml b/desktop/kde/framework/kdesu/pspec.xml index 61b13c54fd..bef7362b81 100755 --- a/desktop/kde/framework/kdesu/pspec.xml +++ b/desktop/kde/framework/kdesu/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdnssd/pspec.xml b/desktop/kde/framework/kdnssd/pspec.xml index 01a3de3a7c..b9239acebc 100755 --- a/desktop/kde/framework/kdnssd/pspec.xml +++ b/desktop/kde/framework/kdnssd/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kdoctools/pspec.xml b/desktop/kde/framework/kdoctools/pspec.xml index 7618722302..32aacde44e 100644 --- a/desktop/kde/framework/kdoctools/pspec.xml +++ b/desktop/kde/framework/kdoctools/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kfilemetadata/pspec.xml b/desktop/kde/framework/kfilemetadata/pspec.xml index f67d39286f..12d91be80a 100644 --- a/desktop/kde/framework/kfilemetadata/pspec.xml +++ b/desktop/kde/framework/kfilemetadata/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kglobalaccel/pspec.xml b/desktop/kde/framework/kglobalaccel/pspec.xml index 5ffa46e68f..83e243097f 100755 --- a/desktop/kde/framework/kglobalaccel/pspec.xml +++ b/desktop/kde/framework/kglobalaccel/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kguiaddons/pspec.xml b/desktop/kde/framework/kguiaddons/pspec.xml index 5531fee99b..1172775830 100755 --- a/desktop/kde/framework/kguiaddons/pspec.xml +++ b/desktop/kde/framework/kguiaddons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kholidays/pspec.xml b/desktop/kde/framework/kholidays/pspec.xml index 40d55494b2..b6fe6f7e4c 100755 --- a/desktop/kde/framework/kholidays/pspec.xml +++ b/desktop/kde/framework/kholidays/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ki18n/pspec.xml b/desktop/kde/framework/ki18n/pspec.xml index 4a464453e2..9f79db27a3 100755 --- a/desktop/kde/framework/ki18n/pspec.xml +++ b/desktop/kde/framework/ki18n/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kiconthemes/pspec.xml b/desktop/kde/framework/kiconthemes/pspec.xml index db37552eb5..55038e9411 100755 --- a/desktop/kde/framework/kiconthemes/pspec.xml +++ b/desktop/kde/framework/kiconthemes/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kidletime/pspec.xml b/desktop/kde/framework/kidletime/pspec.xml index 2841ed08af..90be976216 100755 --- a/desktop/kde/framework/kidletime/pspec.xml +++ b/desktop/kde/framework/kidletime/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kimageformats/pspec.xml b/desktop/kde/framework/kimageformats/pspec.xml index d15adc0cf6..9be2ff0cdb 100644 --- a/desktop/kde/framework/kimageformats/pspec.xml +++ b/desktop/kde/framework/kimageformats/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kio/pspec.xml b/desktop/kde/framework/kio/pspec.xml index 4c9c231df7..c0eb03ab46 100755 --- a/desktop/kde/framework/kio/pspec.xml +++ b/desktop/kde/framework/kio/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kirigami-addons/pspec.xml b/desktop/kde/framework/kirigami-addons/pspec.xml index abe89a201b..5982a980b8 100644 --- a/desktop/kde/framework/kirigami-addons/pspec.xml +++ b/desktop/kde/framework/kirigami-addons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kirigami/pspec.xml b/desktop/kde/framework/kirigami/pspec.xml index c964047908..a74c24ca7f 100755 --- a/desktop/kde/framework/kirigami/pspec.xml +++ b/desktop/kde/framework/kirigami/pspec.xml @@ -1,4 +1,3 @@ - kirigami diff --git a/desktop/kde/framework/kitemmodels/pspec.xml b/desktop/kde/framework/kitemmodels/pspec.xml index f19322dcf1..e77e21cc23 100755 --- a/desktop/kde/framework/kitemmodels/pspec.xml +++ b/desktop/kde/framework/kitemmodels/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kitemviews/pspec.xml b/desktop/kde/framework/kitemviews/pspec.xml index 84b5a6eff8..c1a2ebad9e 100755 --- a/desktop/kde/framework/kitemviews/pspec.xml +++ b/desktop/kde/framework/kitemviews/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kjobwidgets/pspec.xml b/desktop/kde/framework/kjobwidgets/pspec.xml index 1960da594a..d9a1722ffc 100644 --- a/desktop/kde/framework/kjobwidgets/pspec.xml +++ b/desktop/kde/framework/kjobwidgets/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/knewstuff/pspec.xml b/desktop/kde/framework/knewstuff/pspec.xml index eae716932a..bc4ca97cbf 100755 --- a/desktop/kde/framework/knewstuff/pspec.xml +++ b/desktop/kde/framework/knewstuff/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/knotifications/pspec.xml b/desktop/kde/framework/knotifications/pspec.xml index d7fc107aa4..506c044acf 100755 --- a/desktop/kde/framework/knotifications/pspec.xml +++ b/desktop/kde/framework/knotifications/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/knotifyconfig/pspec.xml b/desktop/kde/framework/knotifyconfig/pspec.xml index 62a4ff1b5f..2e7c300047 100755 --- a/desktop/kde/framework/knotifyconfig/pspec.xml +++ b/desktop/kde/framework/knotifyconfig/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kpackage/pspec.xml b/desktop/kde/framework/kpackage/pspec.xml index eea288c531..75e4b58e0e 100755 --- a/desktop/kde/framework/kpackage/pspec.xml +++ b/desktop/kde/framework/kpackage/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kparts/pspec.xml b/desktop/kde/framework/kparts/pspec.xml index 8b86a7af37..0e82f8ed36 100755 --- a/desktop/kde/framework/kparts/pspec.xml +++ b/desktop/kde/framework/kparts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kpeople/pspec.xml b/desktop/kde/framework/kpeople/pspec.xml index 4483f9e2b2..0b966d4271 100755 --- a/desktop/kde/framework/kpeople/pspec.xml +++ b/desktop/kde/framework/kpeople/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kplotting/pspec.xml b/desktop/kde/framework/kplotting/pspec.xml index 2326ca84a3..5ed509a908 100755 --- a/desktop/kde/framework/kplotting/pspec.xml +++ b/desktop/kde/framework/kplotting/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kpty/pspec.xml b/desktop/kde/framework/kpty/pspec.xml index 9545d61b30..e905f20701 100644 --- a/desktop/kde/framework/kpty/pspec.xml +++ b/desktop/kde/framework/kpty/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kquickcharts/pspec.xml b/desktop/kde/framework/kquickcharts/pspec.xml index dc4d522944..64fc7e82a1 100644 --- a/desktop/kde/framework/kquickcharts/pspec.xml +++ b/desktop/kde/framework/kquickcharts/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/krunner/pspec.xml b/desktop/kde/framework/krunner/pspec.xml index 17af26bb54..b8c6280a34 100755 --- a/desktop/kde/framework/krunner/pspec.xml +++ b/desktop/kde/framework/krunner/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kservice/pspec.xml b/desktop/kde/framework/kservice/pspec.xml index 7dc0176403..21858543bf 100755 --- a/desktop/kde/framework/kservice/pspec.xml +++ b/desktop/kde/framework/kservice/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kstatusnotifieritem/pspec.xml b/desktop/kde/framework/kstatusnotifieritem/pspec.xml index f3f4a45977..eddb4b41d0 100644 --- a/desktop/kde/framework/kstatusnotifieritem/pspec.xml +++ b/desktop/kde/framework/kstatusnotifieritem/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ksvg/pspec.xml b/desktop/kde/framework/ksvg/pspec.xml index ba0b20c113..a42b45fb7f 100644 --- a/desktop/kde/framework/ksvg/pspec.xml +++ b/desktop/kde/framework/ksvg/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ksyndication/pspec.xml b/desktop/kde/framework/ksyndication/pspec.xml index 8c6dee9143..5b6c126a6b 100755 --- a/desktop/kde/framework/ksyndication/pspec.xml +++ b/desktop/kde/framework/ksyndication/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ktexteditor/pspec.xml b/desktop/kde/framework/ktexteditor/pspec.xml index 4587012733..b1944debd9 100755 --- a/desktop/kde/framework/ktexteditor/pspec.xml +++ b/desktop/kde/framework/ktexteditor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ktexttemplate/pspec.xml b/desktop/kde/framework/ktexttemplate/pspec.xml index db6c153fa4..9bb5aa2096 100644 --- a/desktop/kde/framework/ktexttemplate/pspec.xml +++ b/desktop/kde/framework/ktexttemplate/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/ktextwidgets/pspec.xml b/desktop/kde/framework/ktextwidgets/pspec.xml index a16e1689de..a215cc0d4e 100755 --- a/desktop/kde/framework/ktextwidgets/pspec.xml +++ b/desktop/kde/framework/ktextwidgets/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kunitconversion/pspec.xml b/desktop/kde/framework/kunitconversion/pspec.xml index 8c9ef46721..b9d1dffeae 100644 --- a/desktop/kde/framework/kunitconversion/pspec.xml +++ b/desktop/kde/framework/kunitconversion/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kuserfeedback/pspec.xml b/desktop/kde/framework/kuserfeedback/pspec.xml index 637f137159..66fb83366c 100644 --- a/desktop/kde/framework/kuserfeedback/pspec.xml +++ b/desktop/kde/framework/kuserfeedback/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kwallet/pspec.xml b/desktop/kde/framework/kwallet/pspec.xml index 345724eeba..884bd3fb51 100755 --- a/desktop/kde/framework/kwallet/pspec.xml +++ b/desktop/kde/framework/kwallet/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kwidgetsaddons/pspec.xml b/desktop/kde/framework/kwidgetsaddons/pspec.xml index fd2397f48a..4c3ad32840 100755 --- a/desktop/kde/framework/kwidgetsaddons/pspec.xml +++ b/desktop/kde/framework/kwidgetsaddons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kwindowsystem/pspec.xml b/desktop/kde/framework/kwindowsystem/pspec.xml index 14e775e19a..6101756156 100755 --- a/desktop/kde/framework/kwindowsystem/pspec.xml +++ b/desktop/kde/framework/kwindowsystem/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/kxmlgui/pspec.xml b/desktop/kde/framework/kxmlgui/pspec.xml index d93d3515fe..dc90997d1b 100755 --- a/desktop/kde/framework/kxmlgui/pspec.xml +++ b/desktop/kde/framework/kxmlgui/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/modemmanager-qt/pspec.xml b/desktop/kde/framework/modemmanager-qt/pspec.xml index 8c380caaa7..d858031040 100755 --- a/desktop/kde/framework/modemmanager-qt/pspec.xml +++ b/desktop/kde/framework/modemmanager-qt/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/networkmanager-qt/pspec.xml b/desktop/kde/framework/networkmanager-qt/pspec.xml index 539a7b3a03..ae71319d9c 100755 --- a/desktop/kde/framework/networkmanager-qt/pspec.xml +++ b/desktop/kde/framework/networkmanager-qt/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/oxygen-icons/pspec.xml b/desktop/kde/framework/oxygen-icons/pspec.xml index 83287bec1b..956d0e0d2a 100755 --- a/desktop/kde/framework/oxygen-icons/pspec.xml +++ b/desktop/kde/framework/oxygen-icons/pspec.xml @@ -1,4 +1,3 @@ - oxygen-icons diff --git a/desktop/kde/framework/plasma-wayland-protocols/pspec.xml b/desktop/kde/framework/plasma-wayland-protocols/pspec.xml index 9c399d242e..3f713f9d87 100644 --- a/desktop/kde/framework/plasma-wayland-protocols/pspec.xml +++ b/desktop/kde/framework/plasma-wayland-protocols/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/prison/pspec.xml b/desktop/kde/framework/prison/pspec.xml index 725ec22db8..b3a06cc209 100755 --- a/desktop/kde/framework/prison/pspec.xml +++ b/desktop/kde/framework/prison/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/purpose/pspec.xml b/desktop/kde/framework/purpose/pspec.xml index fd685b5638..4f92403cb4 100644 --- a/desktop/kde/framework/purpose/pspec.xml +++ b/desktop/kde/framework/purpose/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/qqc2-desktop-style/pspec.xml b/desktop/kde/framework/qqc2-desktop-style/pspec.xml index 01219335b6..222439d440 100755 --- a/desktop/kde/framework/qqc2-desktop-style/pspec.xml +++ b/desktop/kde/framework/qqc2-desktop-style/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/solid/pspec.xml b/desktop/kde/framework/solid/pspec.xml index 28318e1be6..2cda2b78c4 100755 --- a/desktop/kde/framework/solid/pspec.xml +++ b/desktop/kde/framework/solid/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/sonnet/pspec.xml b/desktop/kde/framework/sonnet/pspec.xml index 9dc6b1fe0b..0a3b1608e8 100755 --- a/desktop/kde/framework/sonnet/pspec.xml +++ b/desktop/kde/framework/sonnet/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/framework/syntax-highlighting/pspec.xml b/desktop/kde/framework/syntax-highlighting/pspec.xml index d2d6181f8a..a374bc1828 100755 --- a/desktop/kde/framework/syntax-highlighting/pspec.xml +++ b/desktop/kde/framework/syntax-highlighting/pspec.xml @@ -1,4 +1,3 @@ - syntax-highlighting diff --git a/desktop/kde/framework/threadweaver/pspec.xml b/desktop/kde/framework/threadweaver/pspec.xml index 1840630861..9b22424c8d 100755 --- a/desktop/kde/framework/threadweaver/pspec.xml +++ b/desktop/kde/framework/threadweaver/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/bluedevil/pspec.xml b/desktop/kde/plasma/bluedevil/pspec.xml index 4fe256a537..a65f695323 100755 --- a/desktop/kde/plasma/bluedevil/pspec.xml +++ b/desktop/kde/plasma/bluedevil/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/breeze-grub/pspec.xml b/desktop/kde/plasma/breeze-grub/pspec.xml index 6d375e1bbf..b2770cc411 100755 --- a/desktop/kde/plasma/breeze-grub/pspec.xml +++ b/desktop/kde/plasma/breeze-grub/pspec.xml @@ -1,4 +1,3 @@ - breeze-grub diff --git a/desktop/kde/plasma/breeze-gtk/pspec.xml b/desktop/kde/plasma/breeze-gtk/pspec.xml index 6c0f31d52d..9b9cdf5fa2 100755 --- a/desktop/kde/plasma/breeze-gtk/pspec.xml +++ b/desktop/kde/plasma/breeze-gtk/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/breeze-plymouth/pspec.xml b/desktop/kde/plasma/breeze-plymouth/pspec.xml index ced3c96dde..df73bbfe9a 100755 --- a/desktop/kde/plasma/breeze-plymouth/pspec.xml +++ b/desktop/kde/plasma/breeze-plymouth/pspec.xml @@ -1,4 +1,3 @@ - breeze-plymouth diff --git a/desktop/kde/plasma/breeze/pspec.xml b/desktop/kde/plasma/breeze/pspec.xml index 7dba63f04a..688b06f5d5 100755 --- a/desktop/kde/plasma/breeze/pspec.xml +++ b/desktop/kde/plasma/breeze/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/discover/pspec.xml b/desktop/kde/plasma/discover/pspec.xml index 6a8fbcaa8f..2330624c88 100755 --- a/desktop/kde/plasma/discover/pspec.xml +++ b/desktop/kde/plasma/discover/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/drkonqi/pspec.xml b/desktop/kde/plasma/drkonqi/pspec.xml index ce88989d3d..4b5a7e3ea8 100755 --- a/desktop/kde/plasma/drkonqi/pspec.xml +++ b/desktop/kde/plasma/drkonqi/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kactivitymanagerd/pspec.xml b/desktop/kde/plasma/kactivitymanagerd/pspec.xml index 0635bfe215..8049f3326e 100755 --- a/desktop/kde/plasma/kactivitymanagerd/pspec.xml +++ b/desktop/kde/plasma/kactivitymanagerd/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kde-cli-tools/pspec.xml b/desktop/kde/plasma/kde-cli-tools/pspec.xml index 1c2da7cf7d..4f13d8fbcf 100755 --- a/desktop/kde/plasma/kde-cli-tools/pspec.xml +++ b/desktop/kde/plasma/kde-cli-tools/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kde-gtk-config/pspec.xml b/desktop/kde/plasma/kde-gtk-config/pspec.xml index a501852033..7e6a846762 100755 --- a/desktop/kde/plasma/kde-gtk-config/pspec.xml +++ b/desktop/kde/plasma/kde-gtk-config/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kdecorations/pspec.xml b/desktop/kde/plasma/kdecorations/pspec.xml index e8ad3a0c70..8f9a767690 100755 --- a/desktop/kde/plasma/kdecorations/pspec.xml +++ b/desktop/kde/plasma/kdecorations/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kdeplasma-addons/pspec.xml b/desktop/kde/plasma/kdeplasma-addons/pspec.xml index 2bc52d1629..51fce39bdb 100755 --- a/desktop/kde/plasma/kdeplasma-addons/pspec.xml +++ b/desktop/kde/plasma/kdeplasma-addons/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kgamma/pspec.xml b/desktop/kde/plasma/kgamma/pspec.xml index bd5d785d67..2d45302b08 100755 --- a/desktop/kde/plasma/kgamma/pspec.xml +++ b/desktop/kde/plasma/kgamma/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kglobalacceld/pspec.xml b/desktop/kde/plasma/kglobalacceld/pspec.xml index 23db046926..fbdce0060a 100644 --- a/desktop/kde/plasma/kglobalacceld/pspec.xml +++ b/desktop/kde/plasma/kglobalacceld/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kinfocenter/pspec.xml b/desktop/kde/plasma/kinfocenter/pspec.xml index 4289d881d7..b0d6bd0360 100755 --- a/desktop/kde/plasma/kinfocenter/pspec.xml +++ b/desktop/kde/plasma/kinfocenter/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kmenuedit/pspec.xml b/desktop/kde/plasma/kmenuedit/pspec.xml index ad554db767..3ff3dc33ab 100755 --- a/desktop/kde/plasma/kmenuedit/pspec.xml +++ b/desktop/kde/plasma/kmenuedit/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kpipewire/pspec.xml b/desktop/kde/plasma/kpipewire/pspec.xml index 628f05676d..a1ae189fbe 100644 --- a/desktop/kde/plasma/kpipewire/pspec.xml +++ b/desktop/kde/plasma/kpipewire/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kscreen/pspec.xml b/desktop/kde/plasma/kscreen/pspec.xml index a40c01f9cf..8dce85da3c 100755 --- a/desktop/kde/plasma/kscreen/pspec.xml +++ b/desktop/kde/plasma/kscreen/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kscreenlocker/pspec.xml b/desktop/kde/plasma/kscreenlocker/pspec.xml index 612bf9439a..ff13ff67a6 100755 --- a/desktop/kde/plasma/kscreenlocker/pspec.xml +++ b/desktop/kde/plasma/kscreenlocker/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/ksshaskpass/pspec.xml b/desktop/kde/plasma/ksshaskpass/pspec.xml index bfc34723e4..e376b1f355 100755 --- a/desktop/kde/plasma/ksshaskpass/pspec.xml +++ b/desktop/kde/plasma/ksshaskpass/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/ksystemstats/pspec.xml b/desktop/kde/plasma/ksystemstats/pspec.xml index b6bab865af..82c13d6c73 100644 --- a/desktop/kde/plasma/ksystemstats/pspec.xml +++ b/desktop/kde/plasma/ksystemstats/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kwallet-pam/pspec.xml b/desktop/kde/plasma/kwallet-pam/pspec.xml index 1aaef58325..30fde4653f 100755 --- a/desktop/kde/plasma/kwallet-pam/pspec.xml +++ b/desktop/kde/plasma/kwallet-pam/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kwayland-integration/pspec.xml b/desktop/kde/plasma/kwayland-integration/pspec.xml index 377d13bd18..da732a4496 100755 --- a/desktop/kde/plasma/kwayland-integration/pspec.xml +++ b/desktop/kde/plasma/kwayland-integration/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kwayland/pspec.xml b/desktop/kde/plasma/kwayland/pspec.xml index e90fa70f0b..4e95416dc9 100755 --- a/desktop/kde/plasma/kwayland/pspec.xml +++ b/desktop/kde/plasma/kwayland/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kwin/pspec.xml b/desktop/kde/plasma/kwin/pspec.xml index 73b389e016..9d8361edf5 100755 --- a/desktop/kde/plasma/kwin/pspec.xml +++ b/desktop/kde/plasma/kwin/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/kwrited/pspec.xml b/desktop/kde/plasma/kwrited/pspec.xml index 1079aa4877..6069106678 100755 --- a/desktop/kde/plasma/kwrited/pspec.xml +++ b/desktop/kde/plasma/kwrited/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/layer-shell-qt/pspec.xml b/desktop/kde/plasma/layer-shell-qt/pspec.xml index 902c3cc9bc..6c14c6c698 100644 --- a/desktop/kde/plasma/layer-shell-qt/pspec.xml +++ b/desktop/kde/plasma/layer-shell-qt/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/libkscreen/pspec.xml b/desktop/kde/plasma/libkscreen/pspec.xml index 158c3fa55e..6ad05734da 100755 --- a/desktop/kde/plasma/libkscreen/pspec.xml +++ b/desktop/kde/plasma/libkscreen/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/libksysguard/pspec.xml b/desktop/kde/plasma/libksysguard/pspec.xml index f04483fd59..7eff5a3224 100755 --- a/desktop/kde/plasma/libksysguard/pspec.xml +++ b/desktop/kde/plasma/libksysguard/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/libplasma/pspec.xml b/desktop/kde/plasma/libplasma/pspec.xml index 9f65f28bf5..2b6139296e 100755 --- a/desktop/kde/plasma/libplasma/pspec.xml +++ b/desktop/kde/plasma/libplasma/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/milou/pspec.xml b/desktop/kde/plasma/milou/pspec.xml index 34f7228928..03ae86074a 100755 --- a/desktop/kde/plasma/milou/pspec.xml +++ b/desktop/kde/plasma/milou/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/oxygen-sounds/pspec.xml b/desktop/kde/plasma/oxygen-sounds/pspec.xml index a6fe083882..b140f85139 100644 --- a/desktop/kde/plasma/oxygen-sounds/pspec.xml +++ b/desktop/kde/plasma/oxygen-sounds/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/oxygen/pspec.xml b/desktop/kde/plasma/oxygen/pspec.xml index f4e88d028d..e7d17c80d0 100755 --- a/desktop/kde/plasma/oxygen/pspec.xml +++ b/desktop/kde/plasma/oxygen/pspec.xml @@ -1,4 +1,3 @@ - oxygen diff --git a/desktop/kde/plasma/plasma-activities-stats/pspec.xml b/desktop/kde/plasma/plasma-activities-stats/pspec.xml index 479872c4ec..50c2e88600 100755 --- a/desktop/kde/plasma/plasma-activities-stats/pspec.xml +++ b/desktop/kde/plasma/plasma-activities-stats/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-activities/pspec.xml b/desktop/kde/plasma/plasma-activities/pspec.xml index 47bd100d6c..8af34077d5 100755 --- a/desktop/kde/plasma/plasma-activities/pspec.xml +++ b/desktop/kde/plasma/plasma-activities/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-browser-integration/pspec.xml b/desktop/kde/plasma/plasma-browser-integration/pspec.xml index df8a8e1c71..88b28a9913 100644 --- a/desktop/kde/plasma/plasma-browser-integration/pspec.xml +++ b/desktop/kde/plasma/plasma-browser-integration/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-desktop/pspec.xml b/desktop/kde/plasma/plasma-desktop/pspec.xml index 56c82c1f63..fee7f0e7e5 100755 --- a/desktop/kde/plasma/plasma-desktop/pspec.xml +++ b/desktop/kde/plasma/plasma-desktop/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-firewall/pspec.xml b/desktop/kde/plasma/plasma-firewall/pspec.xml index cb31c8a887..2876346715 100644 --- a/desktop/kde/plasma/plasma-firewall/pspec.xml +++ b/desktop/kde/plasma/plasma-firewall/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-integration/pspec.xml b/desktop/kde/plasma/plasma-integration/pspec.xml index f16b919f5c..7e54bed797 100755 --- a/desktop/kde/plasma/plasma-integration/pspec.xml +++ b/desktop/kde/plasma/plasma-integration/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-nm/pspec.xml b/desktop/kde/plasma/plasma-nm/pspec.xml index 3cab3bfd9d..1020a11ab4 100755 --- a/desktop/kde/plasma/plasma-nm/pspec.xml +++ b/desktop/kde/plasma/plasma-nm/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-pa/pspec.xml b/desktop/kde/plasma/plasma-pa/pspec.xml index ecac409223..acc6d8d742 100755 --- a/desktop/kde/plasma/plasma-pa/pspec.xml +++ b/desktop/kde/plasma/plasma-pa/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-sdk/pspec.xml b/desktop/kde/plasma/plasma-sdk/pspec.xml index 0fe137b1c4..99cc4d6db6 100755 --- a/desktop/kde/plasma/plasma-sdk/pspec.xml +++ b/desktop/kde/plasma/plasma-sdk/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-systemmonitor/pspec.xml b/desktop/kde/plasma/plasma-systemmonitor/pspec.xml index dc5b693057..c4e3cc9aae 100644 --- a/desktop/kde/plasma/plasma-systemmonitor/pspec.xml +++ b/desktop/kde/plasma/plasma-systemmonitor/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-vault/pspec.xml b/desktop/kde/plasma/plasma-vault/pspec.xml index a28be7f8a2..2f03cb98f1 100755 --- a/desktop/kde/plasma/plasma-vault/pspec.xml +++ b/desktop/kde/plasma/plasma-vault/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-welcome/pspec.xml b/desktop/kde/plasma/plasma-welcome/pspec.xml index 0be929a039..3d5fdc1a1e 100644 --- a/desktop/kde/plasma/plasma-welcome/pspec.xml +++ b/desktop/kde/plasma/plasma-welcome/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml index 68497efe79..f3cf0e3036 100755 --- a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml +++ b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma-workspace/pspec.xml b/desktop/kde/plasma/plasma-workspace/pspec.xml index df59793464..e83e2e60fa 100644 --- a/desktop/kde/plasma/plasma-workspace/pspec.xml +++ b/desktop/kde/plasma/plasma-workspace/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plasma5-support/pspec.xml b/desktop/kde/plasma/plasma5-support/pspec.xml index 939f5e70d7..8e6e38c16c 100644 --- a/desktop/kde/plasma/plasma5-support/pspec.xml +++ b/desktop/kde/plasma/plasma5-support/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/plymouth-kcm/pspec.xml b/desktop/kde/plasma/plymouth-kcm/pspec.xml index 000bf1df14..ec568ef184 100644 --- a/desktop/kde/plasma/plymouth-kcm/pspec.xml +++ b/desktop/kde/plasma/plymouth-kcm/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml index aa479c1e02..dc24cdffb2 100755 --- a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml +++ b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/powerdevil/pspec.xml b/desktop/kde/plasma/powerdevil/pspec.xml index cffb66d7af..7e7532fdda 100755 --- a/desktop/kde/plasma/powerdevil/pspec.xml +++ b/desktop/kde/plasma/powerdevil/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/print-manager/pspec.xml b/desktop/kde/plasma/print-manager/pspec.xml index c47481a687..5416d3b3e0 100755 --- a/desktop/kde/plasma/print-manager/pspec.xml +++ b/desktop/kde/plasma/print-manager/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/qqc2-breeze-style/pspec.xml b/desktop/kde/plasma/qqc2-breeze-style/pspec.xml index 8cbd69bc10..f9a184b731 100644 --- a/desktop/kde/plasma/qqc2-breeze-style/pspec.xml +++ b/desktop/kde/plasma/qqc2-breeze-style/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/sddm-kcm/pspec.xml b/desktop/kde/plasma/sddm-kcm/pspec.xml index 00cd1e32eb..95e9dc4a72 100755 --- a/desktop/kde/plasma/sddm-kcm/pspec.xml +++ b/desktop/kde/plasma/sddm-kcm/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/system-settings/pspec.xml b/desktop/kde/plasma/system-settings/pspec.xml index 41988ebf22..88a99f6d04 100755 --- a/desktop/kde/plasma/system-settings/pspec.xml +++ b/desktop/kde/plasma/system-settings/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml b/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml index 6d4abd0b96..dc50eea775 100755 --- a/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml +++ b/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/attica5/pspec.xml b/desktop/kde5/framework/attica5/pspec.xml index 958f6679c5..210d9d2bba 100755 --- a/desktop/kde5/framework/attica5/pspec.xml +++ b/desktop/kde5/framework/attica5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/baloo5/pspec.xml b/desktop/kde5/framework/baloo5/pspec.xml index 06fd08ac03..cb8e0dc9ef 100755 --- a/desktop/kde5/framework/baloo5/pspec.xml +++ b/desktop/kde5/framework/baloo5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/bluez-qt5/pspec.xml b/desktop/kde5/framework/bluez-qt5/pspec.xml index ad2a46f9e1..74a3423531 100755 --- a/desktop/kde5/framework/bluez-qt5/pspec.xml +++ b/desktop/kde5/framework/bluez-qt5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/breeze-icons5/pspec.xml b/desktop/kde5/framework/breeze-icons5/pspec.xml index 926f5fee3f..02f1c9ca6f 100755 --- a/desktop/kde5/framework/breeze-icons5/pspec.xml +++ b/desktop/kde5/framework/breeze-icons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/frameworkintegration5/pspec.xml b/desktop/kde5/framework/frameworkintegration5/pspec.xml index 6aaade6d1d..3be891fc2c 100755 --- a/desktop/kde5/framework/frameworkintegration5/pspec.xml +++ b/desktop/kde5/framework/frameworkintegration5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kactivities-stats5/pspec.xml b/desktop/kde5/framework/kactivities-stats5/pspec.xml index ea3d55617e..b4da935303 100755 --- a/desktop/kde5/framework/kactivities-stats5/pspec.xml +++ b/desktop/kde5/framework/kactivities-stats5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kactivities5/pspec.xml b/desktop/kde5/framework/kactivities5/pspec.xml index 64ea80d88a..9951d9674a 100755 --- a/desktop/kde5/framework/kactivities5/pspec.xml +++ b/desktop/kde5/framework/kactivities5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kapidox5/pspec.xml b/desktop/kde5/framework/kapidox5/pspec.xml index f61244f6ad..d155573014 100755 --- a/desktop/kde5/framework/kapidox5/pspec.xml +++ b/desktop/kde5/framework/kapidox5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/karchive5/pspec.xml b/desktop/kde5/framework/karchive5/pspec.xml index d6c9087caa..85f76e6d80 100755 --- a/desktop/kde5/framework/karchive5/pspec.xml +++ b/desktop/kde5/framework/karchive5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kauth5/pspec.xml b/desktop/kde5/framework/kauth5/pspec.xml index a555abea0a..5aef69024c 100644 --- a/desktop/kde5/framework/kauth5/pspec.xml +++ b/desktop/kde5/framework/kauth5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kbookmarks5/pspec.xml b/desktop/kde5/framework/kbookmarks5/pspec.xml index d54a02486e..bbbdf70a83 100755 --- a/desktop/kde5/framework/kbookmarks5/pspec.xml +++ b/desktop/kde5/framework/kbookmarks5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcalendarcore5/pspec.xml b/desktop/kde5/framework/kcalendarcore5/pspec.xml index c1da7f9d07..40bfa75eed 100644 --- a/desktop/kde5/framework/kcalendarcore5/pspec.xml +++ b/desktop/kde5/framework/kcalendarcore5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcmutils5/pspec.xml b/desktop/kde5/framework/kcmutils5/pspec.xml index 3c098536ef..dfc9a10766 100755 --- a/desktop/kde5/framework/kcmutils5/pspec.xml +++ b/desktop/kde5/framework/kcmutils5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcodecs5/pspec.xml b/desktop/kde5/framework/kcodecs5/pspec.xml index e53e34ab62..c4114c682e 100755 --- a/desktop/kde5/framework/kcodecs5/pspec.xml +++ b/desktop/kde5/framework/kcodecs5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcompletion5/pspec.xml b/desktop/kde5/framework/kcompletion5/pspec.xml index 3eb3ef0059..bec2db05fb 100644 --- a/desktop/kde5/framework/kcompletion5/pspec.xml +++ b/desktop/kde5/framework/kcompletion5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kconfig5/pspec.xml b/desktop/kde5/framework/kconfig5/pspec.xml index 266ab30bb3..6210ea1c85 100755 --- a/desktop/kde5/framework/kconfig5/pspec.xml +++ b/desktop/kde5/framework/kconfig5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kconfigwidgets5/pspec.xml b/desktop/kde5/framework/kconfigwidgets5/pspec.xml index 530be2028b..9fe31a6bd2 100755 --- a/desktop/kde5/framework/kconfigwidgets5/pspec.xml +++ b/desktop/kde5/framework/kconfigwidgets5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcontacts5/pspec.xml b/desktop/kde5/framework/kcontacts5/pspec.xml index ee23f0e088..1855873ef6 100755 --- a/desktop/kde5/framework/kcontacts5/pspec.xml +++ b/desktop/kde5/framework/kcontacts5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcoreaddons5/pspec.xml b/desktop/kde5/framework/kcoreaddons5/pspec.xml index a8631fa2a9..9da2c0997a 100755 --- a/desktop/kde5/framework/kcoreaddons5/pspec.xml +++ b/desktop/kde5/framework/kcoreaddons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kcrash5/pspec.xml b/desktop/kde5/framework/kcrash5/pspec.xml index c3c1bf26ad..591227fea7 100644 --- a/desktop/kde5/framework/kcrash5/pspec.xml +++ b/desktop/kde5/framework/kcrash5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdav5/pspec.xml b/desktop/kde5/framework/kdav5/pspec.xml index e66c07079b..248157a16d 100644 --- a/desktop/kde5/framework/kdav5/pspec.xml +++ b/desktop/kde5/framework/kdav5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdbusaddons5/pspec.xml b/desktop/kde5/framework/kdbusaddons5/pspec.xml index f933f0c1ba..252efce0eb 100755 --- a/desktop/kde5/framework/kdbusaddons5/pspec.xml +++ b/desktop/kde5/framework/kdbusaddons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdeclarative5/pspec.xml b/desktop/kde5/framework/kdeclarative5/pspec.xml index 7498ac27d2..e5628f2f0c 100755 --- a/desktop/kde5/framework/kdeclarative5/pspec.xml +++ b/desktop/kde5/framework/kdeclarative5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kded5/pspec.xml b/desktop/kde5/framework/kded5/pspec.xml index 4de9fc0abe..e6d34f467d 100755 --- a/desktop/kde5/framework/kded5/pspec.xml +++ b/desktop/kde5/framework/kded5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdelibs4-support5/pspec.xml b/desktop/kde5/framework/kdelibs4-support5/pspec.xml index 41760b4ff4..83665a6468 100755 --- a/desktop/kde5/framework/kdelibs4-support5/pspec.xml +++ b/desktop/kde5/framework/kdelibs4-support5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdesignerplugin5/pspec.xml b/desktop/kde5/framework/kdesignerplugin5/pspec.xml index 26f1dc39ec..978b20b773 100755 --- a/desktop/kde5/framework/kdesignerplugin5/pspec.xml +++ b/desktop/kde5/framework/kdesignerplugin5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdesu5/pspec.xml b/desktop/kde5/framework/kdesu5/pspec.xml index 67e6385cdd..13d7b12157 100755 --- a/desktop/kde5/framework/kdesu5/pspec.xml +++ b/desktop/kde5/framework/kdesu5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdewebkit5/pspec.xml b/desktop/kde5/framework/kdewebkit5/pspec.xml index 43fd6248ee..c42b0837e3 100755 --- a/desktop/kde5/framework/kdewebkit5/pspec.xml +++ b/desktop/kde5/framework/kdewebkit5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdnssd5/pspec.xml b/desktop/kde5/framework/kdnssd5/pspec.xml index 2ec8f9fd2c..faeab91e29 100755 --- a/desktop/kde5/framework/kdnssd5/pspec.xml +++ b/desktop/kde5/framework/kdnssd5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kdoctools5/pspec.xml b/desktop/kde5/framework/kdoctools5/pspec.xml index bbd604062e..96d1976014 100644 --- a/desktop/kde5/framework/kdoctools5/pspec.xml +++ b/desktop/kde5/framework/kdoctools5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kemoticons5/pspec.xml b/desktop/kde5/framework/kemoticons5/pspec.xml index 2fec6bfadc..96b0445d05 100755 --- a/desktop/kde5/framework/kemoticons5/pspec.xml +++ b/desktop/kde5/framework/kemoticons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kfilemetadata5/pspec.xml b/desktop/kde5/framework/kfilemetadata5/pspec.xml index 7fd4b9f656..02fdbf4747 100644 --- a/desktop/kde5/framework/kfilemetadata5/pspec.xml +++ b/desktop/kde5/framework/kfilemetadata5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kglobalaccel5/pspec.xml b/desktop/kde5/framework/kglobalaccel5/pspec.xml index 513da7d7ca..965c97b976 100755 --- a/desktop/kde5/framework/kglobalaccel5/pspec.xml +++ b/desktop/kde5/framework/kglobalaccel5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kguiaddons5/pspec.xml b/desktop/kde5/framework/kguiaddons5/pspec.xml index b7df7b1ced..9fb7a2e255 100755 --- a/desktop/kde5/framework/kguiaddons5/pspec.xml +++ b/desktop/kde5/framework/kguiaddons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kholidays5/pspec.xml b/desktop/kde5/framework/kholidays5/pspec.xml index 2aadd66057..239a661ac5 100755 --- a/desktop/kde5/framework/kholidays5/pspec.xml +++ b/desktop/kde5/framework/kholidays5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/khtml5/pspec.xml b/desktop/kde5/framework/khtml5/pspec.xml index b77077710d..2201a89485 100755 --- a/desktop/kde5/framework/khtml5/pspec.xml +++ b/desktop/kde5/framework/khtml5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/ki18n5/pspec.xml b/desktop/kde5/framework/ki18n5/pspec.xml index 0afeb46e85..cf8b251be3 100755 --- a/desktop/kde5/framework/ki18n5/pspec.xml +++ b/desktop/kde5/framework/ki18n5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kiconthemes5/pspec.xml b/desktop/kde5/framework/kiconthemes5/pspec.xml index 248d8184b7..269b2127d2 100755 --- a/desktop/kde5/framework/kiconthemes5/pspec.xml +++ b/desktop/kde5/framework/kiconthemes5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kidletime5/pspec.xml b/desktop/kde5/framework/kidletime5/pspec.xml index 451b25667e..2c0d04ec07 100755 --- a/desktop/kde5/framework/kidletime5/pspec.xml +++ b/desktop/kde5/framework/kidletime5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kimageformats5/pspec.xml b/desktop/kde5/framework/kimageformats5/pspec.xml index 15cdc92d8c..871cd84725 100644 --- a/desktop/kde5/framework/kimageformats5/pspec.xml +++ b/desktop/kde5/framework/kimageformats5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kinit5/pspec.xml b/desktop/kde5/framework/kinit5/pspec.xml index 78c49ae9cf..dcb717d407 100755 --- a/desktop/kde5/framework/kinit5/pspec.xml +++ b/desktop/kde5/framework/kinit5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kio5/pspec.xml b/desktop/kde5/framework/kio5/pspec.xml index 913d46a58a..b506d5c72a 100755 --- a/desktop/kde5/framework/kio5/pspec.xml +++ b/desktop/kde5/framework/kio5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kirigami5/pspec.xml b/desktop/kde5/framework/kirigami5/pspec.xml index 898b6cb0b2..29631617bf 100755 --- a/desktop/kde5/framework/kirigami5/pspec.xml +++ b/desktop/kde5/framework/kirigami5/pspec.xml @@ -1,4 +1,3 @@ - kirigami5 diff --git a/desktop/kde5/framework/kitemmodels5/pspec.xml b/desktop/kde5/framework/kitemmodels5/pspec.xml index e6051a0aa4..c41921b674 100755 --- a/desktop/kde5/framework/kitemmodels5/pspec.xml +++ b/desktop/kde5/framework/kitemmodels5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kitemviews5/pspec.xml b/desktop/kde5/framework/kitemviews5/pspec.xml index a234feae9b..b82af4dbe9 100755 --- a/desktop/kde5/framework/kitemviews5/pspec.xml +++ b/desktop/kde5/framework/kitemviews5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kjobwidgets5/pspec.xml b/desktop/kde5/framework/kjobwidgets5/pspec.xml index 067c37828c..fb450879fb 100644 --- a/desktop/kde5/framework/kjobwidgets5/pspec.xml +++ b/desktop/kde5/framework/kjobwidgets5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kjs5/pspec.xml b/desktop/kde5/framework/kjs5/pspec.xml index 1a5192424a..6ca75e62c6 100755 --- a/desktop/kde5/framework/kjs5/pspec.xml +++ b/desktop/kde5/framework/kjs5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kjsembed5/pspec.xml b/desktop/kde5/framework/kjsembed5/pspec.xml index 958e7b5880..c1c382c319 100755 --- a/desktop/kde5/framework/kjsembed5/pspec.xml +++ b/desktop/kde5/framework/kjsembed5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kmediaplayer5/pspec.xml b/desktop/kde5/framework/kmediaplayer5/pspec.xml index 380eeeabab..8e8997a320 100755 --- a/desktop/kde5/framework/kmediaplayer5/pspec.xml +++ b/desktop/kde5/framework/kmediaplayer5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/knewstuff5/pspec.xml b/desktop/kde5/framework/knewstuff5/pspec.xml index bc511af92b..a0c6c7896c 100755 --- a/desktop/kde5/framework/knewstuff5/pspec.xml +++ b/desktop/kde5/framework/knewstuff5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/knotifications5/pspec.xml b/desktop/kde5/framework/knotifications5/pspec.xml index cf8e77cb61..1316cb42ec 100755 --- a/desktop/kde5/framework/knotifications5/pspec.xml +++ b/desktop/kde5/framework/knotifications5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/knotifyconfig5/pspec.xml b/desktop/kde5/framework/knotifyconfig5/pspec.xml index 6086387b89..be487be92b 100755 --- a/desktop/kde5/framework/knotifyconfig5/pspec.xml +++ b/desktop/kde5/framework/knotifyconfig5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kpackage5/pspec.xml b/desktop/kde5/framework/kpackage5/pspec.xml index 14d9cb15cb..81719a9b58 100755 --- a/desktop/kde5/framework/kpackage5/pspec.xml +++ b/desktop/kde5/framework/kpackage5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kparts5/pspec.xml b/desktop/kde5/framework/kparts5/pspec.xml index 3b6ce5bafc..35cbd954a9 100755 --- a/desktop/kde5/framework/kparts5/pspec.xml +++ b/desktop/kde5/framework/kparts5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kpeople5/pspec.xml b/desktop/kde5/framework/kpeople5/pspec.xml index 14a8efe55b..fa2fac65b3 100755 --- a/desktop/kde5/framework/kpeople5/pspec.xml +++ b/desktop/kde5/framework/kpeople5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kplotting5/pspec.xml b/desktop/kde5/framework/kplotting5/pspec.xml index 9739198462..e08278a2e4 100755 --- a/desktop/kde5/framework/kplotting5/pspec.xml +++ b/desktop/kde5/framework/kplotting5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kpty5/pspec.xml b/desktop/kde5/framework/kpty5/pspec.xml index aa56404a27..9555ccb2ee 100644 --- a/desktop/kde5/framework/kpty5/pspec.xml +++ b/desktop/kde5/framework/kpty5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kquickcharts5/pspec.xml b/desktop/kde5/framework/kquickcharts5/pspec.xml index 6efc99b6d4..101833dc6e 100644 --- a/desktop/kde5/framework/kquickcharts5/pspec.xml +++ b/desktop/kde5/framework/kquickcharts5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kross5/pspec.xml b/desktop/kde5/framework/kross5/pspec.xml index 97eff3f2da..66ac57e516 100755 --- a/desktop/kde5/framework/kross5/pspec.xml +++ b/desktop/kde5/framework/kross5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/krunner5/pspec.xml b/desktop/kde5/framework/krunner5/pspec.xml index f0fc451c02..f499f1d143 100755 --- a/desktop/kde5/framework/krunner5/pspec.xml +++ b/desktop/kde5/framework/krunner5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kservice5/pspec.xml b/desktop/kde5/framework/kservice5/pspec.xml index 74cf044b76..83337aa24a 100755 --- a/desktop/kde5/framework/kservice5/pspec.xml +++ b/desktop/kde5/framework/kservice5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/ksyndication5/pspec.xml b/desktop/kde5/framework/ksyndication5/pspec.xml index 0fa8a77190..ecb97f7bd2 100755 --- a/desktop/kde5/framework/ksyndication5/pspec.xml +++ b/desktop/kde5/framework/ksyndication5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/ktexteditor5/pspec.xml b/desktop/kde5/framework/ktexteditor5/pspec.xml index 887dfc6a8f..cad6929249 100755 --- a/desktop/kde5/framework/ktexteditor5/pspec.xml +++ b/desktop/kde5/framework/ktexteditor5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/ktextwidgets5/pspec.xml b/desktop/kde5/framework/ktextwidgets5/pspec.xml index 8ef813070a..f33a2c731f 100755 --- a/desktop/kde5/framework/ktextwidgets5/pspec.xml +++ b/desktop/kde5/framework/ktextwidgets5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kunitconversion5/pspec.xml b/desktop/kde5/framework/kunitconversion5/pspec.xml index 21e2fce31c..92e6f2f18f 100644 --- a/desktop/kde5/framework/kunitconversion5/pspec.xml +++ b/desktop/kde5/framework/kunitconversion5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kuserfeedback5/pspec.xml b/desktop/kde5/framework/kuserfeedback5/pspec.xml index 886fcd4bed..a7531cb157 100644 --- a/desktop/kde5/framework/kuserfeedback5/pspec.xml +++ b/desktop/kde5/framework/kuserfeedback5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kwallet5/pspec.xml b/desktop/kde5/framework/kwallet5/pspec.xml index 42428c7992..c0576099b3 100755 --- a/desktop/kde5/framework/kwallet5/pspec.xml +++ b/desktop/kde5/framework/kwallet5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kwayland5/pspec.xml b/desktop/kde5/framework/kwayland5/pspec.xml index 6ef4d4fff1..e298f25178 100755 --- a/desktop/kde5/framework/kwayland5/pspec.xml +++ b/desktop/kde5/framework/kwayland5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kwidgetsaddons5/pspec.xml b/desktop/kde5/framework/kwidgetsaddons5/pspec.xml index cc285b8dc6..cdf3fda4c8 100755 --- a/desktop/kde5/framework/kwidgetsaddons5/pspec.xml +++ b/desktop/kde5/framework/kwidgetsaddons5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kwindowsystem5/pspec.xml b/desktop/kde5/framework/kwindowsystem5/pspec.xml index 045278485b..66bc0d18ee 100755 --- a/desktop/kde5/framework/kwindowsystem5/pspec.xml +++ b/desktop/kde5/framework/kwindowsystem5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kxmlgui5/pspec.xml b/desktop/kde5/framework/kxmlgui5/pspec.xml index 2fa8c016bd..ea66b3f149 100755 --- a/desktop/kde5/framework/kxmlgui5/pspec.xml +++ b/desktop/kde5/framework/kxmlgui5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/kxmlrpcclient5/pspec.xml b/desktop/kde5/framework/kxmlrpcclient5/pspec.xml index c04c32ef46..5824988bbd 100755 --- a/desktop/kde5/framework/kxmlrpcclient5/pspec.xml +++ b/desktop/kde5/framework/kxmlrpcclient5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/modemmanager-qt5/pspec.xml b/desktop/kde5/framework/modemmanager-qt5/pspec.xml index 5fb6663ee1..6850f971d9 100755 --- a/desktop/kde5/framework/modemmanager-qt5/pspec.xml +++ b/desktop/kde5/framework/modemmanager-qt5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/networkmanager-qt5/pspec.xml b/desktop/kde5/framework/networkmanager-qt5/pspec.xml index d691d6b3aa..4dfac06d24 100755 --- a/desktop/kde5/framework/networkmanager-qt5/pspec.xml +++ b/desktop/kde5/framework/networkmanager-qt5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/oxygen-icons5/pspec.xml b/desktop/kde5/framework/oxygen-icons5/pspec.xml index 3c7e81a21f..9918c85718 100755 --- a/desktop/kde5/framework/oxygen-icons5/pspec.xml +++ b/desktop/kde5/framework/oxygen-icons5/pspec.xml @@ -1,4 +1,3 @@ - oxygen-icons5 diff --git a/desktop/kde5/framework/plasma-framework5/pspec.xml b/desktop/kde5/framework/plasma-framework5/pspec.xml index fc6bbe9d83..e41e1c01b2 100755 --- a/desktop/kde5/framework/plasma-framework5/pspec.xml +++ b/desktop/kde5/framework/plasma-framework5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/prison5/pspec.xml b/desktop/kde5/framework/prison5/pspec.xml index e4d8327548..df7542aa1f 100755 --- a/desktop/kde5/framework/prison5/pspec.xml +++ b/desktop/kde5/framework/prison5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/purpose5/pspec.xml b/desktop/kde5/framework/purpose5/pspec.xml index cfd93b3ace..a9616dcff2 100644 --- a/desktop/kde5/framework/purpose5/pspec.xml +++ b/desktop/kde5/framework/purpose5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/qqc2-desktop-style5/pspec.xml b/desktop/kde5/framework/qqc2-desktop-style5/pspec.xml index 43af4fa4d7..44c2b71fb0 100755 --- a/desktop/kde5/framework/qqc2-desktop-style5/pspec.xml +++ b/desktop/kde5/framework/qqc2-desktop-style5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/solid5/pspec.xml b/desktop/kde5/framework/solid5/pspec.xml index be9b55a7fc..91e46687b1 100755 --- a/desktop/kde5/framework/solid5/pspec.xml +++ b/desktop/kde5/framework/solid5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/sonnet5/pspec.xml b/desktop/kde5/framework/sonnet5/pspec.xml index fc1d8c305a..0c256d82dd 100755 --- a/desktop/kde5/framework/sonnet5/pspec.xml +++ b/desktop/kde5/framework/sonnet5/pspec.xml @@ -1,4 +1,3 @@ - diff --git a/desktop/kde5/framework/syntax-highlighting5/pspec.xml b/desktop/kde5/framework/syntax-highlighting5/pspec.xml index 3fd1c4487b..3255402b3c 100755 --- a/desktop/kde5/framework/syntax-highlighting5/pspec.xml +++ b/desktop/kde5/framework/syntax-highlighting5/pspec.xml @@ -1,4 +1,3 @@ - syntax-highlighting5 diff --git a/desktop/kde5/framework/threadweaver5/pspec.xml b/desktop/kde5/framework/threadweaver5/pspec.xml index ccfa8919a3..65ecfc9c18 100755 --- a/desktop/kde5/framework/threadweaver5/pspec.xml +++ b/desktop/kde5/framework/threadweaver5/pspec.xml @@ -1,4 +1,3 @@ - From bc6bfeaedec4be94816b5de4840a6cd67ebf5772 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 17:29:59 +0300 Subject: [PATCH 08/80] drop garbage files. --- .../info/gkrellm/files/drop_privileges.patch | 12 - hardware/info/gkrellm/files/gkrellm.desktop | 13 - hardware/info/gkrellm/files/gkrellm.png | Bin 2797 -> 0 bytes .../info/gkrellm/files/gkrellmd-conf.patch | 43 -- hardware/info/gkrellm/files/gkrellmd.service | 9 - .../libdca/files/libdca-0.0.5-cflags.patch | 12 - .../libdca/files/libdca-0.0.5-constant.patch | 719 ------------------ science/misc/coin/files/Coin-2.4.6-man3.diff | 22 - .../coin/files/Coin-2.4.6-openal-soname.diff | 12 - .../misc/coin/files/Coin-2.5.0-inttypes.patch | 150 ---- .../misc/coin/files/clang-name-lookup.diff | 10 - science/misc/coin/files/fix_gcc_4_8_1.patch | 12 - 12 files changed, 1014 deletions(-) delete mode 100644 hardware/info/gkrellm/files/drop_privileges.patch delete mode 100644 hardware/info/gkrellm/files/gkrellm.desktop delete mode 100644 hardware/info/gkrellm/files/gkrellm.png delete mode 100644 hardware/info/gkrellm/files/gkrellmd-conf.patch delete mode 100644 hardware/info/gkrellm/files/gkrellmd.service delete mode 100644 multimedia/sound/libdca/files/libdca-0.0.5-cflags.patch delete mode 100644 multimedia/sound/libdca/files/libdca-0.0.5-constant.patch delete mode 100644 science/misc/coin/files/Coin-2.4.6-man3.diff delete mode 100644 science/misc/coin/files/Coin-2.4.6-openal-soname.diff delete mode 100644 science/misc/coin/files/Coin-2.5.0-inttypes.patch delete mode 100644 science/misc/coin/files/clang-name-lookup.diff delete mode 100644 science/misc/coin/files/fix_gcc_4_8_1.patch diff --git a/hardware/info/gkrellm/files/drop_privileges.patch b/hardware/info/gkrellm/files/drop_privileges.patch deleted file mode 100644 index 7f8823669b..0000000000 --- a/hardware/info/gkrellm/files/drop_privileges.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur gkrellm-2.2.10-old/server/gkrellmd.conf gkrellm-2.2.10/server/gkrellmd.conf ---- gkrellm-2.2.10-old/server/gkrellmd.conf 2007-05-08 00:27:05.073863232 +0300 -+++ gkrellm-2.2.10/server/gkrellmd.conf 2007-05-08 00:27:35.880179960 +0300 -@@ -26,6 +26,8 @@ - # - #user nobody - #group proc -+user nobody -+group nogroup - - # Run in background and detach from the controlling terminal - #detach diff --git a/hardware/info/gkrellm/files/gkrellm.desktop b/hardware/info/gkrellm/files/gkrellm.desktop deleted file mode 100644 index 849fbda851..0000000000 --- a/hardware/info/gkrellm/files/gkrellm.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Encoding=UTF-8 -Name=GKrellM -Name[tr]=GKrellM -GenericName=Krell Monitor -GenericName[tr]=Sistem Krell İzleyicisi -Icon=gkrellm -Exec=gkrellm -Terminal=false -StartupNotify=false -Categories=Application;System; diff --git a/hardware/info/gkrellm/files/gkrellm.png b/hardware/info/gkrellm/files/gkrellm.png deleted file mode 100644 index 3201ad815e676a5a0dbdf3cf0e1356eb77ef5760..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2797 zcmV7CZIkTy1)(EL$$iAeh0LZ@Yk^R7SHBfh)>%fNdIy0IB z!~~H1uIFy%LR$hTdMH{y`q@!*9*mj|<)9Erwi-(Wpdgt|mwW({h!ac+fFuJ& zbM0&bkVAXi_NEQ(vB2AKKF9rxNHhvcDRNiGLrnonT^_C1R28a9L0?g)el#>jGPOW# zR0k0NBCZAt+SUNq$9NNWkNfttZa3Njz-d!-@qEKH@uD^wx=XA0TN7uKpp>Gfs+j+7 z&cfw4fg^7%7C`a7{`zK>OLr5Vvcjz%6mG;FWeeA0`x=z!r?I*Rpy;7LGzaEh!UCuK z!;%A>__;-N9!aBcorAP65kv1t5qSZm{FSbK1<=6{iC2RnABUUX&^3@p=aIDUwWaTi zIDRs260ZV!FBY+IEr!HM5rqef$d7d)F;+t1{`|fHNIu{*#5R+|e?0Cfi=SIWtupNy zV!b9fwaPRSS2#HFzW!Zp#PXHlH*15oD~%!MmRe<+YtjGaQL9YvTYJ=Wwp4vl_9<=H zp`yiYAORrum|b2fLV1=&^h5@lrlD4uMzlK%<#7gwyR$ZrlA29C91{xD3+ql|2ta$4 zK9;IYpEFpnx-LneiXxZD3r$; zWbRO?s*0h@Ss(TzGHp{f;LD8Iy2)csbOEQ5ocB1UB|hikgw@b@2Oz3cJw&nVG-ucJ zl>$gW{G5WN?~B5$KMr-xy!J&8=xP;^2ohro3is#Hb1DhtrLrqTad}n2u{CAah$7In zHGupid?AgaGtRQ(e~wv9x}~k!MI*g@Eeot``@=}TH%xjbqFova0BR{a@DlF~K;aAN z_i~7}&x2T!|2O7hA`eybeq#f`e)ePpnRXpgYZa(=u)|Yg}hY0A2 zE<^{CwzHNR(Lz^jh{&!eNjeCu4~A@kPX%SuRUF zxif68nV~xd+2l!Ng}Y#OI*rJQE)cUEE5Cq%XPFTIP<}z_>J$$D={TwbDMU_i*INV7 z)mgyM?_-t?Vg`c_z68`L3lF3$9>l*fiR#H1qNkEAc~G%C4m>Vw4Ip%Pf!@yh@*uKQ z0)3_Mn2*`Z>Tf%F#lQD*&3UOnZ?I}Yz$5^JT+5hbvTXCZbq)ZRhPVqKNr9|0(DE=M zN3t0HRm0pt4PZJ5fKoYw&!gN(KdfZ&*WV2zx~71BWe&B%$e>>pWSRM5&TRslshewK8s#(8|_~G_7zuQ!Qs4 zUHW9j>E-B%?bV3k7jWAnBOSgVfb_Nb5f@Tm7l)8v%^|;*+wzNPIkRb-{K&{OXiYp9%45`+k@P ze(Hk+hUgs15j%-fRVj)O3ZZv09+WpVrd?^JJuSUh=8-ELA@K-}Hw~BxX~0Za)nIl^ zNYY)idFGiwY(EXySw|Po+nUW2@HF5}0Ll!eL#fN7R(5Cp>;jGreuC7cQ6T|b_Kn?W zlp_8`95qez1~G&#XxtqRhf#P`K;+}7=Szq?*ae<$6aPybn(%zx1E39UXE=<)g95^l zi1TwcT;VvALs3`cWH*4why3|9#(XufXl!)pJP-ym03vrfHO6m;kZJ4}{%e!a@o%|@8T~5dDFcAn8!6=O&Z9HT zVHi3$gz=j>hvw*p*(rpVL=Hs-N5RaY7`6biHY6B8MEGVg%idRm=D(W@C53HJ@`12p zKSo1yNQWJFCXGm*z=&nXJbc4pRUuq@g3M`sKNBN4$qaT~`rY)v8t0E6&dKvE~@D~jAd$3txy>A9P^ zP-?1Sy-Y@=9GO)n}BTg(Y)#%~OU>eyQ(;O7n-mrR|EAP~;IZx1C zXHH{mb0lWjAGfVxq7fH8T>~V8YuuLIyyzAokvGO;8bgee*V$%{f9GN_o+$!g>1p$= znJtOp;{Cprim_channels; j++) - { -- int *scale_table; -+ const int *scale_table; - int scale_sum; - - for (k = 0; k < state->subband_activity[j]; k++) -@@ -761,7 +761,7 @@ static int dca_subsubframe (dca_state_t - int k, l; - int subsubframe = state->current_subsubframe; - -- double *quant_step_table; -+ const double *quant_step_table; - - /* FIXME */ - double subband_samples[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][8]; -@@ -1145,7 +1145,7 @@ static void qmf_32_subbands (dca_state_t - double samples_in[32][8], sample_t *samples_out, - double scale, sample_t bias) - { -- double *prCoeff; -+ const double *prCoeff; - int i, j, k; - double raXin[32]; - -@@ -1236,7 +1236,7 @@ static void lfe_interpolation_fir (int n - */ - - int nDeciFactor, k, J; -- double *prCoeff; -+ const double *prCoeff; - - int NumFIRCoef = 512; /* Number of FIR coefficients */ - int nInterpIndex = 0; /* Index to the interpolated samples */ -Index: libdca-0.0.5/libdca/tables_fir.h -=================================================================== ---- libdca-0.0.5.orig/libdca/tables_fir.h -+++ libdca-0.0.5/libdca/tables_fir.h -@@ -21,7 +21,7 @@ - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - --double fir_32bands_perfect[] = -+static const double fir_32bands_perfect[] = - { - +1.135985195E-010, - -6.022448247E-007, -@@ -537,7 +537,7 @@ double fir_32bands_perfect[] = - -1.135985195E-010 - }; - --double fir_32bands_nonperfect[] = -+static const double fir_32bands_nonperfect[] = - { - -1.390191784E-007, - -1.693738625E-007, -@@ -1053,7 +1053,7 @@ double fir_32bands_nonperfect[] = - +1.390191784E-007 - }; - --double lfe_fir_64[] = -+static const double lfe_fir_64[] = - { - 2.6584343868307770E-004, - 8.1793652498163280E-005, -@@ -1569,7 +1569,7 @@ double lfe_fir_64[] = - 2.6584343868307770E-004 - }; - --double lfe_fir_128[] = -+static const double lfe_fir_128[] = - { - 0.00053168571, - 0.00016358691, -Index: libdca-0.0.5/libdca/tables_huffman.h -=================================================================== ---- libdca-0.0.5.orig/libdca/tables_huffman.h -+++ libdca-0.0.5/libdca/tables_huffman.h -@@ -29,7 +29,7 @@ typedef struct huff_entry_s - - } huff_entry_t; - --huff_entry_t bitalloc_a_12[] = -+static const huff_entry_t bitalloc_a_12[] = - { - { 1, 0, 1}, { 2, 2, 2}, { 3, 6, 3}, { 4, 14, 4}, - { 5, 30, 5}, { 6, 62, 6}, { 8, 255, 7}, { 8, 254, 8}, -@@ -37,7 +37,7 @@ huff_entry_t bitalloc_a_12[] = - { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_12[] = -+static const huff_entry_t bitalloc_b_12[] = - { - { 1, 1, 1}, { 2, 0, 2}, { 3, 2, 3}, { 5, 15, 4}, - { 5, 12, 5}, { 6, 29, 6}, { 7, 57, 7}, { 7, 56, 8}, -@@ -45,7 +45,7 @@ huff_entry_t bitalloc_b_12[] = - { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_12[] = -+static const huff_entry_t bitalloc_c_12[] = - { - { 2, 0, 1}, { 3, 7, 2}, { 3, 5, 3}, { 3, 4, 4}, - { 3, 2, 5}, { 4, 13, 6}, { 4, 12, 7}, { 4, 6, 8}, -@@ -53,7 +53,7 @@ huff_entry_t bitalloc_c_12[] = - { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_12[] = -+static const huff_entry_t bitalloc_d_12[] = - { - { 2, 3, 1}, { 2, 2, 2}, { 2, 0, 3}, { 3, 2, 4}, - { 4, 6, 5}, { 5, 14, 6}, { 6, 30, 7}, { 7, 62, 8}, -@@ -61,7 +61,7 @@ huff_entry_t bitalloc_d_12[] = - { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_12[] = -+static const huff_entry_t bitalloc_e_12[] = - { - { 1, 1, 1}, { 2, 0, 2}, { 3, 2, 3}, { 4, 6, 4}, - { 5, 14, 5}, { 7, 63, 6}, { 7, 61, 7}, { 8, 124, 8}, -@@ -69,7 +69,7 @@ huff_entry_t bitalloc_e_12[] = - { 0, 0, 0} - }; - --huff_entry_t *bitalloc_12[] = -+static const huff_entry_t *const bitalloc_12[] = - { - bitalloc_a_12, - bitalloc_b_12, -@@ -78,7 +78,7 @@ huff_entry_t *bitalloc_12[] = - bitalloc_e_12 - }; - --huff_entry_t scales_a_129[] = -+static const huff_entry_t scales_a_129[] = - { - { 2, 1, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 0, 2}, - { 4, 15, -2}, { 4, 8, 3}, { 4, 3, -3}, { 5, 28, 4}, -@@ -115,7 +115,7 @@ huff_entry_t scales_a_129[] = - {14, 15024,-64}, { 0, 0, 0} - }; - --huff_entry_t scales_b_129[] = -+static const huff_entry_t scales_b_129[] = - { - { 3, 3, 0}, { 3, 2, 1}, { 3, 1, -1}, { 4, 15, 2}, - { 4, 14, -2}, { 4, 12, 3}, { 4, 11, -3}, { 4, 10, 4}, -@@ -152,7 +152,7 @@ huff_entry_t scales_b_129[] = - {15, 3936,-64}, { 0, 0, 0} - }; - --huff_entry_t scales_c_129[] = -+static const huff_entry_t scales_c_129[] = - { - { 3, 4, 0}, { 3, 1, 1}, { 3, 0, -1}, { 4, 13, 2}, - { 4, 12, -2}, { 4, 7, 3}, { 4, 6, -3}, { 5, 31, 4}, -@@ -189,7 +189,7 @@ huff_entry_t scales_c_129[] = - {15, 20944,-64}, { 0, 0, 0} - }; - --huff_entry_t scales_d_129[] = -+static const huff_entry_t scales_d_129[] = - { - { 2, 0, 0}, { 3, 5, 1}, { 3, 4, -1}, { 4, 15, 2}, - { 4, 14, -2}, { 4, 7, 3}, { 4, 6, -3}, { 5, 26, 4}, -@@ -226,7 +226,7 @@ huff_entry_t scales_d_129[] = - {15, 28516,-64}, { 0, 0, 0} - }; - --huff_entry_t scales_e_129[] = -+static const huff_entry_t scales_e_129[] = - { - { 4, 14, 0}, { 4, 11, 1}, { 4, 10, -1}, { 4, 7, 2}, - { 4, 6, -2}, { 4, 3, 3}, { 4, 2, -3}, { 5, 31, 4}, -@@ -263,7 +263,7 @@ huff_entry_t scales_e_129[] = - {16, 57172,-64}, { 0, 0, 0} - }; - --huff_entry_t *scales_129[] = -+static const huff_entry_t *const scales_129[] = - { - scales_a_129, - scales_b_129, -@@ -272,36 +272,36 @@ huff_entry_t *scales_129[] = - scales_e_129 - }; - --huff_entry_t bitalloc_a_3[] = -+static const huff_entry_t bitalloc_a_3[] = - { - { 1, 0, 0}, { 2, 2, 1}, { 2, 3, -1}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_4[] = -+static const huff_entry_t bitalloc_a_4[] = - { - { 1, 0, 0}, { 2, 2, 1}, { 3, 6, 2}, { 3, 7, 3}, - { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_4[] = -+static const huff_entry_t bitalloc_b_4[] = - { - { 2, 2, 0}, { 3, 6, 1}, { 3, 7, 2}, { 1, 0, 3}, - { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_4[] = -+static const huff_entry_t bitalloc_c_4[] = - { - { 3, 6, 0}, { 3, 7, 1}, { 1, 0, 2}, { 2, 2, 3}, - { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_4[] = -+static const huff_entry_t bitalloc_d_4[] = - { - { 2, 0, 0}, { 2, 1, 1}, { 2, 2, 2}, { 2, 3, 3}, - { 0, 0, 0} - }; - --huff_entry_t *tmode[] = -+static const huff_entry_t *const tmode[] = - { - bitalloc_a_4, - bitalloc_b_4, -@@ -309,64 +309,64 @@ huff_entry_t *tmode[] = - bitalloc_d_4 - }; - --huff_entry_t bitalloc_a_5[] = -+static const huff_entry_t bitalloc_a_5[] = - { - { 1, 0, 0}, { 2, 2, 1}, { 3, 6, -1}, { 4, 14, 2}, - { 4, 15, -2}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_5[] = -+static const huff_entry_t bitalloc_b_5[] = - { - { 2, 2, 0}, { 2, 0, 1}, { 2, 1, -1}, { 3, 6, 2}, - { 3, 7, -2}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_5[] = -+static const huff_entry_t bitalloc_c_5[] = - { - { 1, 0, 0}, { 3, 4, 1}, { 3, 5, -1}, { 3, 6, 2}, - { 3, 7, -2}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_7[] = -+static const huff_entry_t bitalloc_a_7[] = - { - { 1, 0, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 4, 2}, - { 4, 14, -2}, { 5, 31, 3}, { 5, 30, -3}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_7[] = -+static const huff_entry_t bitalloc_b_7[] = - { - { 2, 3, 0}, { 2, 1, 1}, { 2, 0, -1}, { 3, 4, 2}, - { 4, 11, -2}, { 5, 21, 3}, { 5, 20, -3}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_7[] = -+static const huff_entry_t bitalloc_c_7[] = - { - { 2, 3, 0}, { 2, 2, 1}, { 2, 1, -1}, { 4, 3, 2}, - { 4, 2, -2}, { 4, 1, 3}, { 4, 0, -3}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_9[] = -+static const huff_entry_t bitalloc_a_9[] = - { - { 1, 0, 0}, { 3, 7, 1}, { 3, 5, -1}, { 4, 13, 2}, - { 4, 9, -2}, { 4, 8, 3}, { 5, 25, -3}, { 6, 49, 4}, - { 6, 48, -4}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_9[] = -+static const huff_entry_t bitalloc_b_9[] = - { - { 2, 2, 0}, { 2, 0, 1}, { 3, 7, -1}, { 3, 3, 2}, - { 3, 2, -2}, { 5, 27, 3}, { 5, 26, -3}, { 5, 25, 4}, - { 5, 24, -4}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_9[] = -+static const huff_entry_t bitalloc_c_9[] = - { - { 2, 2, 0}, { 2, 0, 1}, { 3, 7, -1}, { 3, 6, 2}, - { 3, 2, -2}, { 4, 6, 3}, { 5, 15, -3}, { 6, 29, 4}, - { 6, 28, -4}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_13[] = -+static const huff_entry_t bitalloc_a_13[] = - { - { 1, 0, 0}, { 3, 4, 1}, { 4, 15, -1}, { 4, 13, 2}, - { 4, 12, -2}, { 4, 10, 3}, { 5, 29, -3}, { 5, 22, 4}, -@@ -374,7 +374,7 @@ huff_entry_t bitalloc_a_13[] = - { 7, 112, -6}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_13[] = -+static const huff_entry_t bitalloc_b_13[] = - { - { 2, 0, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 2, 2}, - { 4, 15, -2}, { 4, 9, 3}, { 4, 7, -3}, { 4, 6, 4}, -@@ -382,7 +382,7 @@ huff_entry_t bitalloc_b_13[] = - { 6, 56, -6}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_13[] = -+static const huff_entry_t bitalloc_c_13[] = - { - { 3, 5, 0}, { 3, 4, 1}, { 3, 3, -1}, { 3, 2, 2}, - { 3, 0, -2}, { 4, 15, 3}, { 4, 14, -3}, { 4, 12, 4}, -@@ -390,7 +390,7 @@ huff_entry_t bitalloc_c_13[] = - { 5, 4, -6}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_17[] = -+static const huff_entry_t bitalloc_a_17[] = - { - { 2, 1, 0}, { 3, 7, 1}, { 3, 6, -1}, { 3, 4, 2}, - { 3, 1, -2}, { 4, 11, 3}, { 4, 10, -3}, { 4, 0, 4}, -@@ -399,7 +399,7 @@ huff_entry_t bitalloc_a_17[] = - {12, 340, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_17[] = -+static const huff_entry_t bitalloc_b_17[] = - { - { 2, 0, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 2, 2}, - { 4, 15, -2}, { 4, 9, 3}, { 4, 8, -3}, { 5, 29, 4}, -@@ -408,7 +408,7 @@ huff_entry_t bitalloc_b_17[] = - { 8, 124, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_17[] = -+static const huff_entry_t bitalloc_c_17[] = - { - { 3, 6, 0}, { 3, 4, 1}, { 3, 3, -1}, { 3, 0, 2}, - { 4, 15, -2}, { 4, 11, 3}, { 4, 10, -3}, { 4, 4, 4}, -@@ -417,7 +417,7 @@ huff_entry_t bitalloc_c_17[] = - { 7, 44, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_17[] = -+static const huff_entry_t bitalloc_d_17[] = - { - { 1, 0, 0}, { 3, 7, 1}, { 3, 6, -1}, { 4, 11, 2}, - { 4, 10, -2}, { 5, 19, 3}, { 5, 18, -3}, { 6, 35, 4}, -@@ -426,7 +426,7 @@ huff_entry_t bitalloc_d_17[] = - { 9, 256, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_17[] = -+static const huff_entry_t bitalloc_e_17[] = - { - { 1, 0, 0}, { 3, 5, 1}, { 3, 4, -1}, { 4, 12, 2}, - { 5, 31, -2}, { 5, 28, 3}, { 5, 27, -3}, { 6, 60, 4}, -@@ -435,7 +435,7 @@ huff_entry_t bitalloc_e_17[] = - { 8, 232, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_f_17[] = -+static const huff_entry_t bitalloc_f_17[] = - { - { 3, 6, 0}, { 3, 5, 1}, { 3, 4, -1}, { 3, 2, 2}, - { 3, 1, -2}, { 4, 15, 3}, { 4, 14, -3}, { 4, 6, 4}, -@@ -444,7 +444,7 @@ huff_entry_t bitalloc_f_17[] = - { 8, 4, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_g_17[] = -+static const huff_entry_t bitalloc_g_17[] = - { - { 2, 2, 0}, { 3, 7, 1}, { 3, 6, -1}, { 3, 1, 2}, - { 3, 0, -2}, { 4, 5, 3}, { 4, 4, -3}, { 5, 14, 4}, -@@ -453,7 +453,7 @@ huff_entry_t bitalloc_g_17[] = - { 8, 96, -8}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_25[] = -+static const huff_entry_t bitalloc_a_25[] = - { - { 3, 6, 0}, { 3, 4, 1}, { 3, 3, -1}, { 3, 1, 2}, - { 3, 0, -2}, { 4, 15, 3}, { 4, 14, -3}, { 4, 5, 4}, -@@ -464,7 +464,7 @@ huff_entry_t bitalloc_a_25[] = - {14, 10324,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_25[] = -+static const huff_entry_t bitalloc_b_25[] = - { - { 3, 5, 0}, { 3, 2, 1}, { 3, 1, -1}, { 4, 15, 2}, - { 4, 14, -2}, { 4, 9, 3}, { 4, 8, -3}, { 4, 6, 4}, -@@ -475,7 +475,7 @@ huff_entry_t bitalloc_b_25[] = - { 9, 28,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_25[] = -+static const huff_entry_t bitalloc_c_25[] = - { - { 3, 1, 0}, { 4, 15, 1}, { 4, 14, -1}, { 4, 12, 2}, - { 4, 11, -2}, { 4, 9, 3}, { 4, 8, -3}, { 4, 6, 4}, -@@ -486,7 +486,7 @@ huff_entry_t bitalloc_c_25[] = - { 8, 76,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_25[] = -+static const huff_entry_t bitalloc_d_25[] = - { - { 2, 2, 0}, { 3, 7, 1}, { 3, 6, -1}, { 3, 1, 2}, - { 3, 0, -2}, { 4, 5, 3}, { 4, 4, -3}, { 5, 13, 4}, -@@ -497,7 +497,7 @@ huff_entry_t bitalloc_d_25[] = - {12, 1920,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_25[] = -+static const huff_entry_t bitalloc_e_25[] = - { - { 2, 3, 0}, { 3, 3, 1}, { 3, 2, -1}, { 4, 11, 2}, - { 4, 10, -2}, { 4, 1, 3}, { 4, 0, -3}, { 5, 17, 4}, -@@ -508,7 +508,7 @@ huff_entry_t bitalloc_e_25[] = - { 8, 60,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_f_25[] = -+static const huff_entry_t bitalloc_f_25[] = - { - { 3, 1, 0}, { 3, 0, 1}, { 4, 15, -1}, { 4, 14, 2}, - { 4, 13, -2}, { 4, 11, 3}, { 4, 10, -3}, { 4, 8, 4}, -@@ -519,7 +519,7 @@ huff_entry_t bitalloc_f_25[] = - {10, 804,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_g_25[] = -+static const huff_entry_t bitalloc_g_25[] = - { - { 2, 1, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 0, 2}, - { 4, 15, -2}, { 4, 8, 3}, { 4, 3, -3}, { 5, 28, 4}, -@@ -530,7 +530,7 @@ huff_entry_t bitalloc_g_25[] = - {10, 936,-12}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_33[] = -+static const huff_entry_t bitalloc_a_33[] = - { - { 3, 2, 0}, { 3, 1, 1}, { 3, 0, -1}, { 4, 14, 2}, - { 4, 13, -2}, { 4, 12, 3}, { 4, 11, -3}, { 4, 9, 4}, -@@ -543,7 +543,7 @@ huff_entry_t bitalloc_a_33[] = - {13, 5504,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_33[] = -+static const huff_entry_t bitalloc_b_33[] = - { - { 3, 1, 0}, { 4, 15, 1}, { 4, 14, -1}, { 4, 11, 2}, - { 4, 10, -2}, { 4, 8, 3}, { 4, 7, -3}, { 4, 4, 4}, -@@ -556,7 +556,7 @@ huff_entry_t bitalloc_b_33[] = - {10, 780,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_33[] = -+static const huff_entry_t bitalloc_c_33[] = - { - { 4, 13, 0}, { 4, 11, 1}, { 4, 10, -1}, { 4, 8, 2}, - { 4, 7, -2}, { 4, 4, 3}, { 4, 3, -3}, { 4, 2, 4}, -@@ -569,7 +569,7 @@ huff_entry_t bitalloc_c_33[] = - { 9, 204,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_33[] = -+static const huff_entry_t bitalloc_d_33[] = - { - { 2, 1, 0}, { 3, 6, 1}, { 3, 5, -1}, { 3, 0, 2}, - { 4, 15, -2}, { 4, 8, 3}, { 4, 3, -3}, { 5, 28, 4}, -@@ -582,7 +582,7 @@ huff_entry_t bitalloc_d_33[] = - {14, 15096,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_33[] = -+static const huff_entry_t bitalloc_e_33[] = - { - { 2, 2, 0}, { 3, 2, 1}, { 3, 1, -1}, { 4, 12, 2}, - { 4, 7, -2}, { 4, 0, 3}, { 5, 31, -3}, { 5, 27, 4}, -@@ -595,7 +595,7 @@ huff_entry_t bitalloc_e_33[] = - { 9, 456,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_f_33[] = -+static const huff_entry_t bitalloc_f_33[] = - { - { 4, 13, 0}, { 4, 12, 1}, { 4, 11, -1}, { 4, 9, 2}, - { 4, 8, -2}, { 4, 7, 3}, { 4, 6, -3}, { 4, 4, 4}, -@@ -608,7 +608,7 @@ huff_entry_t bitalloc_f_33[] = - {11, 1828,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_g_33[] = -+static const huff_entry_t bitalloc_g_33[] = - { - { 3, 6, 0}, { 3, 3, 1}, { 3, 2, -1}, { 4, 15, 2}, - { 4, 14, -2}, { 4, 9, 3}, { 4, 8, -3}, { 4, 1, 4}, -@@ -621,7 +621,7 @@ huff_entry_t bitalloc_g_33[] = - {10, 644,-16}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_65[] = -+static const huff_entry_t bitalloc_a_65[] = - { - { 4, 6, 0}, { 4, 5, 1}, { 4, 4, -1}, { 4, 2, 2}, - { 4, 1, -2}, { 4, 0, 3}, { 5, 31, -3}, { 5, 29, 4}, -@@ -642,7 +642,7 @@ huff_entry_t bitalloc_a_65[] = - {16, 40540,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_65[] = -+static const huff_entry_t bitalloc_b_65[] = - { - { 4, 4, 0}, { 4, 2, 1}, { 4, 1, -1}, { 5, 30, 2}, - { 5, 29, -2}, { 5, 26, 3}, { 5, 25, -3}, { 5, 23, 4}, -@@ -663,7 +663,7 @@ huff_entry_t bitalloc_b_65[] = - {12, 2700,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_65[] = -+static const huff_entry_t bitalloc_c_65[] = - { - { 5, 28, 0}, { 5, 25, 1}, { 5, 24, -1}, { 5, 23, 2}, - { 5, 22, -2}, { 5, 19, 3}, { 5, 18, -3}, { 5, 16, 4}, -@@ -684,7 +684,7 @@ huff_entry_t bitalloc_c_65[] = - {11, 1116,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_65[] = -+static const huff_entry_t bitalloc_d_65[] = - { - { 3, 4, 0}, { 3, 1, 1}, { 3, 0, -1}, { 4, 13, 2}, - { 4, 12, -2}, { 4, 7, 3}, { 4, 6, -3}, { 5, 31, 4}, -@@ -705,7 +705,7 @@ huff_entry_t bitalloc_d_65[] = - {15, 28848,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_65[] = -+static const huff_entry_t bitalloc_e_65[] = - { - { 3, 4, 0}, { 3, 0, 1}, { 4, 15, -1}, { 4, 7, 2}, - { 4, 6, -2}, { 5, 29, 3}, { 5, 28, -3}, { 5, 23, 4}, -@@ -726,7 +726,7 @@ huff_entry_t bitalloc_e_65[] = - {10, 812,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_f_65[] = -+static const huff_entry_t bitalloc_f_65[] = - { - { 3, 6, 0}, { 3, 3, 1}, { 3, 2, -1}, { 4, 15, 2}, - { 4, 14, -2}, { 4, 9, 3}, { 4, 8, -3}, { 4, 1, 4}, -@@ -747,7 +747,7 @@ huff_entry_t bitalloc_f_65[] = - {14, 4064,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_g_65[] = -+static const huff_entry_t bitalloc_g_65[] = - { - { 4, 14, 0}, { 4, 11, 1}, { 4, 10, -1}, { 4, 8, 2}, - { 4, 6, -2}, { 4, 4, 3}, { 4, 3, -3}, { 4, 0, 4}, -@@ -768,7 +768,7 @@ huff_entry_t bitalloc_g_65[] = - {11, 268,-32}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_a_129[] = -+static const huff_entry_t bitalloc_a_129[] = - { - { 4, 8, 0}, { 4, 10, 1}, { 4, 9, -1}, { 4, 0, 2}, - { 5, 31, -2}, { 5, 24, 3}, { 5, 23, -3}, { 5, 12, 4}, -@@ -805,7 +805,7 @@ huff_entry_t bitalloc_a_129[] = - {11, 1632,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_b_129[] = -+static const huff_entry_t bitalloc_b_129[] = - { - { 5, 10, 0}, { 5, 7, 1}, { 5, 6, -1}, { 5, 4, 2}, - { 5, 3, -2}, { 5, 0, 3}, { 6, 63, -3}, { 6, 60, 4}, -@@ -842,7 +842,7 @@ huff_entry_t bitalloc_b_129[] = - {14, 10716,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_c_129[] = -+static const huff_entry_t bitalloc_c_129[] = - { - { 6, 58, 0}, { 6, 55, 1}, { 6, 54, -1}, { 6, 52, 2}, - { 6, 51, -2}, { 6, 49, 3}, { 6, 48, -3}, { 6, 46, 4}, -@@ -879,7 +879,7 @@ huff_entry_t bitalloc_c_129[] = - {13, 3676,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_d_129[] = -+static const huff_entry_t bitalloc_d_129[] = - { - { 4, 9, 0}, { 4, 6, 1}, { 4, 5, -1}, { 4, 2, 2}, - { 4, 1, -2}, { 5, 30, 3}, { 5, 29, -3}, { 5, 26, 4}, -@@ -916,7 +916,7 @@ huff_entry_t bitalloc_d_129[] = - {16, 42392,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_e_129[] = -+static const huff_entry_t bitalloc_e_129[] = - { - { 5, 12, 0}, { 5, 11, 1}, { 5, 10, -1}, { 5, 9, 2}, - { 5, 8, -2}, { 5, 7, 3}, { 5, 6, -3}, { 5, 4, 4}, -@@ -953,7 +953,7 @@ huff_entry_t bitalloc_e_129[] = - {16, 41276,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_f_129[] = -+static const huff_entry_t bitalloc_f_129[] = - { - { 6, 56, 0}, { 6, 55, 1}, { 6, 54, -1}, { 6, 52, 2}, - { 6, 51, -2}, { 6, 50, 3}, { 6, 49, -3}, { 6, 48, 4}, -@@ -990,7 +990,7 @@ huff_entry_t bitalloc_f_129[] = - {15, 30252,-64}, { 0, 0, 0} - }; - --huff_entry_t bitalloc_g_129[] = -+static const huff_entry_t bitalloc_g_129[] = - { - { 4, 0, 0}, { 5, 29, 1}, { 5, 28, -1}, { 5, 25, 2}, - { 5, 24, -2}, { 5, 21, 3}, { 5, 20, -3}, { 5, 17, 4}, -@@ -1027,7 +1027,7 @@ huff_entry_t bitalloc_g_129[] = - {13, 7712,-64}, { 0, 0, 0} - }; - --huff_entry_t *bitalloc_select[11][8] = -+static const huff_entry_t *const bitalloc_select[11][8] = - { - { 0 }, - { bitalloc_a_3, 0 }, -@@ -1047,7 +1047,7 @@ huff_entry_t *bitalloc_select[11][8] = - bitalloc_e_129, bitalloc_f_129, bitalloc_g_129, 0 }, - }; - --static int InverseQ( dca_state_t * state, huff_entry_t * huff ) -+static int InverseQ( dca_state_t * state, const huff_entry_t * huff ) - { - int value = 0; - int length = 0, j; -Index: libdca-0.0.5/libdca/tables_quantization.h -=================================================================== ---- libdca-0.0.5.orig/libdca/tables_quantization.h -+++ libdca-0.0.5/libdca/tables_quantization.h -@@ -21,7 +21,7 @@ - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - --int scale_factor_quant6[] = -+static const int scale_factor_quant6[] = - { - 1, 2, 2, 3, 3, 4, 6, 7, - 10, 12, 16, 20, 26, 34, 44, 56, -@@ -33,7 +33,7 @@ int scale_factor_quant6[] = - 1819701, 2344229, 3019952, 3890451, 5011872, 6456542, 8317638, 0 - }; - --int scale_factor_quant7[] = -+static const int scale_factor_quant7[] = - { - 1, 1, 2, 2, 2, 2, 3, 3, - 3, 4, 4, 5, 6, 7, 7, 8, -@@ -54,7 +54,7 @@ int scale_factor_quant7[] = - }; - - /* 20bits unsigned fractional binary codes */ --int lossy_quant[] = -+static const int lossy_quant[] = - { - 0, 6710886, 4194304, 3355443, 2474639, 2097152, 1761608, 1426063, - 796918, 461373, 251658, 146801, 79692, 46137, 27263, 16777, -@@ -62,7 +62,7 @@ int lossy_quant[] = - 84, 42, 21, 0, 0, 0, 0, 0 - }; - --double lossy_quant_d[] = -+static const double lossy_quant_d[] = - { - 0, 1.6, 1.0, 0.8, 0.59, 0.50, 0.42, 0.34, - 0.19, 0.11, 0.06, 0.035, 0.019, 0.011, 0.0065, 0.0040, -@@ -71,7 +71,7 @@ double lossy_quant_d[] = - }; - - /* 20bits unsigned fractional binary codes */ --int lossless_quant[] = -+static const int lossless_quant[] = - { - 0, 4194304, 2097152, 1384120, 1048576, 696254, 524288, 348127, - 262144, 131072, 65431, 33026, 16450, 8208, 4100, 2049, -@@ -79,7 +79,7 @@ int lossless_quant[] = - 4, 2, 1, 0, 0, 0, 0, 0 - }; - --double lossless_quant_d[] = -+static const double lossless_quant_d[] = - { - 0, 1.0, 0.5, 0.33, 0.25, 0.166, 0.125, - 0.083, 0.0625, 0.03125, 0.0156, 7.874E-3, 3.922E-3, 1.957E-3, diff --git a/science/misc/coin/files/Coin-2.4.6-man3.diff b/science/misc/coin/files/Coin-2.4.6-man3.diff deleted file mode 100644 index 640e3959dc..0000000000 --- a/science/misc/coin/files/Coin-2.4.6-man3.diff +++ /dev/null @@ -1,22 +0,0 @@ -diff -uNr Coin-2.4.6.orig/man/man3/Makefile.am Coin-2.4.6/man/man3/Makefile.am ---- Coin-2.4.6.orig/man/man3/Makefile.am 2007-04-10 11:24:07.000000000 +0200 -+++ Coin-2.4.6/man/man3/Makefile.am 2007-04-14 06:27:29.000000000 +0200 -@@ -8,6 +8,7 @@ - "$(sim_ac_doxygen_exe)" docs/coin.doxygen ) - - filelist.txt: SoDB.3 -+ rm -f *_.3 - ls *.3 >filelist.txt - - -diff -uNr Coin-2.4.6.orig/man/man3/Makefile.in Coin-2.4.6/man/man3/Makefile.in ---- Coin-2.4.6.orig/man/man3/Makefile.in 2007-04-10 11:24:07.000000000 +0200 -+++ Coin-2.4.6/man/man3/Makefile.in 2007-04-14 06:27:30.000000000 +0200 -@@ -421,6 +421,7 @@ - "$(sim_ac_doxygen_exe)" docs/coin.doxygen ) - - filelist.txt: SoDB.3 -+ rm -f *_.3 - ls *.3 >filelist.txt - - @BUILD_MANPAGES_TRUE@all-local: filelist.txt diff --git a/science/misc/coin/files/Coin-2.4.6-openal-soname.diff b/science/misc/coin/files/Coin-2.4.6-openal-soname.diff deleted file mode 100644 index e206886d40..0000000000 --- a/science/misc/coin/files/Coin-2.4.6-openal-soname.diff +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr Coin-2.4.6.orig/src/glue/openal_wrapper.c Coin-2.4.6/src/glue/openal_wrapper.c ---- Coin-2.4.6.orig/src/glue/openal_wrapper.c 2007-04-10 11:23:51.000000000 +0200 -+++ Coin-2.4.6/src/glue/openal_wrapper.c 2007-04-14 06:31:09.000000000 +0200 -@@ -107,7 +107,7 @@ - int idx; - const char * possiblelibnames[] = { - NULL, /* is set below */ -- "openal", "openal32", "libopenal.so", -+ @LIBOPENAL_SONAME@, - NULL - }; - diff --git a/science/misc/coin/files/Coin-2.5.0-inttypes.patch b/science/misc/coin/files/Coin-2.5.0-inttypes.patch deleted file mode 100644 index 3e130d7ef4..0000000000 --- a/science/misc/coin/files/Coin-2.5.0-inttypes.patch +++ /dev/null @@ -1,150 +0,0 @@ -diff -Naur Coin-2.5.0.gcc-4.7.0/include/Inventor/system/inttypes.h.in Coin-2.5.0.inttypes/include/Inventor/system/inttypes.h.in ---- Coin-2.5.0.gcc-4.7.0/include/Inventor/system/inttypes.h.in 2007-10-01 03:23:30.000000000 +0200 -+++ Coin-2.5.0.inttypes/include/Inventor/system/inttypes.h.in 2012-01-11 10:21:14.784355818 +0100 -@@ -32,146 +32,12 @@ - int32_t uint32_t - int64_t uint64_t - intptr_t uintptr_t -- -- (The 64-bit types are not guaranteed to be present, check for -- HAVE_INT64_T and HAVE_UINT64_T.) - */ - - /***************************************************************************/ - --/* Block of defines set up by the configure script. Protected with the -- #ifndef wrapper in case config.h was already included -- so we -- don't confuse the compiler to think we redefine already #define'd -- constants. */ --#ifndef COIN_CONFIGURE_BUILD /* (start wrapper) */ -- --/* -- This file was autogenerated by our configuration process -- specifically for this build configuration: --*/ --#undef COIN_CONFIGURE_BUILD --#undef COIN_CONFIGURE_HOST --#undef COIN_CONFIGURE_TARGET --/* -- The bit-type definitions may also be dependent on the compiler, -- compiler version and C library. -- -- So note that the bit-type definitions below might not match on other -- systems. Be extremely careful if you for whatever reason is -- installing this as a cross-platform header file (i.e.: you -- shouldn't). --*/ -- --/* FIXME: isn't it likely that the HAVE_*_H defines below could crash -- with defines in application code in a project using Autoconf -- configure? 20010711 mortene. */ -- --/* The header file. */ --#undef HAVE_INTTYPES_H --/* The header file. */ --#undef HAVE_STDINT_H --/* The header file. */ --#undef HAVE_SYS_TYPES_H --/* The header file. */ --#undef HAVE_STDDEF_H -- -- --/* If the system defines any of the types "on it's own", the -- respective #define will be set below. */ --#undef HAVE_INT8_T --#undef HAVE_UINT8_T --#undef HAVE_INT16_T --#undef HAVE_UINT16_T --#undef HAVE_INT32_T --#undef HAVE_UINT32_T --#undef HAVE_INT64_T --#undef HAVE_UINT64_T --#undef HAVE_INTPTR_T --#undef HAVE_UINTPTR_T -- --/* The type which the configure script found to match the given -- bitwidth. */ --#undef COIN_INT8_T --#undef COIN_UINT8_T --#undef COIN_INT16_T --#undef COIN_UINT16_T --#undef COIN_INT32_T --#undef COIN_UINT32_T --#undef COIN_INT64_T --#undef COIN_UINT64_T --#undef COIN_INTPTR_T --#undef COIN_UINTPTR_T -- --#endif /* (end wrapper) ! COIN_CONFIGURE_BUILD */ -- -- --/* The header files should be listed in the same order as they are in -- the SIM_AC_DEFINE_BYTESIZE_TYPES detection macro. This is the same -- order as the one Autoconf (currently upcoming 2.51) is using for its -- standard includes. 20010711 larsa */ --#ifdef HAVE_INTTYPES_H - #include --#else --#ifdef HAVE_STDINT_H --#include --#endif /* HAVE_STDINT_H */ --#endif --#ifdef HAVE_SYS_TYPES_H - #include --#endif /* HAVE_SYS_TYPES_H */ --#ifdef HAVE_STDDEF_H - #include --#endif /* HAVE_STDDEF_H */ -- -- --#if !defined(HAVE_INT8_T) && defined(COIN_INT8_T) --typedef COIN_INT8_T int8_t; --#define HAVE_INT8_T 1 --#endif /* !HAVE_INT8_T && COIN_INT8_T */ -- --#if !defined(HAVE_UINT8_T) && defined(COIN_UINT8_T) --typedef COIN_UINT8_T uint8_t; --#define HAVE_UINT8_T 1 --#endif /* !HAVE_UINT8_T && COIN_UINT8_T */ -- --#if !defined(HAVE_INT16_T) && defined(COIN_INT16_T) --typedef COIN_INT16_T int16_t; --#define HAVE_INT16_T 1 --#endif /* !HAVE_INT16_T && COIN_INT16_T */ -- --#if !defined(HAVE_UINT16_T) && defined(COIN_UINT16_T) --typedef COIN_UINT16_T uint16_t; --#define HAVE_UINT16_T 1 --#endif /* !HAVE_UINT16_T && COIN_UINT16_T */ -- --#if !defined(HAVE_INT32_T) && defined(COIN_INT32_T) --typedef COIN_INT32_T int32_t; --#define HAVE_INT32_T 1 --#endif /* !HAVE_INT32_T && COIN_INT32_T */ -- --#if !defined(HAVE_UINT32_T) && defined(COIN_UINT32_T) --typedef COIN_UINT32_T uint32_t; --#define HAVE_UINT32_T 1 --#endif /* !HAVE_UINT32_T && COIN_UINT32_T */ -- --#if !defined(HAVE_INT64_T) && defined(COIN_INT64_T) --typedef COIN_INT64_T int64_t; --#define HAVE_INT64_T 1 --#endif /* !HAVE_INT64_T && COIN_INT64_T */ -- --#if !defined(HAVE_UINT64_T) && defined(COIN_UINT64_T) --typedef COIN_UINT64_T uint64_t; --#define HAVE_UINT64_T 1 --#endif /* !HAVE_UINT64_T && COIN_UINT64_T */ -- --#if !defined(HAVE_INTPTR_T) && defined(COIN_INTPTR_T) --typedef COIN_INTPTR_T intptr_t; --#define HAVE_INTPTR_T 1 --#endif /* !HAVE_INTPTR_T && COIN_INTPTR_T */ -- --#if !defined(HAVE_UINTPTR_T) && defined(COIN_UINTPTR_T) --typedef COIN_UINTPTR_T uintptr_t; --#define HAVE_UINTPTR_T 1 --#endif /* !HAVE_UINTPTR_T && COIN_UINTPTR_T */ - - #endif /* !COIN_INTTYPES_H */ diff --git a/science/misc/coin/files/clang-name-lookup.diff b/science/misc/coin/files/clang-name-lookup.diff deleted file mode 100644 index 82a0053816..0000000000 --- a/science/misc/coin/files/clang-name-lookup.diff +++ /dev/null @@ -1,10 +0,0 @@ ---- include/Inventor/SbBasic.h.orig 2012-10-28 16:49:00.000000000 +0100 -+++ include/Inventor/SbBasic.h 2012-10-28 16:50:15.000000000 +0100 -@@ -25,6 +25,7 @@ - \**************************************************************************/ - - #include -+#include - - /* ********************************************************************** */ - /* Trap people trying to use Inventor headers while compiling C source code. diff --git a/science/misc/coin/files/fix_gcc_4_8_1.patch b/science/misc/coin/files/fix_gcc_4_8_1.patch deleted file mode 100644 index 92950f4f92..0000000000 --- a/science/misc/coin/files/fix_gcc_4_8_1.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nuar Coin-3.1.3.orig/src/fonts/freetype.cpp Coin-3.1.3/src/fonts/freetype.cpp ---- Coin-3.1.3.orig/src/fonts/freetype.cpp 2010-03-02 15:20:09.000000000 +0200 -+++ Coin-3.1.3/src/fonts/freetype.cpp 2013-08-25 00:38:16.678172194 +0300 -@@ -32,6 +32,8 @@ - - 20050613 mortene. */ - -+#include -+#include - #include "fonts/freetype.h" - - #ifdef HAVE_CONFIG_H From b4191ce4a3638fff45a03e2bc10789db803562af Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 18:22:08 +0300 Subject: [PATCH 09/80] upower-1.90.7 --- hardware/powermanagement/upower/actions.py | 28 +++---- ...son-Allow-unittest-inspector-to-fail.patch | 31 -------- ...ld-Use-a-newer-libplist-if-available.patch | 28 ------- ...-Add-support-for-iPhone-XR-XS-models.patch | 76 ------------------- .../upower/files/LINGUAS.patch | 14 ++++ .../powermanagement/upower/files/add-tr.patch | 8 -- .../upower/files/create-dir-runtime.patch | 34 --------- .../upower/files/fix-segfault.patch | 24 ------ hardware/powermanagement/upower/pspec.xml | 65 ++++++---------- 9 files changed, 52 insertions(+), 256 deletions(-) delete mode 100644 hardware/powermanagement/upower/files/0.99.18-meson-Allow-unittest-inspector-to-fail.patch delete mode 100644 hardware/powermanagement/upower/files/0001-build-Use-a-newer-libplist-if-available.patch delete mode 100644 hardware/powermanagement/upower/files/0001-linux-Add-support-for-iPhone-XR-XS-models.patch create mode 100644 hardware/powermanagement/upower/files/LINGUAS.patch delete mode 100644 hardware/powermanagement/upower/files/add-tr.patch delete mode 100644 hardware/powermanagement/upower/files/create-dir-runtime.patch delete mode 100644 hardware/powermanagement/upower/files/fix-segfault.patch diff --git a/hardware/powermanagement/upower/actions.py b/hardware/powermanagement/upower/actions.py index d7a0b2527f..64398d36ca 100644 --- a/hardware/powermanagement/upower/actions.py +++ b/hardware/powermanagement/upower/actions.py @@ -2,26 +2,26 @@ # -*- 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 get -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import mesontools +from pisi.actionsapi import mesontools, pisitools + +i = ''.join([ + ' --prefix=/usr', + ' --buildtype=release', + ' -Dintrospection=enabled', + ' -Dsystemdsystemunitdir=no', + ' -Didevice=enabled', + ' -Dpolkit=enabled ' + ]) def setup(): - shelltools.system("sed '/parse_version/d' -i src/linux/integration-test.py") - #pisitools.dosed("configure", "DISABLE_DEPRECATED", deleteLine=True) - mesontools.configure("-Dgtk-doc=false \ - -Dudevrulesdir=/lib/udev/rules.d \ - -Dudevhwdbdir=/etc/udev/hwdb.d \ - -Dintrospection=enabled \ - -Dsystemdsystemunitdir=no") + mesontools.configure(i) + def build(): mesontools.build() def install(): mesontools.install() - pisitools.dodoc("COPYING", "README") + pisitools.dodoc("AUTHORS", "COPYING", "NEWS") diff --git a/hardware/powermanagement/upower/files/0.99.18-meson-Allow-unittest-inspector-to-fail.patch b/hardware/powermanagement/upower/files/0.99.18-meson-Allow-unittest-inspector-to-fail.patch deleted file mode 100644 index feafa87e97..0000000000 --- a/hardware/powermanagement/upower/files/0.99.18-meson-Allow-unittest-inspector-to-fail.patch +++ /dev/null @@ -1,31 +0,0 @@ -Bug: https://bugs.gentoo.org/848525 - -From aa646fa0ca3e164b09949c546796ec50433b748d Mon Sep 17 00:00:00 2001 -From: Benjamin Berg -Date: Tue, 17 May 2022 16:02:49 +0200 -Subject: [PATCH] meson: Allow unittest inspector to fail - -It is only used to make the test output nicer, and it is completely fine -to fail. - -Closes: #187 ---- - src/meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/meson.build b/src/meson.build -index b49d5f0..2e1edd1 100644 ---- a/src/meson.build -+++ b/src/meson.build -@@ -124,7 +124,7 @@ if os_backend == 'linux' and gobject_introspection.found() - - python3 = find_program('python3') - unittest_inspector = find_program('linux/unittest_inspector.py') -- r = run_command(unittest_inspector, files('linux/integration-test.py'), check: true) -+ r = run_command(unittest_inspector, files('linux/integration-test.py'), check: false) - unit_tests = r.stdout().strip().split('\n') - - foreach ut: unit_tests --- -2.35.1 - diff --git a/hardware/powermanagement/upower/files/0001-build-Use-a-newer-libplist-if-available.patch b/hardware/powermanagement/upower/files/0001-build-Use-a-newer-libplist-if-available.patch deleted file mode 100644 index 3e9e3b612d..0000000000 --- a/hardware/powermanagement/upower/files/0001-build-Use-a-newer-libplist-if-available.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 694207d3f08bdd2095f01eee09eb523363800825 Mon Sep 17 00:00:00 2001 -From: Bastien Nocera -Date: Tue, 16 Jun 2020 14:04:25 +0200 -Subject: [PATCH] build: Use a newer libplist if available - ---- - configure.ac | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index a96b794..5f08d91 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -202,8 +202,10 @@ if test x$with_backend = xlinux; then - PKG_CHECK_MODULES(USB, [libusb-1.0 >= 1.0.0]) - AC_ARG_WITH(idevice, AS_HELP_STRING([--without-idevice],[Build without libimobiledevice]), - with_idevice=$withval,with_idevice=yes) -+ LIBPLIST_DEP=libplist -+ PKG_CHECK_EXISTS(libplist-2.0, LIBPLIST_DEP=libplist-2.0) - AS_IF([test "x$with_idevice" != "xno"], -- [PKG_CHECK_MODULES(IDEVICE, libimobiledevice-1.0 >= 0.9.7 libplist >= 0.12, have_idevice=yes, have_idevice=no)], -+ [PKG_CHECK_MODULES(IDEVICE, libimobiledevice-1.0 >= 0.9.7 $LIBPLIST_DEP, have_idevice=yes, have_idevice=no)], - [have_idevice=no]) - AS_IF([test "x$have_idevice" = "xyes"], - [AC_DEFINE(HAVE_IDEVICE, 1, [Define to 1 if iDevice is going to be built])]) --- -2.26.2 - diff --git a/hardware/powermanagement/upower/files/0001-linux-Add-support-for-iPhone-XR-XS-models.patch b/hardware/powermanagement/upower/files/0001-linux-Add-support-for-iPhone-XR-XS-models.patch deleted file mode 100644 index 08654a1c08..0000000000 --- a/hardware/powermanagement/upower/files/0001-linux-Add-support-for-iPhone-XR-XS-models.patch +++ /dev/null @@ -1,76 +0,0 @@ -From 97185bae75b16bea48d532aa5511417e485b1c06 Mon Sep 17 00:00:00 2001 -From: Bastien Nocera -Date: Wed, 17 Jun 2020 10:51:09 +0200 -Subject: [PATCH] linux: Add support for iPhone XR, XS models - -Modifying the udev serial to be acceptable as an hyphened UDID, as the -usbmux stack expects. - -Closes: #114 ---- - src/linux/up-device-idevice.c | 28 ++++++++++++++++++++++++++-- - 1 file changed, 26 insertions(+), 2 deletions(-) - -diff --git a/src/linux/up-device-idevice.c b/src/linux/up-device-idevice.c -index a808269..d2fa0a1 100644 ---- a/src/linux/up-device-idevice.c -+++ b/src/linux/up-device-idevice.c -@@ -203,6 +203,28 @@ out: - return G_SOURCE_CONTINUE; - } - -+static char * -+get_device_uuid (GUdevDevice *native) -+{ -+ const char *uuid; -+ char *retval; -+ -+ uuid = g_udev_device_get_property (native, "ID_SERIAL_SHORT"); -+ if (uuid == NULL) -+ return NULL; -+ -+ if (strlen (uuid) != 24) -+ return g_strdup (uuid); -+ -+ /* new style UDID: add hyphen between first 8 and following 16 digits */ -+ retval = g_malloc0 (24 + 1 + 1); -+ memcpy (&retval[0], &uuid[0], 8); -+ retval[8] = '-'; -+ memcpy (&retval[9], &uuid[8], 16); -+ -+ return retval; -+} -+ - /** - * up_device_idevice_coldplug: - * -@@ -213,7 +235,7 @@ up_device_idevice_coldplug (UpDevice *device) - { - UpDeviceIdevice *idevice = UP_DEVICE_IDEVICE (device); - GUdevDevice *native; -- const gchar *uuid; -+ char *uuid; - const gchar *model; - UpDeviceKind kind; - -@@ -223,7 +245,7 @@ up_device_idevice_coldplug (UpDevice *device) - return FALSE; - - /* Get the UUID */ -- uuid = g_udev_device_get_property (native, "ID_SERIAL_SHORT"); -+ uuid = get_device_uuid (native); - if (uuid == NULL) - return FALSE; - -@@ -253,6 +275,8 @@ up_device_idevice_coldplug (UpDevice *device) - g_source_set_name_by_id (idevice->priv->start_id, - "[upower] up_device_idevice_start_poll_cb (linux)"); - -+ g_free (uuid); -+ - return TRUE; - } - --- -2.26.2 - diff --git a/hardware/powermanagement/upower/files/LINGUAS.patch b/hardware/powermanagement/upower/files/LINGUAS.patch new file mode 100644 index 0000000000..6e6e842cb7 --- /dev/null +++ b/hardware/powermanagement/upower/files/LINGUAS.patch @@ -0,0 +1,14 @@ +diff --git a/po/LINGUAS b/po/LINGUAS +index 0e617f9..5258b29 100644 +--- a/po/LINGUAS ++++ b/po/LINGUAS +@@ -2,6 +2,7 @@ + # + fr + it +-sv ++ka + pl +- ++sv ++tr diff --git a/hardware/powermanagement/upower/files/add-tr.patch b/hardware/powermanagement/upower/files/add-tr.patch deleted file mode 100644 index 31304f39c2..0000000000 --- a/hardware/powermanagement/upower/files/add-tr.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- upower-0.9.4.orig/po/LINGUAS -+++ upower-0.9.4/po/LINGUAS -@@ -3,4 +3,4 @@ - it - sv - pl -- -+tr diff --git a/hardware/powermanagement/upower/files/create-dir-runtime.patch b/hardware/powermanagement/upower/files/create-dir-runtime.patch deleted file mode 100644 index 34340d44ec..0000000000 --- a/hardware/powermanagement/upower/files/create-dir-runtime.patch +++ /dev/null @@ -1,34 +0,0 @@ -From b9cff29978113aefe3ad18521f383f12ab099a34 Mon Sep 17 00:00:00 2001 -From: Cosimo Cecchi -Date: Tue, 25 Feb 2014 09:43:04 +0000 -Subject: Create the history directory at runtime - -In addition to build time - this increases compatibilty with OSTree, -which starts out with an empty /var. - -Signed-off-by: Richard Hughes ---- -diff --git a/src/up-history.c b/src/up-history.c -index f9d0fdf..795b093 100644 ---- a/src/up-history.c -+++ b/src/up-history.c -@@ -414,6 +414,7 @@ up_history_set_directory (UpHistory *history, const gchar *dir) - { - g_free (history->priv->dir); - history->priv->dir = g_strdup (dir); -+ g_mkdir_with_parents (dir, 0755); - } - - /** -@@ -887,7 +888,8 @@ up_history_init (UpHistory *history) - history->priv->data_time_full = g_ptr_array_new_with_free_func ((GDestroyNotify) g_object_unref); - history->priv->data_time_empty = g_ptr_array_new_with_free_func ((GDestroyNotify) g_object_unref); - history->priv->max_data_age = UP_HISTORY_DEFAULT_MAX_DATA_AGE; -- history->priv->dir = g_build_filename (HISTORY_DIR, NULL); -+ -+ up_history_set_directory (history, HISTORY_DIR); - } - - /** --- -cgit v0.9.0.2-2-gbebe diff --git a/hardware/powermanagement/upower/files/fix-segfault.patch b/hardware/powermanagement/upower/files/fix-segfault.patch deleted file mode 100644 index 3e89763207..0000000000 --- a/hardware/powermanagement/upower/files/fix-segfault.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 0d64bbddaa0078ef148d609a3cfad854cf00d7de Mon Sep 17 00:00:00 2001 -From: Martin Pitt -Date: Fri, 08 Nov 2013 13:59:50 +0000 -Subject: lib: Fix segfault on getting property when daemon is not running - -This fixes "upower --version" when the daemon is not running, and thus the -client proxy is NULL. ---- -diff --git a/libupower-glib/up-client.c b/libupower-glib/up-client.c -index 35d7b5d..17fb02d 100644 ---- a/libupower-glib/up-client.c -+++ b/libupower-glib/up-client.c -@@ -322,6 +322,9 @@ up_client_get_property (GObject *object, - UpClient *client; - client = UP_CLIENT (object); - -+ if (client->priv->proxy == NULL) -+ return; -+ - switch (prop_id) { - case PROP_DAEMON_VERSION: - g_value_set_string (value, up_client_glue_get_daemon_version (client->priv->proxy)); --- -cgit v0.9.0.2-2-gbebe diff --git a/hardware/powermanagement/upower/pspec.xml b/hardware/powermanagement/upower/pspec.xml index d0766005f5..8ee39fbdb4 100644 --- a/hardware/powermanagement/upower/pspec.xml +++ b/hardware/powermanagement/upower/pspec.xml @@ -1,76 +1,54 @@ - + upower - http://upower.freedesktop.org + https://upower.freedesktop.org/ PisiLinux Community admins@pisilinux.org - GPLv2+ + GPLv2 library app:console - Power Management Service + Power Management Service. upower provides a daemon, API and command line tools for managing power devices attached to the system. - https://gitlab.freedesktop.org/upower/upower/-/archive/v1.90.4/upower-v1.90.4.tar.bz2 + https://gitlab.freedesktop.org/upower/upower/-/archive/v1.90.7/upower-v1.90.7.tar.bz2 tr.po meson - python3-devel - dbus-devel + gtk-doc + libxslt glib2-devel polkit-devel - dbus-glib-devel libgudev-devel - libusb-devel - libplist-devel libimobiledevice-devel gobject-introspection-devel - docbook-xsl - intltool - gtk-doc - add-tr.patch - - + + LINGUAS.patch upower - dbus glib2 polkit - dbus-glib libgudev - libplist libimobiledevice - - libusb + /etc /lib - /usr/lib - /etc/dbus-1 - /etc/udev/hwdb.d/95-upower-hid.hwdb - /usr/share/man - /usr/share/doc - /etc/UPower /usr/bin - /var/lib/upower - /usr/share/gir-1.0 - /usr/share/dbus-1 /usr/libexec - /usr/share/polkit-1 - /usr/share/locale - /usr/share/dbus-1/interfaces/*.xml - /usr/lib/girepository-1.0/*.typelib - /usr/share/installed-tests/upower/upower-integration.test + /usr/lib + /usr/share + /var @@ -78,22 +56,27 @@ upower-devel Development files for upower - upower - dbus-devel glib2-devel polkit-devel - dbus-glib-devel - libgudev-devel - libplist-devel - libimobiledevice-devel + upower + /usr/libexec/upower /usr/include /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/installed-tests + + 2025-01-30 + 1.90.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2024-04-09 1.90.4 From bad3848c9c507d2dec04c0c3fdd77a65792ac97c Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 19:17:17 +0300 Subject: [PATCH 10/80] ffmpegthumbnailer-2.2.3 --- .../graphics/ffmpegthumbnailer/actions.py | 29 +++++++-------- .../graphics/ffmpegthumbnailer/pspec.xml | 37 +++++++++---------- 2 files changed, 31 insertions(+), 35 deletions(-) diff --git a/multimedia/graphics/ffmpegthumbnailer/actions.py b/multimedia/graphics/ffmpegthumbnailer/actions.py index bd9ff0a48f..1547558926 100644 --- a/multimedia/graphics/ffmpegthumbnailer/actions.py +++ b/multimedia/graphics/ffmpegthumbnailer/actions.py @@ -4,28 +4,25 @@ # 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 cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools -j = "-DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_DIR=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DENABLE_THUMBNAILER=ON \ - -DENABLE_GIO=ON \ - -DENABLE_TESTS=OFF \ - " +j = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DCMAKE_INSTALL_DIR=/usr', + ' -DCMAKE_INSTALL_LIBDIR=lib', + ' -DENABLE_THUMBNAILER=ON', + ' -DENABLE_GIO=ON', + ' -DENABLE_TESTS=OFF', + ' -Bbuild -G Ninja -L ' + ]) def setup(): -# pisitools.dosed("libffmpegthumbnailer/pngwriter.cpp", "#include ", "#include \n#include ") - pisitools.cxxflags.add("-Wno-deprecated-declarations") cmaketools.configure(j) def build(): - cmaketools.make() + mesontools.build() def install(): - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README.md") + mesontools.install() + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/multimedia/graphics/ffmpegthumbnailer/pspec.xml b/multimedia/graphics/ffmpegthumbnailer/pspec.xml index 50d35bf103..5a662ff210 100644 --- a/multimedia/graphics/ffmpegthumbnailer/pspec.xml +++ b/multimedia/graphics/ffmpegthumbnailer/pspec.xml @@ -9,42 +9,34 @@ admins@pisilinux.org GPLv2 - - Lightweight video thumbnailer that can be used by file managers to create thumbnails for video files. - - - FFmpegthumbnailer is a lightweight video thumbnailer that can be used by file managers to create thumbnails for your video files. The thumbnailer uses ffmpeg to decode frames from the video files, so supported videoformats depend on the configuration flags of ffmpeg. - - - https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2 - + The video thumbnailer. + A lightweight video thumbnailer that can be used by file managers to create thumbnails for your video files. + https://github.com/dirkvdb/ffmpegthumbnailer/archive/2.2.3/ffmpegthumbnailer-2.2.3.tar.gz - libjpeg-turbo-devel - ffmpeg-devel - libpng-devel - zlib-devel cmake + ninja + zlib-devel + libpng-devel + ffmpeg-devel + libjpeg-turbo-devel - 198.patch - efb5b618.patch + ffmpegthumbnailer - libjpeg-turbo - ffmpeg libgcc libpng + ffmpeg + libjpeg-turbo /usr/bin /usr/lib /usr/share - /usr/share/man - /usr/share/doc @@ -61,6 +53,13 @@ + + 2025-01-30 + 2.2.3 + Version bump. + fury + uglyside@yandex.ru + 2024-08-10 2.2.2 From d55a1700b1170b6abab219dfb27380ba84831932 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 19:20:40 +0300 Subject: [PATCH 11/80] clean up. --- .../ffmpegthumbnailer/files/198.patch | 320 ------------------ .../ffmpegthumbnailer/files/efb5b618.patch | 22 -- multimedia/graphics/libcaca/pspec.xml | 2 +- 3 files changed, 1 insertion(+), 343 deletions(-) delete mode 100644 multimedia/graphics/ffmpegthumbnailer/files/198.patch delete mode 100644 multimedia/graphics/ffmpegthumbnailer/files/efb5b618.patch diff --git a/multimedia/graphics/ffmpegthumbnailer/files/198.patch b/multimedia/graphics/ffmpegthumbnailer/files/198.patch deleted file mode 100644 index 25a4a5f0c8..0000000000 --- a/multimedia/graphics/ffmpegthumbnailer/files/198.patch +++ /dev/null @@ -1,320 +0,0 @@ -From 67be4abd22b726e277c4b67bfb3abf5a65cfd9b5 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:23:23 +1000 -Subject: [PATCH 1/9] lib/moviedecoder: remove unused variable - ---- - libffmpegthumbnailer/moviedecoder.cpp | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index 290e212..aa44adf 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -570,8 +570,6 @@ bool MovieDecoder::getVideoPacket() - bool framesAvailable = true; - bool frameDecoded = false; - -- int attempts = 0; -- - if (m_pPacket) - { - av_packet_unref(m_pPacket); - -From 66f64668e7a063e790813c7733ca438ab112af89 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:42:07 +1000 -Subject: [PATCH 2/9] lib/moviedecoder: clang-tidy fixes - ---- - libffmpegthumbnailer/moviedecoder.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index aa44adf..79c950b 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -503,12 +503,12 @@ void MovieDecoder::seek(int timeInSeconds) - avcodec_flush_buffers(m_pFormatContext->streams[m_VideoStream]->codec); - - int keyFrameAttempts = 0; -- bool gotFrame = 0; -+ bool gotFrame; - - do - { - int count = 0; -- gotFrame = 0; -+ gotFrame = false; - - while (!gotFrame && count < 20) - { - -From 96c22aa66719846854895afcb72962862d5a4ffd Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 20:39:32 +1000 -Subject: [PATCH 3/9] lib/moviedecoder: remove SilenceLogLevel - -Was unused. ---- - libffmpegthumbnailer/moviedecoder.cpp | 5 ----- - 1 file changed, 5 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index 79c950b..21df096 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -41,11 +41,6 @@ using namespace std; - namespace ffmpegthumbnailer - { - --struct SilenceLogLevel --{ -- SilenceLogLevel() { av_log_set_level(AV_LOG_QUIET); } --}; -- - MovieDecoder::MovieDecoder(AVFormatContext* pavContext) - : m_VideoStream(-1) - , m_pFormatContext(pavContext) - -From 664680f4bfeb89923f485eba270f9e49a8d02bfc Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:25:40 +1000 -Subject: [PATCH 4/9] lib/moviedecoder: remove registration calls - -They're not needed anymore. ---- - libffmpegthumbnailer/moviedecoder.cpp | 4 ---- - 1 file changed, 4 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index 21df096..ac3e5b9 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -65,8 +65,6 @@ MovieDecoder::~MovieDecoder() - - void MovieDecoder::initialize(const string& filename, bool preferEmbeddedMetadata) - { -- av_register_all(); -- avcodec_register_all(); - avformat_network_init(); - - string inputFile = filename == "-" ? "pipe:" : filename; -@@ -386,8 +384,6 @@ void MovieDecoder::initializeFilterGraph(const AVRational& timeBase, const std:: - auto del = [] (AVBufferSinkParams* p) { av_freep(p); }; - std::unique_ptr buffersinkParams(av_buffersink_params_alloc(), del); - -- avfilter_register_all(); -- - m_pFilterGraph = avfilter_graph_alloc(); - assert(m_pFilterGraph); - - -From 1ae42e664e1f3c915d186ae00aa2c8018b998708 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:30:21 +1000 -Subject: [PATCH 5/9] lib/moviedecoder: remove use of AVBufferSinkParams - ---- - libffmpegthumbnailer/moviedecoder.cpp | 9 +-------- - 1 file changed, 1 insertion(+), 8 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index ac3e5b9..dece668 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -379,11 +379,6 @@ std::string MovieDecoder::createScaleString(const std::string& sizeString, bool - - void MovieDecoder::initializeFilterGraph(const AVRational& timeBase, const std::string& size, bool maintainAspectRatio) - { -- static const AVPixelFormat pixelFormats[] = { AV_PIX_FMT_RGB24, AV_PIX_FMT_NONE }; -- -- auto del = [] (AVBufferSinkParams* p) { av_freep(p); }; -- std::unique_ptr buffersinkParams(av_buffersink_params_alloc(), del); -- - m_pFilterGraph = avfilter_graph_alloc(); - assert(m_pFilterGraph); - -@@ -395,10 +390,8 @@ void MovieDecoder::initializeFilterGraph(const AVRational& timeBase, const std:: - - checkRc(avfilter_graph_create_filter(&m_pFilterSource, avfilter_get_by_name("buffer"), "thumb_buffer", ss.str().c_str(), nullptr, m_pFilterGraph), - "Failed to create filter source"); -- buffersinkParams->pixel_fmts = pixelFormats; -- checkRc(avfilter_graph_create_filter(&m_pFilterSink, avfilter_get_by_name("buffersink"), "thumb_buffersink", nullptr, buffersinkParams.get(), m_pFilterGraph), -+ checkRc(avfilter_graph_create_filter(&m_pFilterSink, avfilter_get_by_name("buffersink"), "thumb_buffersink", nullptr, nullptr, m_pFilterGraph), - "Failed to create filter sink"); -- buffersinkParams.release(); - - AVFilterContext* yadifFilter = nullptr; - if (m_pFrame->interlaced_frame != 0) - -From 19675349662a4ea4455d7d13b01cca28ab585762 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:39:58 +1000 -Subject: [PATCH 6/9] lib/moviedecoder: use m_pVideoCodecContext instead of - AVStream::codec - ---- - libffmpegthumbnailer/moviedecoder.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index dece668..0b7a280 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -484,7 +484,7 @@ void MovieDecoder::seek(int timeInSeconds) - } - - checkRc(av_seek_frame(m_pFormatContext, -1, timestamp, 0), "Seeking in video failed"); -- avcodec_flush_buffers(m_pFormatContext->streams[m_VideoStream]->codec); -+ avcodec_flush_buffers(m_pVideoCodecContext); - - int keyFrameAttempts = 0; - bool gotFrame; - -From 4f74f83a009fa2b3f3d546adb24d4f1406910007 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:49:03 +1000 -Subject: [PATCH 7/9] lib/moviedecoder: codec -> codecpar - ---- - libffmpegthumbnailer/moviedecoder.cpp | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index 0b7a280..e58904e 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -145,10 +145,10 @@ int32_t MovieDecoder::findPreferedVideoStream(bool preferEmbeddedMetadata) - for (unsigned int i = 0; i < m_pFormatContext->nb_streams; ++i) - { - AVStream *stream = m_pFormatContext->streams[i]; -- auto ctx = m_pFormatContext->streams[i]->codec; -- if (ctx->codec_type == AVMEDIA_TYPE_VIDEO) -+ auto par = m_pFormatContext->streams[i]->codecpar; -+ if (par->codec_type == AVMEDIA_TYPE_VIDEO) - { -- if (!preferEmbeddedMetadata || !isStillImageCodec(ctx->codec_id)) -+ if (!preferEmbeddedMetadata || !isStillImageCodec(par->codec_id)) - { - videoStreams.push_back(i); - continue; - -From 3ffdd65cbda6ef21d36c96013db1b0f4dc9fc57b Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 17:52:01 +1000 -Subject: [PATCH 8/9] lib/movedecoder: don't rely on avformat to allocate a - context - ---- - libffmpegthumbnailer/moviedecoder.cpp | 20 ++++++++++++++++---- - 1 file changed, 16 insertions(+), 4 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index e58904e..da5f32a 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -90,8 +90,7 @@ void MovieDecoder::destroy() - { - if (m_pVideoCodecContext) - { -- avcodec_close(m_pVideoCodecContext); -- m_pVideoCodecContext = nullptr; -+ avcodec_free_context(&m_pVideoCodecContext); - } - - if ((!m_FormatContextWasGiven) && m_pFormatContext) -@@ -196,8 +195,7 @@ void MovieDecoder::initializeVideo(bool preferEmbeddedMetadata) - } - - m_pVideoStream = m_pFormatContext->streams[m_VideoStream]; -- m_pVideoCodecContext = m_pVideoStream->codec; -- m_pVideoCodec = avcodec_find_decoder(m_pVideoCodecContext->codec_id); -+ m_pVideoCodec = avcodec_find_decoder(m_pVideoStream->codecpar->codec_id); - - if (m_pVideoCodec == nullptr) - { -@@ -207,6 +205,20 @@ void MovieDecoder::initializeVideo(bool preferEmbeddedMetadata) - throw logic_error("Video Codec not found"); - } - -+ m_pVideoCodecContext = avcodec_alloc_context3(m_pVideoCodec); -+ -+ if (m_pVideoCodecContext == nullptr) -+ { -+ destroy(); -+ throw logic_error("Could not allocate video codec context"); -+ } -+ -+ if (avcodec_parameters_to_context(m_pVideoCodecContext, m_pVideoStream->codecpar) < 0) -+ { -+ destroy(); -+ throw logic_error("Could not configure video codec context"); -+ } -+ - m_pVideoCodecContext->workaround_bugs = 1; - - if (avcodec_open2(m_pVideoCodecContext, m_pVideoCodec, nullptr) < 0) - -From f9273852c8e3d7af77d6c8929b1ac6c8a26eca50 Mon Sep 17 00:00:00 2001 -From: Zane van Iperen -Date: Mon, 15 Mar 2021 20:57:45 +1000 -Subject: [PATCH 9/9] lib/moviedecoder: replace avcodec_decode_video2() usage - ---- - libffmpegthumbnailer/moviedecoder.cpp | 31 +++++++++++++++++++++------ - 1 file changed, 24 insertions(+), 7 deletions(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.cpp b/libffmpegthumbnailer/moviedecoder.cpp -index da5f32a..f32577a 100644 ---- a/libffmpegthumbnailer/moviedecoder.cpp -+++ b/libffmpegthumbnailer/moviedecoder.cpp -@@ -548,17 +548,33 @@ bool MovieDecoder::decodeVideoPacket() - return false; - } - -- av_frame_unref(m_pFrame); -- -- int frameFinished; -+ int rc = avcodec_send_packet(m_pVideoCodecContext, m_pPacket); -+ if(rc == AVERROR(EAGAIN)) -+ { -+ rc = 0; -+ } - -- int bytesDecoded = avcodec_decode_video2(m_pVideoCodecContext, m_pFrame, &frameFinished, m_pPacket); -- if (bytesDecoded < 0) -+ if(rc == AVERROR_EOF) -+ { -+ return false; -+ } -+ else if(rc < 0) - { -- throw logic_error("Failed to decode video frame: bytesDecoded < 0"); -+ throw logic_error("Failed to decode video frame: avcodec_send_packet() < 0"); - } - -- return frameFinished > 0; -+ rc = avcodec_receive_frame(m_pVideoCodecContext, m_pFrame); -+ switch(rc) -+ { -+ case 0: -+ return true; -+ -+ case AVERROR(EAGAIN): -+ return false; -+ -+ default: -+ throw logic_error("Failed to decode video frame: avcodec_receive_frame() < 0"); -+ } - } - - bool MovieDecoder::getVideoPacket() -@@ -574,6 +590,7 @@ bool MovieDecoder::getVideoPacket() - - m_pPacket = new AVPacket(); - -+ - while (framesAvailable && !frameDecoded) - { - framesAvailable = av_read_frame(m_pFormatContext, m_pPacket) >= 0; diff --git a/multimedia/graphics/ffmpegthumbnailer/files/efb5b618.patch b/multimedia/graphics/ffmpegthumbnailer/files/efb5b618.patch deleted file mode 100644 index 81e57aab1c..0000000000 --- a/multimedia/graphics/ffmpegthumbnailer/files/efb5b618.patch +++ /dev/null @@ -1,22 +0,0 @@ -From efb5b618f1c1471c1a7900aed3a59d851ea9a210 Mon Sep 17 00:00:00 2001 -From: Paul Jonkins -Date: Wed, 23 Jun 2021 17:53:55 +0200 -Subject: [PATCH] Constify AVCodec - ---- - libffmpegthumbnailer/moviedecoder.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libffmpegthumbnailer/moviedecoder.h b/libffmpegthumbnailer/moviedecoder.h -index 3ef5f12..fb6add2 100644 ---- a/libffmpegthumbnailer/moviedecoder.h -+++ b/libffmpegthumbnailer/moviedecoder.h -@@ -78,7 +78,7 @@ class MovieDecoder - int m_VideoStream; - AVFormatContext* m_pFormatContext; - AVCodecContext* m_pVideoCodecContext; -- AVCodec* m_pVideoCodec; -+ const AVCodec* m_pVideoCodec; - AVFilterGraph* m_pFilterGraph; - AVFilterContext* m_pFilterSource; - AVFilterContext* m_pFilterSink; diff --git a/multimedia/graphics/libcaca/pspec.xml b/multimedia/graphics/libcaca/pspec.xml index 1f3820f96d..c7e004c02f 100644 --- a/multimedia/graphics/libcaca/pspec.xml +++ b/multimedia/graphics/libcaca/pspec.xml @@ -63,7 +63,7 @@ 2025-01-29 0.99_beta20 - Rebuild. + Upstream bump. Pisi Linux Community admin@pisilinux.org From fd428555496e986c97afe2c6f8c6d9bcff0945fc Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:08:46 +0300 Subject: [PATCH 12/80] mbedtls-3.6.2 --- multimedia/misc/mbedtls/actions.py | 33 +++++++++++----------- multimedia/misc/mbedtls/pspec.xml | 28 ++++++++++-------- multimedia/sound/yarock/files/phonon.patch | 12 -------- 3 files changed, 33 insertions(+), 40 deletions(-) delete mode 100644 multimedia/sound/yarock/files/phonon.patch diff --git a/multimedia/misc/mbedtls/actions.py b/multimedia/misc/mbedtls/actions.py index 5cafecb78c..2d93d19601 100644 --- a/multimedia/misc/mbedtls/actions.py +++ b/multimedia/misc/mbedtls/actions.py @@ -1,28 +1,27 @@ -#!/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 cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools + +i = ''.join([ + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -DCMAKE_BUILD_TYPE=Release', + ' -DUSE_SHARED_MBEDTLS_LIBRARY=ON', + ' -DUSE_STATIC_MBEDTLS_LIBRARY=OFF', + ' -DLINK_WITH_PTHREAD=ON', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - #pisitools.dosed('CMakeLists.txt', '"cmake"', '"lib/cmake"') - - shelltools.system("mkdir build") - shelltools.cd("build") - cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \ - -DUSE_SHARED_MBEDTLS_LIBRARY=ON \ - -DMBEDTLS_FATAL_WARNINGS=OFF \ - -DINSTALL_MBEDTLS_HEADERS=ON", sourceDir="..") + cmaketools.configure(i) def build(): - cmaketools.make("-C build") + mesontools.build() def install(): - cmaketools.rawInstall("DESTDIR=%s -C build" % get.installDIR()) + mesontools.install() - pisitools.dodoc("ChangeLog", "LICENSE", "README*") + pisitools.dodoc("LICENSE") diff --git a/multimedia/misc/mbedtls/pspec.xml b/multimedia/misc/mbedtls/pspec.xml index 152b9fdb2d..55c232727a 100644 --- a/multimedia/misc/mbedtls/pspec.xml +++ b/multimedia/misc/mbedtls/pspec.xml @@ -1,28 +1,26 @@ - + mbedtls - https://github.com/ARMmbed/mbedtls + https://github.com/Mbed-TLS/mbedtls PisiLinux Community admins@pisilinux.org - Apache + Apache-2.0 library - Cryptographic library for embedded systems - Gömülü sistemler için kriptografik kitaplık - https://github.com/ARMmbed/mbedtls/archive/refs/tags/v2.27.0.tar.gz + Cryptographic library for embedded systems. + A C library that implements cryptographic primitives, X.509 certificate manipulation and the SSL/TLS and DTLS protocols. + https://github.com/Mbed-TLS/mbedtls/releases/download/mbedtls-3.6.2/mbedtls-3.6.2.tar.bz2 cmake + ninja python3 - - --> @@ -30,7 +28,7 @@ /usr/bin /usr/lib - /usr/share/doc + /usr/share @@ -43,10 +41,18 @@ /usr/include /usr/lib/cmake + /usr/lib/pkgconfig + + 2025-01-30 + 3.6.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + 2021-11-09 2.27.0 diff --git a/multimedia/sound/yarock/files/phonon.patch b/multimedia/sound/yarock/files/phonon.patch deleted file mode 100644 index 839cfb9eda..0000000000 --- a/multimedia/sound/yarock/files/phonon.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN Yarock_1.1.5_source-orig/src/core/player/phonon/CMakeLists.txt Yarock_1.1.5_source/src/core/player/phonon/CMakeLists.txt ---- Yarock_1.1.5_source-orig/src/core/player/phonon/CMakeLists.txt 2015-05-21 00:42:46.627611703 +0300 -+++ Yarock_1.1.5_source/src/core/player/phonon/CMakeLists.txt 2015-05-21 00:43:25.852867232 +0300 -@@ -34,7 +34,7 @@ - - - if (ENABLE_QT5) -- INCLUDE_DIRECTORIES( ${PHONON_INCLUDE_DIR}/phonon4qt5 ) -+ INCLUDE_DIRECTORIES( /usr/include/phonon4qt5 ) - else (ENABLE_QT5) - INCLUDE_DIRECTORIES( ${PHONON_INCLUDES} ) - endif (ENABLE_QT5) From 22c92274046487d02dd97b60c56ad54a304b55ab Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:17:36 +0300 Subject: [PATCH 13/80] botan-3.6.1 --- util/crypt/botan/actions.py | 42 ++++++++++++++----------------- util/crypt/botan/pspec.xml | 49 ++++++++++++++++++++----------------- 2 files changed, 45 insertions(+), 46 deletions(-) diff --git a/util/crypt/botan/actions.py b/util/crypt/botan/actions.py index 53f679a233..53caa6781f 100644 --- a/util/crypt/botan/actions.py +++ b/util/crypt/botan/actions.py @@ -2,36 +2,30 @@ # -*- 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 pythonmodules -from pisi.actionsapi import get +from pisi.actionsapi import pythonmodules, mesontools, pisitools + +i = ''.join([ + ' --prefix=/usr', + ' --with-{boost,bzip2,lzma,sqlite3,zlib}', + ' --with-python-versions=3.12', + ' --with-os-feature=getrandom', + ' --disable-static-library', + ' --build-tool=ninja', + ' ', + ]) def setup(): - shelltools.makedirs("build") - shelltools.cd("build") + pythonmodules.run("configure.py %s" % i, pyVer = "3") - shelltools.system("../configure.py --prefix=/usr \ - --with-bzip \ - --with-lzma \ - --with-zlib \ - --with-boost \ - --with-sqlite3 \ - --with-os-feature=getrandom") - def build(): - shelltools.cd("build") - autotools.make() + mesontools.build("-C .") def check(): - shelltools.cd("build") - autotools.make("check") - #pass + mesontools.build("-C . check") def install(): - shelltools.cd("build") - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - #pisitools.dodoc("COPYING*", "README") + mesontools.install("-C .") + + pisitools.dodoc("license.txt", "doc/authors.txt", "doc/credits.rst") diff --git a/util/crypt/botan/pspec.xml b/util/crypt/botan/pspec.xml index 8019d4c338..666cd09619 100644 --- a/util/crypt/botan/pspec.xml +++ b/util/crypt/botan/pspec.xml @@ -8,58 +8,63 @@ Kamil Atlı suvari@pisilinux.org - BSD + BSD-2-Clause library botan - Cryptography Toolkit - Crypto library written in C++ - https://botan.randombit.net/releases/Botan-3.2.0.tar.xz + A C++ cryptography library. + Crypto and TLS for Modern C++. + + https://botan.randombit.net/releases/Botan-3.6.1.tar.xz + bzip2 + ninja + docutils xz-devel zlib-devel boost-devel sqlite-devel python3-devel - + + + botan - - xz - zlib - bzip2 - boost - libgcc - sqlite - python3 - /usr/bin - /usr/share/doc - /usr/lib/python2.7/site-packages - /usr/lib/python3*/site-packages - /usr/lib/libbotan* + /usr/lib + /usr/share botan-devel - Development files for botan + runtime.header + xz-devel + zlib-devel + boost-devel + sqlite-devel botan /usr/include - /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/pkgconfig + + 2025-01-30 + 3.6.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-11-01 3.2.0 From 63cb913fc99d02692f000d59df2f07da79068d36 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:18:24 +0300 Subject: [PATCH 14/80] botan. --- util/crypt/botan/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crypt/botan/actions.py b/util/crypt/botan/actions.py index 53caa6781f..16239fa0aa 100644 --- a/util/crypt/botan/actions.py +++ b/util/crypt/botan/actions.py @@ -9,7 +9,7 @@ from pisi.actionsapi import pythonmodules, mesontools, pisitools i = ''.join([ ' --prefix=/usr', ' --with-{boost,bzip2,lzma,sqlite3,zlib}', - ' --with-python-versions=3.12', + ' --with-python-versions=3.11', ' --with-os-feature=getrandom', ' --disable-static-library', ' --build-tool=ninja', From e59bab086aae64ddbe455d2ede8824d3afdbeb4d Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:30:35 +0300 Subject: [PATCH 15/80] botan. --- util/crypt/botan/pspec.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/util/crypt/botan/pspec.xml b/util/crypt/botan/pspec.xml index 666cd09619..4d38d17456 100644 --- a/util/crypt/botan/pspec.xml +++ b/util/crypt/botan/pspec.xml @@ -25,6 +25,7 @@ boost-devel sqlite-devel python3-devel + python3-docutils From 5329c12c8276f451d84538b8cedc0b0969c0759d Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:36:47 +0300 Subject: [PATCH 16/80] botan. --- util/crypt/botan/pspec.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/util/crypt/botan/pspec.xml b/util/crypt/botan/pspec.xml index 4d38d17456..f94a4e2faa 100644 --- a/util/crypt/botan/pspec.xml +++ b/util/crypt/botan/pspec.xml @@ -34,6 +34,15 @@ botan + + xz + zlib + bzip2 + boost + libgcc + sqlite + python3 + /usr/bin /usr/lib From 0a87c8da896d311ae2fc6f0c8735a4a1ad2907d0 Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:41:37 +0300 Subject: [PATCH 17/80] botan. --- util/crypt/botan/actions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/util/crypt/botan/actions.py b/util/crypt/botan/actions.py index 16239fa0aa..968e35bd45 100644 --- a/util/crypt/botan/actions.py +++ b/util/crypt/botan/actions.py @@ -27,5 +27,3 @@ def check(): def install(): mesontools.install("-C .") - - pisitools.dodoc("license.txt", "doc/authors.txt", "doc/credits.rst") From e2af691b356bfc839c21983115ad8479f72f2ecc Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 21:52:52 +0300 Subject: [PATCH 18/80] botan. --- util/crypt/botan/actions.py | 2 +- util/crypt/botan/pspec.xml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/util/crypt/botan/actions.py b/util/crypt/botan/actions.py index 968e35bd45..aa64227732 100644 --- a/util/crypt/botan/actions.py +++ b/util/crypt/botan/actions.py @@ -4,7 +4,7 @@ # 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 pythonmodules, mesontools, pisitools +from pisi.actionsapi import pythonmodules, mesontools i = ''.join([ ' --prefix=/usr', diff --git a/util/crypt/botan/pspec.xml b/util/crypt/botan/pspec.xml index f94a4e2faa..6cb5680f2d 100644 --- a/util/crypt/botan/pspec.xml +++ b/util/crypt/botan/pspec.xml @@ -52,7 +52,6 @@ botan-devel - runtime.header xz-devel zlib-devel From 0dc514eba4eeaadebfbec3b73d3af186e95fccab Mon Sep 17 00:00:00 2001 From: uglyside Date: Thu, 30 Jan 2025 22:08:58 +0300 Subject: [PATCH 19/80] detach gkrellm daemon. --- hardware/info/gkrellm/comar/service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hardware/info/gkrellm/comar/service.py b/hardware/info/gkrellm/comar/service.py index f2a90d06db..32d572f66b 100644 --- a/hardware/info/gkrellm/comar/service.py +++ b/hardware/info/gkrellm/comar/service.py @@ -13,6 +13,7 @@ def start(): startService(command="/usr/bin/gkrellmd", pidfile=PIDFILE, makepid=True, + detach=True, donotify=True) @synchronized From e1272972380f091596546e0d4253feb6692a55e3 Mon Sep 17 00:00:00 2001 From: uglyside Date: Fri, 31 Jan 2025 11:35:40 +0300 Subject: [PATCH 20/80] cabextract-1.11 --- util/archive/cabextract/actions.py | 8 ++++---- util/archive/cabextract/pspec.xml | 17 ++++++++++++----- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/util/archive/cabextract/actions.py b/util/archive/cabextract/actions.py index 6f22e1f07a..197a85852d 100644 --- a/util/archive/cabextract/actions.py +++ b/util/archive/cabextract/actions.py @@ -2,13 +2,12 @@ # -*- 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 get +from pisi.actionsapi import autotools, pisitools, get def setup(): - autotools.configure() + autotools.configure("--prefix=/usr") def build(): autotools.make() @@ -16,3 +15,4 @@ def build(): def install(): autotools.make("DESTDIR=%s install" % get.installDIR()) + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/util/archive/cabextract/pspec.xml b/util/archive/cabextract/pspec.xml index eeac9471b0..62bb06b2f8 100644 --- a/util/archive/cabextract/pspec.xml +++ b/util/archive/cabextract/pspec.xml @@ -1,5 +1,5 @@ - + cabextract @@ -8,22 +8,29 @@ PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3 app:console - A program to extract from Microsoft Cabinet files + A program to extract from Microsoft Cabinet files. cabextract is a program to extract files from Microsoft Cabinet files. - http://www.cabextract.org.uk/cabextract-1.9.1.tar.gz + https://www.cabextract.org.uk/cabextract-1.11.tar.gz cabextract /usr/bin - /usr/share/man + /usr/share + + 2025-01-30 + 1.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-02-19 1.9.1 From 456da775c350bade3e1c2cedeee68b2c5ab125c3 Mon Sep 17 00:00:00 2001 From: uglyside Date: Fri, 31 Jan 2025 11:36:03 +0300 Subject: [PATCH 21/80] cairo-dock-3.5.1 --- util/dock/cairo-dock-plugins/actions.py | 27 ++-- ...lugins-3.4.1-0004-weather-update-URL.patch | 52 ------- ...airo-dock-plugins-3.4.1-gcc10-extern.patch | 13 -- ...ro-dock-plugins-3.4.1-time_h-confict.patch | 137 ------------------ util/dock/cairo-dock-plugins/pspec.xml | 34 +++-- util/dock/cairo-dock/actions.py | 21 ++- util/dock/cairo-dock/pspec.xml | 16 +- 7 files changed, 56 insertions(+), 244 deletions(-) delete mode 100644 util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-0004-weather-update-URL.patch delete mode 100644 util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-gcc10-extern.patch delete mode 100644 util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-time_h-confict.patch diff --git a/util/dock/cairo-dock-plugins/actions.py b/util/dock/cairo-dock-plugins/actions.py index 1d78219fad..a7e02f2da1 100644 --- a/util/dock/cairo-dock-plugins/actions.py +++ b/util/dock/cairo-dock-plugins/actions.py @@ -2,28 +2,21 @@ # -*- 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 cmaketools, mesontools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get -from pisi.actionsapi import cmaketools -from pisi.actionsapi import shelltools - +i = ''.join([ + ' -DCMAKE_BUILD_TYPE=RelWithDebInfo', + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - pisitools.dosed("Dbus/interfaces/python/PythonInstall.cmake.in", "\@ROOT_PREFIX\@", get.installDIR()) - pisitools.dosed("Dbus/interfaces/bash/BashInstall.cmake.in", "\@ROOT_PREFIX\@", get.installDIR()) - cmaketools.configure() - if not shelltools.isDirectory("weblets/src/webkit"): - shelltools.makedirs("weblets/src/webkit") - shelltools.sym("%s/weblets/src/webkit" % get.curDIR(), "weblets/src/webkit/webkit") - for file in shelltools.ls("/usr/include/webkit-1.0/webkit"): - shelltools.sym("/usr/include/webkit-1.0/webkit/%s" % file, "weblets/src/webkit/%s" % file) - pisitools.dosed("weblets/src/applet-struct.h", "", '"webkit/webkit.h"') + cmaketools.configure(i) def build(): - cmaketools.make() + mesontools.build() def install(): - cmaketools.install() \ No newline at end of file + mesontools.install() diff --git a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-0004-weather-update-URL.patch b/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-0004-weather-update-URL.patch deleted file mode 100644 index 035143fd3d..0000000000 --- a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-0004-weather-update-URL.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 402a2d7bb657be4ad4072f07612e008e846d5e97 Mon Sep 17 00:00:00 2001 -From: Fabounet -Date: Sun, 22 May 2016 21:13:21 +0200 -Subject: [PATCH] [1581725] Updated the weather URL we retrieve data from - ---- - weather/src/applet-config.c | 2 +- - weather/src/applet-read-data.c | 3 --- - weather/src/applet-struct.h | 3 +++ - 3 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/weather/src/applet-config.c b/weather/src/applet-config.c -index c9a33c2..0a27a8a 100755 ---- a/weather/src/applet-config.c -+++ b/weather/src/applet-config.c -@@ -174,7 +174,7 @@ static void _on_got_location_data (const gchar *cLocationData, GldiModuleInstanc - gldi_task_discard (myData.pGetLocationTask); - myData.pGetLocationTask = NULL; - } --#define CD_WEATHER_BASE_URL "http://xml.weather.com" -+ - static void _cd_weather_search_for_location (GtkEntry *pEntry, GldiModuleInstance *myApplet) - { - const gchar *cLocationName = gtk_entry_get_text (pEntry); -diff --git a/weather/src/applet-read-data.c b/weather/src/applet-read-data.c -index 0bbdce7..8ca8d21 100755 ---- a/weather/src/applet-read-data.c -+++ b/weather/src/applet-read-data.c -@@ -30,9 +30,6 @@ - #include "applet-load-icons.h" - #include "applet-read-data.h" - --#define CD_WEATHER_BASE_URL "http://xml.weather.com" -- -- - static xmlDocPtr _cd_weather_open_xml_buffer (const gchar *cData, xmlNodePtr *root_node, const gchar *cRootNodeName, GError **erreur) - { - if (cData == NULL || *cData == '\0') -diff --git a/weather/src/applet-struct.h b/weather/src/applet-struct.h -index e96191e..02ba3d0 100755 ---- a/weather/src/applet-struct.h -+++ b/weather/src/applet-struct.h -@@ -29,6 +29,9 @@ - - #define WEATHER_DEFAULT_NAME "weather" - -+#define CD_WEATHER_BASE_URL "http://wxdata.weather.com/wxdata" -+ -+ - #define _display(cValue) ((cValue) == NULL || *((gchar*)cValue) == 'N' ? "?" : (const gchar*)(cValue)) - - struct _AppletConfig { diff --git a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-gcc10-extern.patch b/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-gcc10-extern.patch deleted file mode 100644 index b541dd54c9..0000000000 --- a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-gcc10-extern.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- cairo-dock-plugins-3.4.1/dock-rendering/src/rendering-config.c.gcc10 2015-02-20 01:13:47.000000000 +0900 -+++ cairo-dock-plugins-3.4.1/dock-rendering/src/rendering-config.c 2020-01-23 18:10:47.301788756 +0900 -@@ -25,8 +25,8 @@ - #include "rendering-config.h" - #include "rendering-rainbow.h" - --extern int iVanishingPointY;double my_fRainbowColor[4]; --double my_fRainbowLineColor[4]; -+extern int iVanishingPointY;extern double my_fRainbowColor[4]; -+extern double my_fRainbowLineColor[4]; - - extern double my_fInclinationOnHorizon; - extern double my_fForegroundRatio; \ No newline at end of file diff --git a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-time_h-confict.patch b/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-time_h-confict.patch deleted file mode 100644 index 6cf930e911..0000000000 --- a/util/dock/cairo-dock-plugins/files/cairo-dock-plugins-3.4.1-time_h-confict.patch +++ /dev/null @@ -1,137 +0,0 @@ ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-config.c.glibc 2016-12-11 16:10:41.656840262 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-config.c 2016-12-11 16:23:31.875117800 +0900 -@@ -17,6 +17,7 @@ - * along with this program. If not, see . - */ - -+#include "applet-time_h-struct.h" - #include - - #include "applet-struct.h" ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-init.c.glibc 2016-12-11 16:10:41.657840257 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-init.c 2016-12-11 16:22:24.465443591 +0900 -@@ -17,6 +17,7 @@ - * along with this program. If not, see . - */ - -+#include "applet-time_h-struct.h" - #include "stdlib.h" - - #include "applet-struct.h" ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-notifications.c.glibc 2015-02-20 01:13:47.000000000 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-notifications.c 2016-12-11 16:24:08.991938415 +0900 -@@ -17,6 +17,7 @@ - * along with this program. If not, see . - */ - -+#include "applet-time_h-struct.h" - #include - #include - -@@ -66,4 +67,4 @@ - - - return GLDI_NOTIFICATION_LET_PASS; --} -\ ファイル末尾に改行がありません -+} ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-sound.c.glibc 2015-02-20 01:13:47.000000000 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-sound.c 2016-12-11 16:23:55.137005376 +0900 -@@ -19,6 +19,7 @@ - * along with this program. If not, see . - */ - -+#include "applet-time_h-struct.h" - #include - #ifndef __FreeBSD__ - #include ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-struct.h.glibc 2016-12-11 16:10:41.657840257 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-struct.h 2016-12-11 16:22:59.589273837 +0900 -@@ -21,6 +21,7 @@ - #ifndef __CD_APPLET_STRUCT__ - #define __CD_APPLET_STRUCT__ - -+#include "applet-time_h-struct.h" - #include - #include - #define _STRUCT_TIMEVAL ---- cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-time_h-struct.h.glibc 2016-12-11 16:11:55.464483550 +0900 -+++ cairo-dock-plugins-3.4.1/Sound-Effects/src/applet-time_h-struct.h 2016-12-11 16:19:52.003180440 +0900 -@@ -0,0 +1,27 @@ -+/** -+* This file is a part of the Cairo-Dock project -+* -+* Copyright : (C) see the 'copyright' file. -+* E-mail : see the 'copyright' file. -+* -+* This program is free software; you can redistribute it and/or -+* modify it under the terms of the GNU General Public License -+* as published by the Free Software Foundation; either version 3 -+* of the License, or (at your option) any later version. -+* -+* This program is distributed in the hope that it will be useful, -+* but WITHOUT ANY WARRANTY; without even the implied warranty of -+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+* GNU General Public License for more details. -+* You should have received a copy of the GNU General Public License -+* along with this program. If not, see . -+*/ -+ -+#ifndef __CD_APPLET_TIME_H_STRUCT__ -+#define __CD_APPLET_TIME_H_STRUCT__ -+ -+#define _POSIX_C_SOURCE 200809L -+#include -+ -+#endif -+ ---- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-generic.c.glibc 2015-02-20 01:13:47.000000000 +0900 -+++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-generic.c 2016-12-11 16:20:44.168928323 +0900 -@@ -20,6 +20,7 @@ - * along with this program. If not, see . - */ - -+#include "applet-time_h-struct.h" - #include - - #include "applet-struct.h" ---- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-struct.h.glibc 2015-02-20 01:13:47.000000000 +0900 -+++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-struct.h 2016-12-11 16:19:47.713201174 +0900 -@@ -20,6 +20,7 @@ - #ifndef __CD_APPLET_STRUCT__ - #define __CD_APPLET_STRUCT__ - -+#include "applet-time_h-struct.h" - #include - #include - #define _STRUCT_TIMEVAL ---- cairo-dock-plugins-3.4.1/alsaMixer/src/applet-time_h-struct.h.glibc 2016-12-11 16:11:55.464483550 +0900 -+++ cairo-dock-plugins-3.4.1/alsaMixer/src/applet-time_h-struct.h 2016-12-11 16:19:52.003180440 +0900 -@@ -0,0 +1,27 @@ -+/** -+* This file is a part of the Cairo-Dock project -+* -+* Copyright : (C) see the 'copyright' file. -+* E-mail : see the 'copyright' file. -+* -+* This program is free software; you can redistribute it and/or -+* modify it under the terms of the GNU General Public License -+* as published by the Free Software Foundation; either version 3 -+* of the License, or (at your option) any later version. -+* -+* This program is distributed in the hope that it will be useful, -+* but WITHOUT ANY WARRANTY; without even the implied warranty of -+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+* GNU General Public License for more details. -+* You should have received a copy of the GNU General Public License -+* along with this program. If not, see . -+*/ -+ -+#ifndef __CD_APPLET_TIME_H_STRUCT__ -+#define __CD_APPLET_TIME_H_STRUCT__ -+ -+#define _POSIX_C_SOURCE 200809L -+#include -+ -+#endif -+ diff --git a/util/dock/cairo-dock-plugins/pspec.xml b/util/dock/cairo-dock-plugins/pspec.xml index b498c0dbfc..c79924c762 100644 --- a/util/dock/cairo-dock-plugins/pspec.xml +++ b/util/dock/cairo-dock-plugins/pspec.xml @@ -3,19 +3,20 @@ cairo-dock-plugins - http://glx-dock.org/ + https://github.com/Cairo-Dock/cairo-dock-plug-ins PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3 library cairo-dock-plugins Plugins of Cairo-Dock project. More options and plugins for glx-dock to enhance functionality. - https://launchpad.net/cairo-dock-plug-ins/3.4/3.4.1/+download/cairo-dock-plug-ins-3.4.1.tar.gz + https://github.com/Cairo-Dock/cairo-dock-plug-ins/archive/3.5.1/cairo-dock-plug-ins-3.5.1.tar.gz cmake + ninja vte-devel ruby-devel gtk3-devel @@ -45,20 +46,19 @@ libXxf86vm-devel lm_sensors-devel libdbusmenu-gtk3 - webkit2gtk-devel libdbusmenu-devel libxklavier-devel libXinerama-devel gnome-menus-devel - libindicator-devel + python-setuptools + python3-setuptools libXcomposite-devel pulseaudio-libs-devel - cairo-dock-devel + ayatana-libappindicator-devel + cairo-dock-devel - cairo-dock-plugins-3.4.1-gcc10-extern.patch - cairo-dock-plugins-3.4.1-time_h-confict.patch - cairo-dock-plugins-3.4.1-0004-weather-update-URL.patch + @@ -88,15 +88,14 @@ libXxf86vm libxklavier gnome-menus - libindicator - libdbusmenu-gtk pulseaudio-libs + libdbusmenu-gtk libdbusmenu-glib libdbusmenu-gtk3 + ayatana-libappindicator /usr/share/cairo-dock - /usr/share/vala/vapi/ /usr/lib/libCDApplet.so* /usr/lib/ruby /usr/lib/python3*/site-packages @@ -108,17 +107,24 @@ cairo-dock-plugins-devel - cairo-dock-plugins için geliştirme dosyaları glib2-devel cairo-dock-plugins - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/vala + + 2025-01-31 + 3.5.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2023-10-04 3.4.1 diff --git a/util/dock/cairo-dock/actions.py b/util/dock/cairo-dock/actions.py index 848bdb3dc7..8905e815a7 100644 --- a/util/dock/cairo-dock/actions.py +++ b/util/dock/cairo-dock/actions.py @@ -2,17 +2,24 @@ # -*- 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 pisitools -from pisi.actionsapi import cmaketools +from pisi.actionsapi import cmaketools, mesontools, pisitools + +i = ''.join([ + ' -DCMAKE_BUILD_TYPE=RelWithDebInfo', + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -Denable-desktop-manager=OFF', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - cmaketools.configure() + cmaketools.configure(i) def build(): - cmaketools.make() + mesontools.build() def install(): - cmaketools.install() - pisitools.dodoc("ChangeLog", "INSTALL", "LICENSE", "LGPL-2", "copyright") + mesontools.install() + + pisitools.dodoc("LICENSE", "LGPL-2", "copyright") diff --git a/util/dock/cairo-dock/pspec.xml b/util/dock/cairo-dock/pspec.xml index d7946b2823..13d841a621 100644 --- a/util/dock/cairo-dock/pspec.xml +++ b/util/dock/cairo-dock/pspec.xml @@ -3,7 +3,7 @@ cairo-dock - https://glx-dock.org/ + https://github.com/Cairo-Dock/cairo-dock-core Ali Cengiz Kurt alicengizkurt@gmail.com @@ -14,9 +14,11 @@ app:gui A pretty, light and convenient interface to your desktop, able to replace advantageously your system panel. Cairo-Dock is a pretty, light and convenient interface to your desktop, able to replace advantageously your system panel! It features multi-docks, taskbar, launchers and a lot of useful applets. - https://launchpad.net/cairo-dock-core/3.4/3.4.1/+download/cairo-dock-3.4.1.tar.gz + https://github.com/Cairo-Dock/cairo-dock-core/archive/3.5.1/cairo-dock-core-3.5.1.tar.gz cmake + ninja + python3 gtk3-devel curl-devel cairo-devel @@ -69,7 +71,6 @@ /usr/share/cairo-dock /usr/share/applications /usr/share/pixmaps - /etc /usr/share/locale /usr/share/man /usr/share/doc @@ -100,11 +101,18 @@ /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + + 2025-01-31 + 3.5.1 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + 2022-05-31 3.4.1 From 13620a380fd624cd4c5436871dc884bfebbac65b Mon Sep 17 00:00:00 2001 From: uglyside Date: Fri, 31 Jan 2025 11:40:06 +0300 Subject: [PATCH 22/80] cairo-dock-plugins. --- util/dock/cairo-dock-plugins/actions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util/dock/cairo-dock-plugins/actions.py b/util/dock/cairo-dock-plugins/actions.py index a7e02f2da1..d161deb99e 100644 --- a/util/dock/cairo-dock-plugins/actions.py +++ b/util/dock/cairo-dock-plugins/actions.py @@ -4,7 +4,7 @@ # 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 cmaketools, mesontools +from pisi.actionsapi import cmaketools, mesontools, pisitools i = ''.join([ ' -DCMAKE_BUILD_TYPE=RelWithDebInfo', @@ -20,3 +20,5 @@ def build(): def install(): mesontools.install() + + pisitools.dodoc("LICENSE", "LGPL-2", "copyright") From 2ff069cccf8f1d9408e5377cff3a1804c9df3817 Mon Sep 17 00:00:00 2001 From: uglyside Date: Tue, 4 Feb 2025 22:06:28 +0300 Subject: [PATCH 23/80] libnfs-5.0.3 --- network/connection/libnfs/actions.py | 33 ++++--- network/connection/libnfs/pspec.xml | 138 ++++++++++++++------------- 2 files changed, 87 insertions(+), 84 deletions(-) diff --git a/network/connection/libnfs/actions.py b/network/connection/libnfs/actions.py index 3c018c5821..e2cd603af5 100644 --- a/network/connection/libnfs/actions.py +++ b/network/connection/libnfs/actions.py @@ -4,29 +4,28 @@ # 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 cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools -j = "-DCMAKE_BUILD_TYPE=release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DENABLE_DOCUMENTATION=ON \ - -DBUILD_SHARED_LIBS=ON \ - -DENABLE_UTILS=ON -L \ - " +y = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -DBUILD_SHARED_LIBS=ON', + ' -DENABLE_{UTILS,DOCUMENTATION}=ON', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - shelltools.system("./bootstrap") - cmaketools.configure(j) + cmaketools.configure(y) def build(): - cmaketools.make() + mesontools.build() def install(): - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - for t in ["utils/nfs-cat", "utils/nfs-cp", "utils/nfs-ls"]: - pisitools.dobin(t) + mesontools.install() - pisitools.dodoc("COPYING", "README") + from pisi.actionsapi import shelltools, get + for b in ["nfs-cat", "nfs-cp", "nfs-ls", "nfs-stat"]: + shelltools.chmod("%s/usr/bin/%s" % (get.installDIR(), b), mode = 0755) + for l in ["BSD", "GPL-3", "LGPL-2.1"]: + pisitools.dodoc("COPYING", "LICENCE-%s.txt" % l) diff --git a/network/connection/libnfs/pspec.xml b/network/connection/libnfs/pspec.xml index 3b318d865d..3ec3828d81 100644 --- a/network/connection/libnfs/pspec.xml +++ b/network/connection/libnfs/pspec.xml @@ -1,73 +1,77 @@ - + - - libnfs - https://github.com/sahlberg/libnfs - - Mogyorósi Petra - squeakymouse@protonmail.com - - LGPLv2.1 - GPLv3 - BSDv2 - network.connection - library - NFS client library - LIBNFS is a client library for accessing NFS shares over a network. - - https://github.com/sahlberg/libnfs/archive/libnfs-4.0.0.tar.gz - - - cmake - libxslt - - + + libnfs + https://github.com/sahlberg/libnfs + + Mogyorósi Petra + squeakymouse@protonmail.com + + LGPLv2.1 + GPLv3 + BSDv2 + network.connection + library + NFS client library. + LIBNFS is a client library for accessing NFS shares over a network. + https://github.com/sahlberg/libnfs/archive/refs/tags/libnfs-5.0.3.tar.gz + + cmake + ninja + libxslt + docbook-xsl + + - - libnfs - NFS client library - - glibc - - - /usr/bin - /usr/lib/libnfs.so - /usr/lib/libnfs.so.11.0.0 - /usr/lib/libnfs.so.2.0.0 - /usr/share/man/* - /usr/share/doc/* - - + + libnfs + NFS client library + + glibc + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + - - libnfs-devel - Development files for libnfs - - libnfs - - - /usr/include/* - /usr/lib/pkgconfig/* - /usr/lib/cmake/* - - + + libnfs-devel + Development files for libnfs + + libnfs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + - - - 2020-12-13 - 4.0.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2018-07-03 - 3.0.0 - Latest revision from GitHub - Mogyorósi Petra - squeakymouse@protonmail.com - - + + + 2025-02-04 + 5.0.3 + Version bump. + Mogyorósi Petra + squeakymouse@protonmail.com + + + 2020-12-13 + 4.0.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2018-07-03 + 3.0.0 + Latest revision from GitHub + Mogyorósi Petra + squeakymouse@protonmail.com + + - From 83d5f50520fa61c75ac56b38e4d7e7ad69835e7f Mon Sep 17 00:00:00 2001 From: uglyside Date: Tue, 4 Feb 2025 22:06:54 +0300 Subject: [PATCH 24/80] mpd-0.23.17 --- multimedia/stream/mpd/actions.py | 16 +- multimedia/stream/mpd/pspec.xml | 577 ++++++++++++++++--------------- 2 files changed, 296 insertions(+), 297 deletions(-) diff --git a/multimedia/stream/mpd/actions.py b/multimedia/stream/mpd/actions.py index 3171cf6d7e..12305b4f49 100644 --- a/multimedia/stream/mpd/actions.py +++ b/multimedia/stream/mpd/actions.py @@ -4,8 +4,7 @@ # 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 mesontools -from pisi.actionsapi import pisitools +from pisi.actionsapi import mesontools, pisitools j = ''.join([ ' -Ddocumentation=enabled', @@ -94,16 +93,13 @@ j = ''.join([ ]) def setup(): -# pisitools.ldflags.add("-lbsd") -# pisitools.cxxflags.add("-lbsd") - mesontools.configure(j) + mesontools.configure(j, build_dir="_mpd_build_") def build(): - mesontools.build() + mesontools.build("-C _mpd_build_") def install(): - mesontools.install() - pisitools.insinto("/etc", "doc/mpdconf.example", "mpd.conf") - - pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README.md") + mesontools.install("-C _mpd_build_") + pisitools.insinto("/etc", "doc/mpdconf.example", "mpd.conf") + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/multimedia/stream/mpd/pspec.xml b/multimedia/stream/mpd/pspec.xml index 87d7f1e96b..8b3a94ff0b 100644 --- a/multimedia/stream/mpd/pspec.xml +++ b/multimedia/stream/mpd/pspec.xml @@ -1,293 +1,296 @@ - - mpd - https://www.musicpd.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app - multimedia.stream - Music Player Daemon. - - Music Player Daemon (MPD) is a flexible, powerful, server-side application for playing music. Through plugins and libraries it can play a variety of sound files while being controlled by its network protocol. - - - https://musicpd.org/download/mpd/0.23/mpd-0.23.15.tar.xz - - - meson - cmake - fmt-devel - curl-devel - flac-devel - yajl-devel - lame-devel - zlib-devel - dbus-devel - boost-devel - expat-devel - samba-devel - icu4c-devel - avahi-devel - faad2-devel - libao-devel - shine-devel - libmms-devel - mpg123-devel - sqlite-devel - openal-devel - ffmpeg-devel - libgme-devel - libmad-devel - libogg-devel - libnfs-devel - libcdio-devel - libopus-devel - libsoxr-devel - libupnp-devel - twolame-devel - wavpack-devel - zziplib-devel - libpcre2-devel - alsa-lib-devel - libshout-devel - liburing-devel - pipewire-devel - libmpcdec-devel - libgcrypt-devel - audiofile-devel - libid3tag-devel - libmikmod-devel - libvorbis-devel - cyrus-sasl-devel - fluidsynth-devel - libmodplug-devel - libsndfile-devel - libopenmpt-devel - libmpdclient-devel - libsamplerate-devel - libchromaprint-devel - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - - python3-six - python3-Babel - python3-sphinx - python3-certifi - python3-requests - python3-imagesize - python3-snowballstemmer - python3-sphinx-alabaster-theme - python3-sphinxcontrib-websupport - - - - - + + mpd + https://www.musicpd.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app + multimedia.stream + Music Player Daemon. + Music Player Daemon (MPD) is a flexible, powerful, server-side application for playing music. + https://musicpd.org/download/mpd/0.23/mpd-0.23.17.tar.xz + + meson + cmake + fmt-devel + curl-devel + flac-devel + yajl-devel + lame-devel + zlib-devel + dbus-devel + boost-devel + expat-devel + samba-devel + icu4c-devel + avahi-devel + faad2-devel + libao-devel + shine-devel + libmms-devel + mpg123-devel + sqlite-devel + openal-devel + ffmpeg-devel + libgme-devel + libmad-devel + libogg-devel + libnfs-devel + libcdio-devel + libopus-devel + libsoxr-devel + libupnp-devel + twolame-devel + wavpack-devel + zziplib-devel + libpcre2-devel + alsa-lib-devel + libshout-devel + liburing-devel + pipewire-devel + libmpcdec-devel + libgcrypt-devel + audiofile-devel + libid3tag-devel + libmikmod-devel + libvorbis-devel + cyrus-sasl-devel + fluidsynth-devel + libmodplug-devel + libsndfile-devel + libopenmpt-devel + libmpdclient-devel + libsamplerate-devel + libchromaprint-devel + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + + python3-six + python3-Babel + python3-sphinx + python3-certifi + python3-requests + python3-imagesize + python3-snowballstemmer + python3-sphinx-alabaster-theme + python3-sphinxcontrib-websupport + + + + + - - mpd - - curl - flac - yajl - lame - zlib - dbus - boost - expat - samba - icu4c - avahi - faad2 - libao - shine - libmms - mpg123 - sqlite - openal - ffmpeg - libgme - libmad - libogg - libnfs - libcdio - libopus - libsoxr - libupnp - twolame - wavpack - zziplib - libpcre2 - alsa-lib - libshout - liburing - pipewire - libmpcdec - libgcrypt - audiofile - libid3tag - libmikmod - libvorbis - avahi-libs - fluidsynth - libmodplug - libsndfile - libopenmpt - libmpdclient - libsamplerate - libchromaprint - pulseaudio-libs - libcdio-paranoia - jack-audio-connection-kit - - - /etc - /usr/bin - /usr/share/icons - /usr/share/man - /usr/share/doc - - - - - - - - - + + mpd + + curl + flac + yajl + lame + zlib + dbus + boost + expat + samba + icu4c + avahi + faad2 + libao + shine + libmms + mpg123 + sqlite + openal + ffmpeg + libgme + libmad + libogg + libnfs + libcdio + libopus + libsoxr + libupnp + twolame + wavpack + zziplib + libpcre2 + alsa-lib + libshout + liburing + pipewire + libmpcdec + libgcrypt + audiofile + libid3tag + libmikmod + libvorbis + avahi-libs + fluidsynth + libmodplug + libsndfile + libopenmpt + libmpdclient + libsamplerate + libchromaprint + pulseaudio-libs + libcdio-paranoia + jack-audio-connection-kit + + + /etc + /usr/bin + /usr/share/icons + /usr/share/man + /usr/share/doc + + + + + + + + + - - - 2024-10-24 - 0.23.15 - Rebuild. - fury - uglyside@yandex.ru - - - 2023-10-30 - 0.23.12 - Rebuild. - fury - uglyside@yandex.ru - - - 2023-01-27 - 0.23.12 - Version bump. - fury - uglyside@yandex.ru - - - 2022-12-31 - 0.23.10 - Version bump. - fury - uglyside@yandex.ru - - - 2022-07-29 - 0.23.8 - Version bump. - fury - uglyside@yandex.ru - - - 2022-05-14 - 0.23.7 - Version bump. - fury - uglyside@yandex.ru - - - 2022-04-16 - 0.23.6 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-02 - 0.23.5 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-23 - 0.23.4 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-23 - 0.23.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-17 - 0.23 - Version bump. - fury - uglyside@yandex.ru - - - 2021-09-07 - 0.22.11 - Version bump. - fury - uglyside@yandex.ru - - - 2021-07-11 - 0.22.9 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-29 - 0.22.8 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-20 - 0.22.7 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-12 - 0.22.6 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-22 - 0.22.4 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-13 - 0.22.3 - First Beta release. - fury - uglyside@yandex.ru - - + + + 2025-02-04 + 0.23.17 + Version bump. + fury + uglyside@yandex.ru + + + 2024-10-24 + 0.23.15 + Rebuild. + fury + uglyside@yandex.ru + + + 2023-10-30 + 0.23.12 + Rebuild. + fury + uglyside@yandex.ru + + + 2023-01-27 + 0.23.12 + Version bump. + fury + uglyside@yandex.ru + + + 2022-12-31 + 0.23.10 + Version bump. + fury + uglyside@yandex.ru + + + 2022-07-29 + 0.23.8 + Version bump. + fury + uglyside@yandex.ru + + + 2022-05-14 + 0.23.7 + Version bump. + fury + uglyside@yandex.ru + + + 2022-04-16 + 0.23.6 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-02 + 0.23.5 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-23 + 0.23.4 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-23 + 0.23.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-17 + 0.23 + Version bump. + fury + uglyside@yandex.ru + + + 2021-09-07 + 0.22.11 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-11 + 0.22.9 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-29 + 0.22.8 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-20 + 0.22.7 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-12 + 0.22.6 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-22 + 0.22.4 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-13 + 0.22.3 + First Beta release. + fury + uglyside@yandex.ru + + From 6ef7087bf6db47328f4a3df9fc2a04d349440d2b Mon Sep 17 00:00:00 2001 From: uglyside Date: Tue, 4 Feb 2025 22:07:18 +0300 Subject: [PATCH 25/80] polybar-3.7.2 --- x11/misc/polybar/actions.py | 38 ++++++++++------------- x11/misc/polybar/pspec.xml | 60 ++++++++++++++++++++++--------------- 2 files changed, 51 insertions(+), 47 deletions(-) diff --git a/x11/misc/polybar/actions.py b/x11/misc/polybar/actions.py index 409d73f491..9db373da17 100644 --- a/x11/misc/polybar/actions.py +++ b/x11/misc/polybar/actions.py @@ -2,33 +2,25 @@ # -*- 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 cmaketools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get +from pisi.actionsapi import cmaketools, mesontools, pisitools + +k = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DCMAKE_INSTALL_PREFIX=/usr', + ' -DPYTHON_EXECUTABLE=/usr/bin/python3', + ' -DBUILD_DOC_HTML=OFF', + ' -Bbuild -G Ninja -L ' + ]) def setup(): - shelltools.makedirs("build") - shelltools.cd("build") - - cmaketools.configure("-D CMAKE_BUILD_TYPE=Release \ - -DENABLE_ALSA=ON \ - -DENABLE_CURL=ON \ - -DENABLE_I3=ON \ - -DBUILD_IPC_MSG=ON \ - -DENABLE_NETWORK=ON \ - -DENABLE_PULSEAUDIO=ON", sourceDir="..") - + cmaketools.configure(k) def build(): - - shelltools.cd("build") - - cmaketools.make() - #cmaketools.make("doc") + mesontools.build() def install(): - shelltools.cd("build") - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + mesontools.install() + + pisitools.dodoc("LICENSE") diff --git a/x11/misc/polybar/pspec.xml b/x11/misc/polybar/pspec.xml index b962e29714..f20276d34d 100644 --- a/x11/misc/polybar/pspec.xml +++ b/x11/misc/polybar/pspec.xml @@ -1,5 +1,5 @@ - + polybar @@ -8,56 +8,68 @@ Ertuğrul Erata ertugrulerata@gmail.com - GPLv2 + MIT app:gui - A fast and easy to use tool for creating status bars + A fast and easy-to-use status bar. Polybar aims to help users build beautiful and highly customizable status bars for their desktop environment, without the need of having a black belt in shell scripting. - https://github.com/jaagr/polybar/releases/download/3.4.2/polybar-3.4.2.tar + https://github.com/polybar/polybar/releases/download/3.7.2/polybar-3.7.2.tar.gz cmake - i3wm-devel + ninja xcb-proto - cairo-devel curl-devel - xcb-util-xrm-devel + i3wm-devel + cairo-devel + libuv-devel libnl-devel - wireless-tools-devel - alsa-lib-devel jsoncpp-devel + alsa-lib-devel + xcb-util-devel + python3-sphinx + xkeyboard-config + xcb-util-wm-devel + python3-packaging + libmpdclient-devel + xcb-util-image-devel + wireless-tools-devel pulseaudio-libs-devel - + + + polybar - libgcc - cairo curl - libxcb - freetype - fontconfig - xcb-util-xrm - xcb-util-wm - xcb-util-cursor + cairo + libuv libnl jsoncpp alsa-lib + xcb-util-wm + libmpdclient + xcb-util-image + wireless-tools pulseaudio-libs + xkeyboard-config + /etc /usr/bin - /usr/share/bash-completion - /usr/share/man - /usr/share/doc - /usr/share/zsh + /usr/share + + 2025-02-05 + 3.7.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-01-25 3.4.2 From bfda7d699bc4f4887b01e107144079bad5261e63 Mon Sep 17 00:00:00 2001 From: uglyside Date: Tue, 4 Feb 2025 22:08:28 +0300 Subject: [PATCH 26/80] polybar drop old patch. --- .../polybar/files/xpp_1_40_i3ipcpp_0_71.patch | 39297 ---------------- 1 file changed, 39297 deletions(-) delete mode 100644 x11/misc/polybar/files/xpp_1_40_i3ipcpp_0_71.patch diff --git a/x11/misc/polybar/files/xpp_1_40_i3ipcpp_0_71.patch b/x11/misc/polybar/files/xpp_1_40_i3ipcpp_0_71.patch deleted file mode 100644 index 1fd580f1ae..0000000000 --- a/x11/misc/polybar/files/xpp_1_40_i3ipcpp_0_71.patch +++ /dev/null @@ -1,39297 +0,0 @@ -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/include/auss.hpp polybar-3.2.1/lib/i3ipcpp/3rd/auss/include/auss.hpp ---- polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/include/auss.hpp 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/3rd/auss/include/auss.hpp 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#define AUSS_HPP -+ -+#include -+ -+#ifdef AUSS_USE_OWN_NAMESPACE -+ #ifndef AUSS_OWN_NAMESPACE_NAME -+ #define AUSS_OWN_NAMESPACE_NAME auss -+ #endif -+namespace AUSS_OWN_NAMESPACE_NAME { -+#endif -+ -+class AutoStringStream { -+public: -+ AutoStringStream() : m_stream() {} -+ virtual ~AutoStringStream() {} -+ -+ template -+ AutoStringStream& operator<<(const T& arg) { -+ m_stream << arg; -+ return *this; -+ } -+ -+ AutoStringStream& operator<<(const bool arg) { -+ m_stream << (arg ? "true" : "false"); -+ return *this; -+ } -+ -+ operator std::string() const { -+ return m_stream.str(); -+ } -+ -+ const std::string to_string() const { -+ return m_stream.str(); -+ } -+private: -+ std::stringstream m_stream; -+}; -+ -+#ifndef AUSS_CUSTOM_TYPEDEF -+typedef AutoStringStream auss_t; -+#endif -+ -+#ifdef AUSS_USE_OWN_NAMESPACE -+} -+#endif -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/LICENSE polybar-3.2.1/lib/i3ipcpp/3rd/auss/LICENSE ---- polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/LICENSE 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/3rd/auss/LICENSE 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,24 @@ -+This is free and unencumbered software released into the public domain. -+ -+Anyone is free to copy, modify, publish, use, compile, sell, or -+distribute this software, either in source code form or as a compiled -+binary, for any purpose, commercial or non-commercial, and by any -+means. -+ -+In jurisdictions that recognize copyright laws, the author or authors -+of this software dedicate any and all copyright interest in the -+software to the public domain. We make this dedication for the benefit -+of the public at large and to the detriment of our heirs and -+successors. We intend this dedication to be an overt act of -+relinquishment in perpetuity of all present and future rights to this -+software under copyright law. -+ -+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -+OTHER DEALINGS IN THE SOFTWARE. -+ -+For more information, please refer to -\ Dosya sonunda yenisatır yok. -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/README.md polybar-3.2.1/lib/i3ipcpp/3rd/auss/README.md ---- polybar-3.2.1.orig/lib/i3ipcpp/3rd/auss/README.md 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/3rd/auss/README.md 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,27 @@ -+# AutoStringStream ![license](https://img.shields.io/npm/l/chas-storage.svg) -+ -+Simple header-only wrapper on `std::stringstream` with automatic casting to `std::string` -+ -+## Usage -+ -+```c++ -+#include -+``` -+```c++ -+auss_t() << "Hello, " << user_name -+``` -+```c++ -+throw std::runtime_error(auss_t() << "Something gone wrong, See " << log_path) -+``` -+ -+### Own namespace -+If you wouldn't pollute global namespace just define `AUSS_USE_OWN_NAMESPACE`. Either before `#include` or in compiler flags (`-DAUSS_USE_OWN_NAMESPACE` for GCC). -+ -+Also you can specifiy the name of namespace with `AUSS_OWN_NAMESPACE_NAME`: -+``` -+-DAUSS_OWN_NAMESPACE_NAME="theauss" -+``` -+ -+## License -+ -+Licensed under Unlicense. See `LICENSE` file for more info. -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/CHANGELOG polybar-3.2.1/lib/i3ipcpp/CHANGELOG ---- polybar-3.2.1.orig/lib/i3ipcpp/CHANGELOG 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/CHANGELOG 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,33 @@ -+0.4 -+ + Added support of GET_BARCONFIG and barconfig_update event and examples for them -+ + Added getters form main and event sockets -+ + Added i3ipc::get_version() -+ -+ ~ Calling i3ipc::connection::prepare_to_event_handling() is no more necessary -+ ~ Using i3ipc::errno_error when calling c-functions instead of std::runtime_error -+ ~ Logging-subsystem became public -+ ~ Refactoring of CMakeLists.txt -+ -+ - i3ipc::connection::get_file_descriptor() removed -+ -+0.3 -+ + Added support of BINDING event -+ -+ ~ Removed submodules -+ -+ * Bug fixies -+ -+0.2.1 -+ + Added example of event handling -+ * Fixed SIGSEGV in parse_*_from_json functions -+ -+0.2.0 -+ + Implemented GET_TREE (i3ipc::connection::get_tree()) -+ -+ ~ Shipping all available payload with workspace and window events (issue #2) -+ ~ i3ipc::I3Connection renamed to i3ipc::connection -+ -+ ~ Internal refreactoring -+ -+ * Fixing failed build: Parts of a struct were initialised in wrong order, C99-style designated initialisers did not prevent this from causing an error [mox] -+ * Minor documentation and code fixies -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/CMakeLists.txt polybar-3.2.1/lib/i3ipcpp/CMakeLists.txt ---- polybar-3.2.1.orig/lib/i3ipcpp/CMakeLists.txt 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/CMakeLists.txt 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,74 @@ -+# Project setup -+ -+cmake_minimum_required(VERSION 3.1 FATAL_ERROR) -+project(i3ipc++ CXX) -+ -+option(WITH_LOGGING "Build with log support" OFF) -+option(WITH_TESTS "Build unit tests executables" OFF) -+option(BUILD_EXAMPLES "Build example executables" OFF) -+ -+add_library(${PROJECT_NAME} STATIC -+ ${PROJECT_SOURCE_DIR}/3rd/auss/include/auss.hpp -+ ${PROJECT_SOURCE_DIR}/include/i3ipc++/ipc.hpp -+ ${PROJECT_SOURCE_DIR}/include/i3ipc++/ipc-util.hpp -+ ${PROJECT_SOURCE_DIR}/src/ipc.cpp -+ ${PROJECT_SOURCE_DIR}/src/ipc-util.cpp) -+ -+target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/3rd/auss/include) -+target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/include) -+ -+target_compile_options(${PROJECT_NAME} PRIVATE -std=c++11 -Wall -Wextra -Wno-unused-parameter -Wno-deprecated-declarations) -+target_compile_options(${PROJECT_NAME} PRIVATE $<$:-g3 -DDEBUG>) -+target_compile_options(${PROJECT_NAME} PRIVATE $<$:-O2>) -+ -+# External library: jsoncpp-1.7.7 {{{ -+ -+find_package(PkgConfig) -+pkg_check_modules(JSONCPP jsoncpp>=1.7.7) -+ -+if(NOT JSONCPP_FOUND) -+ message(STATUS "Could not find jsoncpp>=1.7.7 -- building static lib...") -+ add_subdirectory(${PROJECT_SOURCE_DIR}/libs/jsoncpp-1.7.7 EXCLUDE_FROM_ALL) -+ set(JSONCPP_LIBRARIES jsoncpp_lib_static) -+ set(JSONCPP_INCLUDEDIR ${PROJECT_SOURCE_DIR}/libs/jsoncpp-1.7.7/include) -+elseif(NOT JSONCPP_LIBRARIES AND JSONCPP_LIBS) -+ set(JSONCPP_LIBRARIES "${JSONCPP_LIBS}") -+endif() -+ -+target_link_libraries(${PROJECT_NAME} PUBLIC ${JSONCPP_LIBRARIES}) -+target_include_directories(${PROJECT_NAME} PUBLIC ${JSONCPP_INCLUDEDIR}) -+ -+# }}} -+# Export lists to the parent scope if there are any {{{ -+ -+get_directory_property(HAS_PARENT PARENT_DIRECTORY) -+if(HAS_PARENT) -+ set(I3IPCPP_LIBRARIES ${PROJECT_NAME} PARENT_SCOPE) -+ set(I3IPCPP_INCLUDE_DIRS ${PROJECT_SOURCE_DIR}/include ${JSONCPP_INCLUDEDIR}) -+endif() -+ -+# }}} -+# Build examples if the option was given {{{ -+ -+if(BUILD_EXAMPLES) -+ add_subdirectory("${PROJECT_SOURCE_DIR}/examples") -+endif() -+ -+# }}} -+# Build cpp tests if the option was given {{{ -+ -+if(WITH_TESTS) -+ find_package(CxxTest) -+ if(CXXTEST_FOUND) -+ include_directories(${CXXTEST_INCLUDE_DIR} "${PROJECT_SOURCE_DIR}/src") -+ add_definitions("-DTEST_SRC_ROOT=${PROJECT_SOURCE_DIR}/test") -+ enable_testing() -+ file(GLOB SRC_TEST "${PROJECT_SOURCE_DIR}/test/*.hpp") -+ CXXTEST_ADD_TEST(i3ipcpp_check test.cpp ${SRC_TEST}) -+ target_link_libraries(i3ipcpp_check ${I3IPCPP_LIBRARIES}) -+ else() -+ message(WARNING "CxxTest not found. Unable to run unit-tests") -+ endif() -+endif() -+ -+# }}} -diff -Nuar polybar-3.2.1.orig/lib/i3ipcpp/Doxyfile polybar-3.2.1/lib/i3ipcpp/Doxyfile ---- polybar-3.2.1.orig/lib/i3ipcpp/Doxyfile 1970-01-01 02:00:00.000000000 +0200 -+++ polybar-3.2.1/lib/i3ipcpp/Doxyfile 2017-12-03 19:05:22.000000000 +0300 -@@ -0,0 +1,2353 @@ -+# Doxyfile 1.8.8 -+ -+# This file describes the settings to be used by the documentation system -+# doxygen (www.doxygen.org) for a project. -+# -+# All text after a double hash (##) is considered a comment and is placed in -+# front of the TAG it is preceding. -+# -+# All text after a single hash (#) is considered a comment and will be ignored. -+# The format is: -+# TAG = value [value, ...] -+# For lists, items can also be appended using: -+# TAG += value [value, ...] -+# Values that contain spaces should be placed between quotes (\" \"). -+ -+#--------------------------------------------------------------------------- -+# Project related configuration options -+#--------------------------------------------------------------------------- -+ -+# This tag specifies the encoding used for all characters in the config file -+# that follow. The default is UTF-8 which is also the encoding used for all text -+# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -+# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -+# for the list of possible encodings. -+# The default value is: UTF-8. -+ -+DOXYFILE_ENCODING = UTF-8 -+ -+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -+# double-quotes, unless you are using Doxywizard) that should identify the -+# project for which the documentation is generated. This name is used in the -+# title of most generated pages and in a few other places. -+# The default value is: My Project. -+ -+PROJECT_NAME = i3ipc++ -+ -+# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -+# could be handy for archiving the generated documentation or if some version -+# control system is used. -+ -+PROJECT_NUMBER = -+ -+# Using the PROJECT_BRIEF tag one can provide an optional one line description -+# for a project that appears at the top of each page and should give viewer a -+# quick idea about the purpose of the project. Keep the description short. -+ -+PROJECT_BRIEF = "An C++ implementaiton of the i3 IPC" -+ -+# With the PROJECT_LOGO tag one can specify an logo or icon that is included in -+# the documentation. The maximum height of the logo should not exceed 55 pixels -+# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo -+# to the output directory. -+ -+PROJECT_LOGO = -+ -+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -+# into which the generated documentation will be written. If a relative path is -+# entered, it will be relative to the location where doxygen was started. If -+# left blank the current directory will be used. -+ -+OUTPUT_DIRECTORY = doc -+ -+# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- -+# directories (in 2 levels) under the output directory of each output format and -+# will distribute the generated files over these directories. Enabling this -+# option can be useful when feeding doxygen a huge amount of source files, where -+# putting all generated files in the same directory would otherwise causes -+# performance problems for the file system. -+# The default value is: NO. -+ -+CREATE_SUBDIRS = YES -+ -+# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -+# characters to appear in the names of generated files. If set to NO, non-ASCII -+# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -+# U+3044. -+# The default value is: NO. -+ -+ALLOW_UNICODE_NAMES = NO -+ -+# The OUTPUT_LANGUAGE tag is used to specify the language in which all -+# documentation generated by doxygen is written. Doxygen will use this -+# information to generate all constant output in the proper language. -+# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -+# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -+# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -+# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -+# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -+# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -+# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -+# Ukrainian and Vietnamese. -+# The default value is: English. -+ -+OUTPUT_LANGUAGE = English -+ -+# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member -+# descriptions after the members that are listed in the file and class -+# documentation (similar to Javadoc). Set to NO to disable this. -+# The default value is: YES. -+ -+BRIEF_MEMBER_DESC = YES -+ -+# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief -+# description of a member or function before the detailed description -+# -+# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -+# brief descriptions will be completely suppressed. -+# The default value is: YES. -+ -+REPEAT_BRIEF = YES -+ -+# This tag implements a quasi-intelligent brief description abbreviator that is -+# used to form the text in various listings. Each string in this list, if found -+# as the leading text of the brief description, will be stripped from the text -+# and the result, after processing the whole list, is used as the annotated -+# text. Otherwise, the brief description is used as-is. If left blank, the -+# following values are used ($name is automatically replaced with the name of -+# the entity):The $name class, The $name widget, The $name file, is, provides, -+# specifies, contains, represents, a, an and the. -+ -+ABBREVIATE_BRIEF = -+ -+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -+# doxygen will generate a detailed section even if there is only a brief -+# description. -+# The default value is: NO. -+ -+ALWAYS_DETAILED_SEC = NO -+ -+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -+# inherited members of a class in the documentation of that class as if those -+# members were ordinary class members. Constructors, destructors and assignment -+# operators of the base classes will not be shown. -+# The default value is: NO. -+ -+INLINE_INHERITED_MEMB = NO -+ -+# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path -+# before files name in the file list and in the header files. If set to NO the -+# shortest path that makes the file name unique will be used -+# The default value is: YES. -+ -+FULL_PATH_NAMES = YES -+ -+# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -+# Stripping is only done if one of the specified strings matches the left-hand -+# part of the path. The tag can be used to show relative paths in the file list. -+# If left blank the directory from which doxygen is run is used as the path to -+# strip. -+# -+# Note that you can specify absolute paths here, but also relative paths, which -+# will be relative from the directory where doxygen is started. -+# This tag requires that the tag FULL_PATH_NAMES is set to YES. -+ -+STRIP_FROM_PATH = -+ -+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -+# path mentioned in the documentation of a class, which tells the reader which -+# header file to include in order to use a class. If left blank only the name of -+# the header file containing the class definition is used. Otherwise one should -+# specify the list of include paths that are normally passed to the compiler -+# using the -I flag. -+ -+STRIP_FROM_INC_PATH = -+ -+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -+# less readable) file names. This can be useful is your file systems doesn't -+# support long names like on DOS, Mac, or CD-ROM. -+# The default value is: NO. -+ -+SHORT_NAMES = NO -+ -+# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -+# first line (until the first dot) of a Javadoc-style comment as the brief -+# description. If set to NO, the Javadoc-style will behave just like regular Qt- -+# style comments (thus requiring an explicit @brief command for a brief -+# description.) -+# The default value is: NO. -+ -+JAVADOC_AUTOBRIEF = YES -+ -+# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -+# line (until the first dot) of a Qt-style comment as the brief description. If -+# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -+# requiring an explicit \brief command for a brief description.) -+# The default value is: NO. -+ -+QT_AUTOBRIEF = NO -+ -+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -+# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -+# a brief description. This used to be the default behavior. The new default is -+# to treat a multi-line C++ comment block as a detailed description. Set this -+# tag to YES if you prefer the old behavior instead. -+# -+# Note that setting this tag to YES also means that rational rose comments are -+# not recognized any more. -+# The default value is: NO. -+ -+MULTILINE_CPP_IS_BRIEF = NO -+ -+# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -+# documentation from any documented member that it re-implements. -+# The default value is: YES. -+ -+INHERIT_DOCS = YES -+ -+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a -+# new page for each member. If set to NO, the documentation of a member will be -+# part of the file/class/namespace that contains it. -+# The default value is: NO. -+ -+SEPARATE_MEMBER_PAGES = NO -+ -+# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -+# uses this value to replace tabs by spaces in code fragments. -+# Minimum value: 1, maximum value: 16, default value: 4. -+ -+TAB_SIZE = 4 -+ -+# This tag can be used to specify a number of aliases that act as commands in -+# the documentation. An alias has the form: -+# name=value -+# For example adding -+# "sideeffect=@par Side Effects:\n" -+# will allow you to put the command \sideeffect (or @sideeffect) in the -+# documentation, which will result in a user-defined paragraph with heading -+# "Side Effects:". You can put \n's in the value part of an alias to insert -+# newlines. -+ -+ALIASES = -+ -+# This tag can be used to specify a number of word-keyword mappings (TCL only). -+# A mapping has the form "name=value". For example adding "class=itcl::class" -+# will allow you to use the command class in the itcl::class meaning. -+ -+TCL_SUBST = -+ -+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -+# only. Doxygen will then generate output that is more tailored for C. For -+# instance, some of the names that are used will be different. The list of all -+# members will be omitted, etc. -+# The default value is: NO. -+ -+OPTIMIZE_OUTPUT_FOR_C = NO -+ -+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -+# Python sources only. Doxygen will then generate output that is more tailored -+# for that language. For instance, namespaces will be presented as packages, -+# qualified scopes will look different, etc. -+# The default value is: NO. -+ -+OPTIMIZE_OUTPUT_JAVA = NO -+ -+# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -+# sources. Doxygen will then generate output that is tailored for Fortran. -+# The default value is: NO. -+ -+OPTIMIZE_FOR_FORTRAN = NO -+ -+# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -+# sources. Doxygen will then generate output that is tailored for VHDL. -+# The default value is: NO. -+ -+OPTIMIZE_OUTPUT_VHDL = NO -+ -+# Doxygen selects the parser to use depending on the extension of the files it -+# parses. With this tag you can assign which parser to use for a given -+# extension. Doxygen has a built-in mapping, but you can override or extend it -+# using this tag. The format is ext=language, where ext is a file extension, and -+# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -+# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -+# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -+# Fortran. In the later case the parser tries to guess whether the code is fixed -+# or free formatted code, this is the default for Fortran type files), VHDL. For -+# instance to make doxygen treat .inc files as Fortran files (default is PHP), -+# and .f files as C (default is Fortran), use: inc=Fortran f=C. -+# -+# Note For files without extension you can use no_extension as a placeholder. -+# -+# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -+# the files are not read by doxygen. -+ -+EXTENSION_MAPPING = -+ -+# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -+# according to the Markdown format, which allows for more readable -+# documentation. See http://daringfireball.net/projects/markdown/ for details. -+# The output of markdown processing is further processed by doxygen, so you can -+# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -+# case of backward compatibilities issues. -+# The default value is: YES. -+ -+MARKDOWN_SUPPORT = YES -+ -+# When enabled doxygen tries to link words that correspond to documented -+# classes, or namespaces to their corresponding documentation. Such a link can -+# be prevented in individual cases by by putting a % sign in front of the word -+# or globally by setting AUTOLINK_SUPPORT to NO. -+# The default value is: YES. -+ -+AUTOLINK_SUPPORT = YES -+ -+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -+# to include (a tag file for) the STL sources as input, then you should set this -+# tag to YES in order to let doxygen match functions declarations and -+# definitions whose arguments contain STL classes (e.g. func(std::string); -+# versus func(std::string) {}). This also make the inheritance and collaboration -+# diagrams that involve STL classes more complete and accurate. -+# The default value is: NO. -+ -+BUILTIN_STL_SUPPORT = YES -+ -+# If you use Microsoft's C++/CLI language, you should set this option to YES to -+# enable parsing support. -+# The default value is: NO. -+ -+CPP_CLI_SUPPORT = NO -+ -+# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -+# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen -+# will parse them like normal C++ but will assume all classes use public instead -+# of private inheritance when no explicit protection keyword is present. -+# The default value is: NO. -+ -+SIP_SUPPORT = NO -+ -+# For Microsoft's IDL there are propget and propput attributes to indicate -+# getter and setter methods for a property. Setting this option to YES will make -+# doxygen to replace the get and set methods by a property in the documentation. -+# This will only work if the methods are indeed getting or setting a simple -+# type. If this is not the case, or you want to show the methods anyway, you -+# should set this option to NO. -+# The default value is: YES. -+ -+IDL_PROPERTY_SUPPORT = YES -+ -+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -+# tag is set to YES, then doxygen will reuse the documentation of the first -+# member in the group (if any) for the other members of the group. By default -+# all members of a group must be documented explicitly. -+# The default value is: NO. -+ -+DISTRIBUTE_GROUP_DOC = NO -+ -+# Set the SUBGROUPING tag to YES to allow class member groups of the same type -+# (for instance a group of public functions) to be put as a subgroup of that -+# type (e.g. under the Public Functions section). Set it to NO to prevent -+# subgrouping. Alternatively, this can be done per class using the -+# \nosubgrouping command. -+# The default value is: YES. -+ -+SUBGROUPING = YES -+ -+# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -+# are shown inside the group in which they are included (e.g. using \ingroup) -+# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -+# and RTF). -+# -+# Note that this feature does not work in combination with -+# SEPARATE_MEMBER_PAGES. -+# The default value is: NO. -+ -+INLINE_GROUPED_CLASSES = NO -+ -+# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -+# with only public data fields or simple typedef fields will be shown inline in -+# the documentation of the scope in which they are defined (i.e. file, -+# namespace, or group documentation), provided this scope is documented. If set -+# to NO, structs, classes, and unions are shown on a separate page (for HTML and -+# Man pages) or section (for LaTeX and RTF). -+# The default value is: NO. -+ -+INLINE_SIMPLE_STRUCTS = NO -+ -+# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -+# enum is documented as struct, union, or enum with the name of the typedef. So -+# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -+# with name TypeT. When disabled the typedef will appear as a member of a file, -+# namespace, or class. And the struct will be named TypeS. This can typically be -+# useful for C code in case the coding convention dictates that all compound -+# types are typedef'ed and only the typedef is referenced, never the tag name. -+# The default value is: NO. -+ -+TYPEDEF_HIDES_STRUCT = NO -+ -+# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -+# cache is used to resolve symbols given their name and scope. Since this can be -+# an expensive process and often the same symbol appears multiple times in the -+# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -+# doxygen will become slower. If the cache is too large, memory is wasted. The -+# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -+# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -+# symbols. At the end of a run doxygen will report the cache usage and suggest -+# the optimal cache size from a speed point of view. -+# Minimum value: 0, maximum value: 9, default value: 0. -+ -+LOOKUP_CACHE_SIZE = 0 -+ -+#--------------------------------------------------------------------------- -+# Build related configuration options -+#--------------------------------------------------------------------------- -+ -+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -+# documentation are documented, even if no documentation was available. Private -+# class members and static file members will be hidden unless the -+# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -+# Note: This will also disable the warnings about undocumented members that are -+# normally produced when WARNINGS is set to YES. -+# The default value is: NO. -+ -+EXTRACT_ALL = NO -+ -+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will -+# be included in the documentation. -+# The default value is: NO. -+ -+EXTRACT_PRIVATE = NO -+ -+# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal -+# scope will be included in the documentation. -+# The default value is: NO. -+ -+EXTRACT_PACKAGE = NO -+ -+# If the EXTRACT_STATIC tag is set to YES all static members of a file will be -+# included in the documentation. -+# The default value is: NO. -+ -+EXTRACT_STATIC = YES -+ -+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined -+# locally in source files will be included in the documentation. If set to NO -+# only classes defined in header files are included. Does not have any effect -+# for Java sources. -+# The default value is: YES. -+ -+EXTRACT_LOCAL_CLASSES = YES -+ -+# This flag is only useful for Objective-C code. When set to YES local methods, -+# which are defined in the implementation section but not in the interface are -+# included in the documentation. If set to NO only methods in the interface are -+# included. -+# The default value is: NO. -+ -+EXTRACT_LOCAL_METHODS = NO -+ -+# If this flag is set to YES, the members of anonymous namespaces will be -+# extracted and appear in the documentation as a namespace called -+# 'anonymous_namespace{file}', where file will be replaced with the base name of -+# the file that contains the anonymous namespace. By default anonymous namespace -+# are hidden. -+# The default value is: NO. -+ -+EXTRACT_ANON_NSPACES = NO -+ -+# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -+# undocumented members inside documented classes or files. If set to NO these -+# members will be included in the various overviews, but no documentation -+# section is generated. This option has no effect if EXTRACT_ALL is enabled. -+# The default value is: NO. -+ -+HIDE_UNDOC_MEMBERS = NO -+ -+# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -+# undocumented classes that are normally visible in the class hierarchy. If set -+# to NO these classes will be included in the various overviews. This option has -+# no effect if EXTRACT_ALL is enabled. -+# The default value is: NO. -+ -+HIDE_UNDOC_CLASSES = NO -+ -+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -+# (class|struct|union) declarations. If set to NO these declarations will be -+# included in the documentation. -+# The default value is: NO. -+ -+HIDE_FRIEND_COMPOUNDS = NO -+ -+# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -+# documentation blocks found inside the body of a function. If set to NO these -+# blocks will be appended to the function's detailed documentation block. -+# The default value is: NO. -+ -+HIDE_IN_BODY_DOCS = NO -+ -+# The INTERNAL_DOCS tag determines if documentation that is typed after a -+# \internal command is included. If the tag is set to NO then the documentation -+# will be excluded. Set it to YES to include the internal documentation. -+# The default value is: NO. -+ -+INTERNAL_DOCS = NO -+ -+# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -+# names in lower-case letters. If set to YES upper-case letters are also -+# allowed. This is useful if you have classes or files whose names only differ -+# in case and if your file system supports case sensitive file names. Windows -+# and Mac users are advised to set this option to NO. -+# The default value is: system dependent. -+ -+CASE_SENSE_NAMES = NO -+ -+# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -+# their full class and namespace scopes in the documentation. If set to YES the -+# scope will be hidden. -+# The default value is: NO. -+ -+HIDE_SCOPE_NAMES = NO -+ -+# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -+# the files that are included by a file in the documentation of that file. -+# The default value is: YES. -+ -+SHOW_INCLUDE_FILES = YES -+ -+# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -+# grouped member an include statement to the documentation, telling the reader -+# which file to include in order to use the member. -+# The default value is: NO. -+ -+SHOW_GROUPED_MEMB_INC = NO -+ -+# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -+# files with double quotes in the documentation rather than with sharp brackets. -+# The default value is: NO. -+ -+FORCE_LOCAL_INCLUDES = NO -+ -+# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -+# documentation for inline members. -+# The default value is: YES. -+ -+INLINE_INFO = YES -+ -+# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -+# (detailed) documentation of file and class members alphabetically by member -+# name. If set to NO the members will appear in declaration order. -+# The default value is: YES. -+ -+SORT_MEMBER_DOCS = YES -+ -+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -+# descriptions of file, namespace and class members alphabetically by member -+# name. If set to NO the members will appear in declaration order. Note that -+# this will also influence the order of the classes in the class list. -+# The default value is: NO. -+ -+SORT_BRIEF_DOCS = NO -+ -+# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -+# (brief and detailed) documentation of class members so that constructors and -+# destructors are listed first. If set to NO the constructors will appear in the -+# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -+# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -+# member documentation. -+# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -+# detailed member documentation. -+# The default value is: NO. -+ -+SORT_MEMBERS_CTORS_1ST = NO -+ -+# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -+# of group names into alphabetical order. If set to NO the group names will -+# appear in their defined order. -+# The default value is: NO. -+ -+SORT_GROUP_NAMES = NO -+ -+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -+# fully-qualified names, including namespaces. If set to NO, the class list will -+# be sorted only by class name, not including the namespace part. -+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -+# Note: This option applies only to the class list, not to the alphabetical -+# list. -+# The default value is: NO. -+ -+SORT_BY_SCOPE_NAME = NO -+ -+# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -+# type resolution of all parameters of a function it will reject a match between -+# the prototype and the implementation of a member function even if there is -+# only one candidate or it is obvious which candidate to choose by doing a -+# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -+# accept a match between prototype and implementation in such cases. -+# The default value is: NO. -+ -+STRICT_PROTO_MATCHING = NO -+ -+# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the -+# todo list. This list is created by putting \todo commands in the -+# documentation. -+# The default value is: YES. -+ -+GENERATE_TODOLIST = YES -+ -+# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the -+# test list. This list is created by putting \test commands in the -+# documentation. -+# The default value is: YES. -+ -+GENERATE_TESTLIST = YES -+ -+# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug -+# list. This list is created by putting \bug commands in the documentation. -+# The default value is: YES. -+ -+GENERATE_BUGLIST = YES -+ -+# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) -+# the deprecated list. This list is created by putting \deprecated commands in -+# the documentation. -+# The default value is: YES. -+ -+GENERATE_DEPRECATEDLIST= YES -+ -+# The ENABLED_SECTIONS tag can be used to enable conditional documentation -+# sections, marked by \if ... \endif and \cond -+# ... \endcond blocks. -+ -+ENABLED_SECTIONS = -+ -+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -+# initial value of a variable or macro / define can have for it to appear in the -+# documentation. If the initializer consists of more lines than specified here -+# it will be hidden. Use a value of 0 to hide initializers completely. The -+# appearance of the value of individual variables and macros / defines can be -+# controlled using \showinitializer or \hideinitializer command in the -+# documentation regardless of this setting. -+# Minimum value: 0, maximum value: 10000, default value: 30. -+ -+MAX_INITIALIZER_LINES = 30 -+ -+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -+# the bottom of the documentation of classes and structs. If set to YES the list -+# will mention the files that were used to generate the documentation. -+# The default value is: YES. -+ -+SHOW_USED_FILES = YES -+ -+# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -+# will remove the Files entry from the Quick Index and from the Folder Tree View -+# (if specified). -+# The default value is: YES. -+ -+SHOW_FILES = YES -+ -+# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -+# page. This will remove the Namespaces entry from the Quick Index and from the -+# Folder Tree View (if specified). -+# The default value is: YES. -+ -+SHOW_NAMESPACES = YES -+ -+# The FILE_VERSION_FILTER tag can be used to specify a program or script that -+# doxygen should invoke to get the current version for each file (typically from -+# the version control system). Doxygen will invoke the program by executing (via -+# popen()) the command command input-file, where command is the value of the -+# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -+# by doxygen. Whatever the program writes to standard output is used as the file -+# version. For an example see the documentation. -+ -+FILE_VERSION_FILTER = -+ -+# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -+# by doxygen. The layout file controls the global structure of the generated -+# output files in an output format independent way. To create the layout file -+# that represents doxygen's defaults, run doxygen with the -l option. You can -+# optionally specify a file name after the option, if omitted DoxygenLayout.xml -+# will be used as the name of the layout file. -+# -+# Note that if you run doxygen from a directory containing a file called -+# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -+# tag is left empty. -+ -+LAYOUT_FILE = -+ -+# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -+# the reference definitions. This must be a list of .bib files. The .bib -+# extension is automatically appended if omitted. This requires the bibtex tool -+# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. -+# For LaTeX the style of the bibliography can be controlled using -+# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -+# search path. See also \cite for info how to create references. -+ -+CITE_BIB_FILES = -+ -+#--------------------------------------------------------------------------- -+# Configuration options related to warning and progress messages -+#--------------------------------------------------------------------------- -+ -+# The QUIET tag can be used to turn on/off the messages that are generated to -+# standard output by doxygen. If QUIET is set to YES this implies that the -+# messages are off. -+# The default value is: NO. -+ -+QUIET = NO -+ -+# The WARNINGS tag can be used to turn on/off the warning messages that are -+# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES -+# this implies that the warnings are on. -+# -+# Tip: Turn warnings on while writing the documentation. -+# The default value is: YES. -+ -+WARNINGS = YES -+ -+# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate -+# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -+# will automatically be disabled. -+# The default value is: YES. -+ -+WARN_IF_UNDOCUMENTED = YES -+ -+# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -+# potential errors in the documentation, such as not documenting some parameters -+# in a documented function, or documenting parameters that don't exist or using -+# markup commands wrongly. -+# The default value is: YES. -+ -+WARN_IF_DOC_ERROR = YES -+ -+# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -+# are documented, but have no documentation for their parameters or return -+# value. If set to NO doxygen will only warn about wrong or incomplete parameter -+# documentation, but not about the absence of documentation. -+# The default value is: NO. -+ -+WARN_NO_PARAMDOC = NO -+ -+# The WARN_FORMAT tag determines the format of the warning messages that doxygen -+# can produce. The string should contain the $file, $line, and $text tags, which -+# will be replaced by the file and line number from which the warning originated -+# and the warning text. Optionally the format may contain $version, which will -+# be replaced by the version of the file (if it could be obtained via -+# FILE_VERSION_FILTER) -+# The default value is: $file:$line: $text. -+ -+WARN_FORMAT = "$file:$line: $text" -+ -+# The WARN_LOGFILE tag can be used to specify a file to which warning and error -+# messages should be written. If left blank the output is written to standard -+# error (stderr). -+ -+WARN_LOGFILE = doxygen-warning.log -+ -+#--------------------------------------------------------------------------- -+# Configuration options related to the input files -+#--------------------------------------------------------------------------- -+ -+# The INPUT tag is used to specify the files and/or directories that contain -+# documented source files. You may enter file names like myfile.cpp or -+# directories like /usr/src/myproject. Separate the files or directories with -+# spaces. -+# Note: If this tag is empty the current directory is searched. -+ -+INPUT = include -+ -+# This tag can be used to specify the character encoding of the source files -+# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -+# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -+# documentation (see: http://www.gnu.org/software/libiconv) for the list of -+# possible encodings. -+# The default value is: UTF-8. -+ -+INPUT_ENCODING = UTF-8 -+ -+# If the value of the INPUT tag contains directories, you can use the -+# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -+# *.h) to filter out the source-files in the directories. If left blank the -+# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, -+# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, -+# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, -+# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, -+# *.qsf, *.as and *.js. -+ -+FILE_PATTERNS = *.hpp \ -+ *.h -+ -+# The RECURSIVE tag can be used to specify whether or not subdirectories should -+# be searched for input files as well. -+# The default value is: NO. -+ -+RECURSIVE = YES -+ -+# The EXCLUDE tag can be used to specify files and/or directories that should be -+# excluded from the INPUT source files. This way you can easily exclude a -+# subdirectory from a directory tree whose root is specified with the INPUT tag. -+# -+# Note that relative paths are relative to the directory from which doxygen is -+# run. -+ -+EXCLUDE = -+ -+# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -+# directories that are symbolic links (a Unix file system feature) are excluded -+# from the input. -+# The default value is: NO. -+ -+EXCLUDE_SYMLINKS = NO -+ -+# If the value of the INPUT tag contains directories, you can use the -+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -+# certain files from those directories. -+# -+# Note that the wildcards are matched against the file with absolute path, so to -+# exclude all test directories for example use the pattern */test/* -+ -+EXCLUDE_PATTERNS = *.cpp -+ -+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -+# (namespaces, classes, functions, etc.) that should be excluded from the -+# output. The symbol name can be a fully qualified name, a word, or if the -+# wildcard * is used, a substring. Examples: ANamespace, AClass, -+# AClass::ANamespace, ANamespace::*Test -+# -+# Note that the wildcards are matched against the file with absolute path, so to -+# exclude all test directories use the pattern */test/* -+ -+EXCLUDE_SYMBOLS = -+ -+# The EXAMPLE_PATH tag can be used to specify one or more files or directories -+# that contain example code fragments that are included (see the \include -+# command). -+ -+EXAMPLE_PATH = -+ -+# If the value of the EXAMPLE_PATH tag contains directories, you can use the -+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -+# *.h) to filter out the source-files in the directories. If left blank all -+# files are included. -+ -+EXAMPLE_PATTERNS = -+ -+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -+# searched for input files to be used with the \include or \dontinclude commands -+# irrespective of the value of the RECURSIVE tag. -+# The default value is: NO. -+ -+EXAMPLE_RECURSIVE = NO -+ -+# The IMAGE_PATH tag can be used to specify one or more files or directories -+# that contain images that are to be included in the documentation (see the -+# \image command). -+ -+IMAGE_PATH = -+ -+# The INPUT_FILTER tag can be used to specify a program that doxygen should -+# invoke to filter for each input file. Doxygen will invoke the filter program -+# by executing (via popen()) the command: -+# -+# -+# -+# where is the value of the INPUT_FILTER tag, and is the -+# name of an input file. Doxygen will then use the output that the filter -+# program writes to standard output. If FILTER_PATTERNS is specified, this tag -+# will be ignored. -+# -+# Note that the filter must not add or remove lines; it is applied before the -+# code is scanned, but not when the output code is generated. If lines are added -+# or removed, the anchors will not be placed correctly. -+ -+INPUT_FILTER = -+ -+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -+# basis. Doxygen will compare the file name with each pattern and apply the -+# filter if there is a match. The filters are a list of the form: pattern=filter -+# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -+# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -+# patterns match the file name, INPUT_FILTER is applied. -+ -+FILTER_PATTERNS = -+ -+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -+# INPUT_FILTER ) will also be used to filter the input files that are used for -+# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -+# The default value is: NO. -+ -+FILTER_SOURCE_FILES = NO -+ -+# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -+# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -+# it is also possible to disable source filtering for a specific pattern using -+# *.ext= (so without naming a filter). -+# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. -+ -+FILTER_SOURCE_PATTERNS = -+ -+# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -+# is part of the input, its contents will be placed on the main page -+# (index.html). This can be useful if you have a project on for instance GitHub -+# and want to reuse the introduction page also for the doxygen output. -+ -+USE_MDFILE_AS_MAINPAGE = -+ -+#--------------------------------------------------------------------------- -+# Configuration options related to source browsing -+#--------------------------------------------------------------------------- -+ -+# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -+# generated. Documented entities will be cross-referenced with these sources. -+# -+# Note: To get rid of all source code in the generated output, make sure that -+# also VERBATIM_HEADERS is set to NO. -+# The default value is: NO. -+ -+SOURCE_BROWSER = NO -+ -+# Setting the INLINE_SOURCES tag to YES will include the body of functions, -+# classes and enums directly into the documentation. -+# The default value is: NO. -+ -+INLINE_SOURCES = NO -+ -+# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -+# special comment blocks from generated source code fragments. Normal C, C++ and -+# Fortran comments will always remain visible. -+# The default value is: YES. -+ -+STRIP_CODE_COMMENTS = YES -+ -+# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -+# function all documented functions referencing it will be listed. -+# The default value is: NO. -+ -+REFERENCED_BY_RELATION = NO -+ -+# If the REFERENCES_RELATION tag is set to YES then for each documented function -+# all documented entities called/used by that function will be listed. -+# The default value is: NO. -+ -+REFERENCES_RELATION = NO -+ -+# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -+# to YES, then the hyperlinks from functions in REFERENCES_RELATION and -+# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -+# link to the documentation. -+# The default value is: YES. -+ -+REFERENCES_LINK_SOURCE = YES -+ -+# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -+# source code will show a tooltip with additional information such as prototype, -+# brief description and links to the definition and documentation. Since this -+# will make the HTML file larger and loading of large files a bit slower, you -+# can opt to disable this feature. -+# The default value is: YES. -+# This tag requires that the tag SOURCE_BROWSER is set to YES. -+ -+SOURCE_TOOLTIPS = YES -+ -+# If the USE_HTAGS tag is set to YES then the references to source code will -+# point to the HTML generated by the htags(1) tool instead of doxygen built-in -+# source browser. The htags tool is part of GNU's global source tagging system -+# (see http://www.gnu.org/software/global/global.html). You will need version -+# 4.8.6 or higher. -+# -+# To use it do the following: -+# - Install the latest version of global -+# - Enable SOURCE_BROWSER and USE_HTAGS in the config file -+# - Make sure the INPUT points to the root of the source tree -+# - Run doxygen as normal -+# -+# Doxygen will invoke htags (and that will in turn invoke gtags), so these -+# tools must be available from the command line (i.e. in the search path). -+# -+# The result: instead of the source browser generated by doxygen, the links to -+# source code will now point to the output of htags. -+# The default value is: NO. -+# This tag requires that the tag SOURCE_BROWSER is set to YES. -+ -+USE_HTAGS = NO -+ -+# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -+# verbatim copy of the header file for each class for which an include is -+# specified. Set to NO to disable this. -+# See also: Section \class. -+# The default value is: YES. -+ -+VERBATIM_HEADERS = YES -+ -+# If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the -+# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the -+# cost of reduced performance. This can be particularly helpful with template -+# rich C++ code for which doxygen's built-in parser lacks the necessary type -+# information. -+# Note: The availability of this option depends on whether or not doxygen was -+# compiled with the --with-libclang option. -+# The default value is: NO. -+ -+CLANG_ASSISTED_PARSING = NO -+ -+# If clang assisted parsing is enabled you can provide the compiler with command -+# line options that you would normally use when invoking the compiler. Note that -+# the include paths will already be set by doxygen for the files and directories -+# specified with INPUT and INCLUDE_PATH. -+# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. -+ -+CLANG_OPTIONS = -+ -+#--------------------------------------------------------------------------- -+# Configuration options related to the alphabetical class index -+#--------------------------------------------------------------------------- -+ -+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -+# compounds will be generated. Enable this if the project contains a lot of -+# classes, structs, unions or interfaces. -+# The default value is: YES. -+ -+ALPHABETICAL_INDEX = YES -+ -+# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -+# which the alphabetical index list will be split. -+# Minimum value: 1, maximum value: 20, default value: 5. -+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. -+ -+COLS_IN_ALPHA_INDEX = 5 -+ -+# In case all classes in a project start with a common prefix, all classes will -+# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -+# can be used to specify a prefix (or a list of prefixes) that should be ignored -+# while generating the index headers. -+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. -+ -+IGNORE_PREFIX = -+ -+#--------------------------------------------------------------------------- -+# Configuration options related to the HTML output -+#--------------------------------------------------------------------------- -+ -+# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output -+# The default value is: YES. -+ -+GENERATE_HTML = YES -+ -+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -+# it. -+# The default directory is: html. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_OUTPUT = html -+ -+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -+# generated HTML page (for example: .htm, .php, .asp). -+# The default value is: .html. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_FILE_EXTENSION = .html -+ -+# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -+# each generated HTML page. If the tag is left blank doxygen will generate a -+# standard header. -+# -+# To get valid HTML the header file that includes any scripts and style sheets -+# that doxygen needs, which is dependent on the configuration options used (e.g. -+# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -+# default header using -+# doxygen -w html new_header.html new_footer.html new_stylesheet.css -+# YourConfigFile -+# and then modify the file new_header.html. See also section "Doxygen usage" -+# for information on how to generate the default header that doxygen normally -+# uses. -+# Note: The header is subject to change so you typically have to regenerate the -+# default header when upgrading to a newer version of doxygen. For a description -+# of the possible markers and block names see the documentation. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_HEADER = -+ -+# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -+# generated HTML page. If the tag is left blank doxygen will generate a standard -+# footer. See HTML_HEADER for more information on how to generate a default -+# footer and what special commands can be used inside the footer. See also -+# section "Doxygen usage" for information on how to generate the default footer -+# that doxygen normally uses. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_FOOTER = -+ -+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -+# sheet that is used by each HTML page. It can be used to fine-tune the look of -+# the HTML output. If left blank doxygen will generate a default style sheet. -+# See also section "Doxygen usage" for information on how to generate the style -+# sheet that doxygen normally uses. -+# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -+# it is more robust and this tag (HTML_STYLESHEET) will in the future become -+# obsolete. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_STYLESHEET = -+ -+# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -+# cascading style sheets that are included after the standard style sheets -+# created by doxygen. Using this option one can overrule certain style aspects. -+# This is preferred over using HTML_STYLESHEET since it does not replace the -+# standard style sheet and is therefor more robust against future updates. -+# Doxygen will copy the style sheet files to the output directory. -+# Note: The order of the extra stylesheet files is of importance (e.g. the last -+# stylesheet in the list overrules the setting of the previous ones in the -+# list). For an example see the documentation. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_EXTRA_STYLESHEET = -+ -+# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -+# other source files which should be copied to the HTML output directory. Note -+# that these files will be copied to the base HTML output directory. Use the -+# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -+# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -+# files will be copied as-is; there are no commands or markers available. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_EXTRA_FILES = -+ -+# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -+# will adjust the colors in the stylesheet and background images according to -+# this color. Hue is specified as an angle on a colorwheel, see -+# http://en.wikipedia.org/wiki/Hue for more information. For instance the value -+# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -+# purple, and 360 is red again. -+# Minimum value: 0, maximum value: 359, default value: 220. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_COLORSTYLE_HUE = 220 -+ -+# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -+# in the HTML output. For a value of 0 the output will use grayscales only. A -+# value of 255 will produce the most vivid colors. -+# Minimum value: 0, maximum value: 255, default value: 100. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_COLORSTYLE_SAT = 100 -+ -+# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -+# luminance component of the colors in the HTML output. Values below 100 -+# gradually make the output lighter, whereas values above 100 make the output -+# darker. The value divided by 100 is the actual gamma applied, so 80 represents -+# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -+# change the gamma. -+# Minimum value: 40, maximum value: 240, default value: 80. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_COLORSTYLE_GAMMA = 80 -+ -+# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -+# page will contain the date and time when the page was generated. Setting this -+# to NO can help when comparing the output of multiple runs. -+# The default value is: YES. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_TIMESTAMP = YES -+ -+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -+# documentation will contain sections that can be hidden and shown after the -+# page has loaded. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_DYNAMIC_SECTIONS = NO -+ -+# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -+# shown in the various tree structured indices initially; the user can expand -+# and collapse entries dynamically later on. Doxygen will expand the tree to -+# such a level that at most the specified number of entries are visible (unless -+# a fully collapsed tree already exceeds this amount). So setting the number of -+# entries 1 will produce a full collapsed tree by default. 0 is a special value -+# representing an infinite number of entries and will result in a full expanded -+# tree by default. -+# Minimum value: 0, maximum value: 9999, default value: 100. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+HTML_INDEX_NUM_ENTRIES = 100 -+ -+# If the GENERATE_DOCSET tag is set to YES, additional index files will be -+# generated that can be used as input for Apple's Xcode 3 integrated development -+# environment (see: http://developer.apple.com/tools/xcode/), introduced with -+# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -+# Makefile in the HTML output directory. Running make will produce the docset in -+# that directory and running make install will install the docset in -+# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -+# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -+# for more information. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+GENERATE_DOCSET = NO -+ -+# This tag determines the name of the docset feed. A documentation feed provides -+# an umbrella under which multiple documentation sets from a single provider -+# (such as a company or product suite) can be grouped. -+# The default value is: Doxygen generated docs. -+# This tag requires that the tag GENERATE_DOCSET is set to YES. -+ -+DOCSET_FEEDNAME = "Doxygen generated docs" -+ -+# This tag specifies a string that should uniquely identify the documentation -+# set bundle. This should be a reverse domain-name style string, e.g. -+# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -+# The default value is: org.doxygen.Project. -+# This tag requires that the tag GENERATE_DOCSET is set to YES. -+ -+DOCSET_BUNDLE_ID = org.doxygen.Project -+ -+# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -+# the documentation publisher. This should be a reverse domain-name style -+# string, e.g. com.mycompany.MyDocSet.documentation. -+# The default value is: org.doxygen.Publisher. -+# This tag requires that the tag GENERATE_DOCSET is set to YES. -+ -+DOCSET_PUBLISHER_ID = org.doxygen.Publisher -+ -+# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -+# The default value is: Publisher. -+# This tag requires that the tag GENERATE_DOCSET is set to YES. -+ -+DOCSET_PUBLISHER_NAME = Publisher -+ -+# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -+# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -+# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -+# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -+# Windows. -+# -+# The HTML Help Workshop contains a compiler that can convert all HTML output -+# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -+# files are now used as the Windows 98 help format, and will replace the old -+# Windows help format (.hlp) on all Windows platforms in the future. Compressed -+# HTML files also contain an index, a table of contents, and you can search for -+# words in the documentation. The HTML workshop also contains a viewer for -+# compressed HTML files. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+GENERATE_HTMLHELP = NO -+ -+# The CHM_FILE tag can be used to specify the file name of the resulting .chm -+# file. You can add a path in front of the file if the result should not be -+# written to the html output directory. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+CHM_FILE = -+ -+# The HHC_LOCATION tag can be used to specify the location (absolute path -+# including file name) of the HTML help compiler ( hhc.exe). If non-empty -+# doxygen will try to run the HTML help compiler on the generated index.hhp. -+# The file has to be specified with full path. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+HHC_LOCATION = -+ -+# The GENERATE_CHI flag controls if a separate .chi index file is generated ( -+# YES) or that it should be included in the master .chm file ( NO). -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+GENERATE_CHI = NO -+ -+# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) -+# and project file content. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+CHM_INDEX_ENCODING = -+ -+# The BINARY_TOC flag controls whether a binary table of contents is generated ( -+# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it -+# enables the Previous and Next buttons. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+BINARY_TOC = NO -+ -+# The TOC_EXPAND flag can be set to YES to add extra items for group members to -+# the table of contents of the HTML help documentation and to the tree view. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTMLHELP is set to YES. -+ -+TOC_EXPAND = NO -+ -+# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -+# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -+# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -+# (.qch) of the generated HTML documentation. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+GENERATE_QHP = NO -+ -+# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -+# the file name of the resulting .qch file. The path specified is relative to -+# the HTML output folder. -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QCH_FILE = -+ -+# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -+# Project output. For more information please see Qt Help Project / Namespace -+# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). -+# The default value is: org.doxygen.Project. -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHP_NAMESPACE = org.doxygen.Project -+ -+# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -+# Help Project output. For more information please see Qt Help Project / Virtual -+# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- -+# folders). -+# The default value is: doc. -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHP_VIRTUAL_FOLDER = doc -+ -+# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -+# filter to add. For more information please see Qt Help Project / Custom -+# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -+# filters). -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHP_CUST_FILTER_NAME = -+ -+# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -+# custom filter to add. For more information please see Qt Help Project / Custom -+# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -+# filters). -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHP_CUST_FILTER_ATTRS = -+ -+# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -+# project's filter section matches. Qt Help Project / Filter Attributes (see: -+# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHP_SECT_FILTER_ATTRS = -+ -+# The QHG_LOCATION tag can be used to specify the location of Qt's -+# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -+# generated .qhp file. -+# This tag requires that the tag GENERATE_QHP is set to YES. -+ -+QHG_LOCATION = -+ -+# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -+# generated, together with the HTML files, they form an Eclipse help plugin. To -+# install this plugin and make it available under the help contents menu in -+# Eclipse, the contents of the directory containing the HTML and XML files needs -+# to be copied into the plugins directory of eclipse. The name of the directory -+# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -+# After copying Eclipse needs to be restarted before the help appears. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+GENERATE_ECLIPSEHELP = NO -+ -+# A unique identifier for the Eclipse help plugin. When installing the plugin -+# the directory name containing the HTML and XML files should also have this -+# name. Each documentation set should have its own identifier. -+# The default value is: org.doxygen.Project. -+# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. -+ -+ECLIPSE_DOC_ID = org.doxygen.Project -+ -+# If you want full control over the layout of the generated HTML pages it might -+# be necessary to disable the index and replace it with your own. The -+# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -+# of each HTML page. A value of NO enables the index and the value YES disables -+# it. Since the tabs in the index contain the same information as the navigation -+# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+DISABLE_INDEX = NO -+ -+# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -+# structure should be generated to display hierarchical information. If the tag -+# value is set to YES, a side panel will be generated containing a tree-like -+# index structure (just like the one that is generated for HTML Help). For this -+# to work a browser that supports JavaScript, DHTML, CSS and frames is required -+# (i.e. any modern browser). Windows users are probably better off using the -+# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can -+# further fine-tune the look of the index. As an example, the default style -+# sheet generated by doxygen has an example that shows how to put an image at -+# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -+# the same information as the tab index, you could consider setting -+# DISABLE_INDEX to YES when enabling this option. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+GENERATE_TREEVIEW = YES -+ -+# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -+# doxygen will group on one line in the generated HTML documentation. -+# -+# Note that a value of 0 will completely suppress the enum values from appearing -+# in the overview section. -+# Minimum value: 0, maximum value: 20, default value: 4. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+ENUM_VALUES_PER_LINE = 4 -+ -+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -+# to set the initial width (in pixels) of the frame in which the tree is shown. -+# Minimum value: 0, maximum value: 1500, default value: 250. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+TREEVIEW_WIDTH = 250 -+ -+# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to -+# external symbols imported via tag files in a separate window. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+EXT_LINKS_IN_WINDOW = NO -+ -+# Use this tag to change the font size of LaTeX formulas included as images in -+# the HTML documentation. When you change the font size after a successful -+# doxygen run you need to manually remove any form_*.png images from the HTML -+# output directory to force them to be regenerated. -+# Minimum value: 8, maximum value: 50, default value: 10. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+FORMULA_FONTSIZE = 10 -+ -+# Use the FORMULA_TRANPARENT tag to determine whether or not the images -+# generated for formulas are transparent PNGs. Transparent PNGs are not -+# supported properly for IE 6.0, but are supported on all modern browsers. -+# -+# Note that when changing this option you need to delete any form_*.png files in -+# the HTML output directory before the changes have effect. -+# The default value is: YES. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+FORMULA_TRANSPARENT = YES -+ -+# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -+# http://www.mathjax.org) which uses client side Javascript for the rendering -+# instead of using prerendered bitmaps. Use this if you do not have LaTeX -+# installed or if you want to formulas look prettier in the HTML output. When -+# enabled you may also need to install MathJax separately and configure the path -+# to it using the MATHJAX_RELPATH option. -+# The default value is: NO. -+# This tag requires that the tag GENERATE_HTML is set to YES. -+ -+USE_MATHJAX = NO -+ -+# When MathJax is enabled you can set the default output format to be used for -+# the MathJax output. See the MathJax site (see: -+# http://docs.mathjax.org/en/latest/output.html) for more details. -+# Possible values are: HTML-CSS (which is slower, but has the best -+# compatibility), NativeMML (i.e. MathML) and SVG. -+# The default value is: HTML-CSS. -+# This tag requires that the tag USE_MATHJAX is set to YES. -+ -+MATHJAX_FORMAT = HTML-CSS -+ -+# When MathJax is enabled you need to specify the location relative to the HTML -+# output directory using the MATHJAX_RELPATH option. The destination directory -+# should contain the MathJax.js script. For instance, if the mathjax directory -+# is located at the same level as the HTML output directory, then -+# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -+# Content Delivery Network so you can quickly see the result without installing -+# MathJax. However, it is strongly recommended to install a local copy of -+# MathJax from http://www.mathjax.org before deployment. -+# The default value is: http://cdn.mathjax.org/mathjax/latest. -+# This tag requires that the tag USE_MATHJAX is set to YES. -+ -+MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest -+ -+# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -+# extension names that should be enabled during MathJax rendering. For example -+# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -+# This tag requires that the tag USE_MATHJAX is set to YES. -+ -+MATHJAX_EXTENSIONS = -+ -+# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -+# of code that will be used on startup of the MathJax code. See the MathJax site -+# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an -+# example see the documentation. -+# This tag requires that the tag USE_MATHJAX is set to YES. -+ -+MATHJAX_CODEFILE = -+ -+# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -+# the HTML output. The underlying search engine uses javascript and DHTML and -+# should work on any modern browser. Note that when using HTML help -+# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -+# there is already a search function so this one should typically be disabled. -+# For large projects the javascript based search engine can be slow, then -+# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -+# search using the keyboard; to jump to the search box use + S -+# (what the is depends on the OS and browser, but it is typically -+# , /