From 70f86a916109db3f8aafd0829cfddb1848310e01 Mon Sep 17 00:00:00 2001 From: uglyside Date: Sat, 19 Apr 2025 18:52:22 +0300 Subject: [PATCH 1/3] gcab. --- util/archive/gcab/actions.py | 21 +++++++++++ util/archive/{gcap => gcab}/pspec.xml | 54 +++++++++++++-------------- util/archive/gcap/actions.py | 25 ------------- 3 files changed, 48 insertions(+), 52 deletions(-) create mode 100644 util/archive/gcab/actions.py rename util/archive/{gcap => gcab}/pspec.xml (63%) delete mode 100644 util/archive/gcap/actions.py diff --git a/util/archive/gcab/actions.py b/util/archive/gcab/actions.py new file mode 100644 index 0000000000..77dd6d1df7 --- /dev/null +++ b/util/archive/gcab/actions.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# 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, pisitools + +def setup(): + mesontools.configure("-Ddocs=false") + +def build(): + mesontools.build() + +def check(): + mesontools.build("test") + +def install(): + mesontools.install() + + pisitools.dodoc("COPYING") diff --git a/util/archive/gcap/pspec.xml b/util/archive/gcab/pspec.xml similarity index 63% rename from util/archive/gcap/pspec.xml rename to util/archive/gcab/pspec.xml index 0dd8509442..081702059a 100644 --- a/util/archive/gcap/pspec.xml +++ b/util/archive/gcab/pspec.xml @@ -1,33 +1,30 @@ - + - gcap - https://wiki.gnome.org/msitools + gcab + https://gitlab.gnome.org/GNOME/gcab Ertuğrul Erata ertugrulerata@gmail.com - LGPL2.1 + LGPLv2.1 app:console - Library and tool for working with Microsoft Cabinet (CAB) files - Library and tool for working with Microsoft Cabinet (CAB) files - http://ftp.gnome.org/pub/GNOME/sources/gcab/1.5/gcab-1.5.tar.xz + util.archive + Cabinet file library. + A GObject library to create cabinet files. + https://download.gnome.org/sources/gcab/1.6/gcab-1.6.tar.xz - python-six - glib2-devel - vala-devel - zlib-devel - intltool - gtk-doc - gobject-introspection-devel meson - docbook-xsl + zlib-devel + vala-devel + glib2-devel + gobject-introspection-devel - gcap + gcab zlib glib2 @@ -35,29 +32,32 @@ /usr/bin /usr/lib - /usr/share/locale - /usr/share/gtk-doc - /usr/share/doc - /usr/share/man - /usr/share/gir-1.0/GCab-1.0.gir - /usr/share/vala + /usr/share - + - gcap-devel + gcab-devel - gcap - zlib-devel glib2-devel + gcab /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + 2025-04-15 + 1.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-08-05 1.5 diff --git a/util/archive/gcap/actions.py b/util/archive/gcap/actions.py deleted file mode 100644 index 02d2b3395a..0000000000 --- a/util/archive/gcap/actions.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/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 - - -from pisi.actionsapi import get -from pisi.actionsapi import mesontools -from pisi.actionsapi import pisitools - - -def setup(): - pisitools.dosed("meson.build", "check: true", "check: false") - mesontools.configure() - -def build(): - mesontools.build() - -def check(): - mesontools.build("test") - -def install(): - mesontools.install() - pisitools.dodoc("COPYING", "README.md") From 89016cd2a83d2dd7da7e84b9355e6310a3465c36 Mon Sep 17 00:00:00 2001 From: uglyside Date: Sat, 19 Apr 2025 18:53:09 +0300 Subject: [PATCH 2/3] fcgi2 security update. --- programming/tool/fcgi/actions.py | 19 +++++-------------- programming/tool/fcgi/pspec.xml | 26 ++++++++++++++------------ 2 files changed, 19 insertions(+), 26 deletions(-) diff --git a/programming/tool/fcgi/actions.py b/programming/tool/fcgi/actions.py index e3450f8945..7e4b719669 100644 --- a/programming/tool/fcgi/actions.py +++ b/programming/tool/fcgi/actions.py @@ -2,29 +2,20 @@ # -*- 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 shelltools from pisi.actionsapi import get -#WorkDir = "%s-%s-SNAP-0311112127" % (get.srcNAME(), get.srcVERSION()) - def setup(): - #libtools.libtoolize("--copy --force") - #autotools.aclocal() - shelltools.system("sh ./autogen.sh") - autotools.configure("--enable-static=no") + autotools.autoreconf("-fi") + autotools.configure("--prefix=/usr --enable-static=no") def build(): - autotools.make("-j1") + autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("LICENSE.TERMS", "README*") - pisitools.dohtml("doc/*.html", "doc/*.gif", "doc/fastcgi-prog-guide/*.*", "doc/fastcgi-whitepaper/*.*") - pisitools.doman("doc/cgi-fcgi.1", "doc/FCGI_Accept.3", "doc/FCGI_Finish.3", "doc/FCGI_SetExitStatus.3", "doc/FCGI_StartFilterData.3") - + pisitools.dodoc("LICENSE") diff --git a/programming/tool/fcgi/pspec.xml b/programming/tool/fcgi/pspec.xml index 7e1c3a9a3f..7b6dbd1833 100644 --- a/programming/tool/fcgi/pspec.xml +++ b/programming/tool/fcgi/pspec.xml @@ -1,24 +1,20 @@ - + fcgi - http://www.fastcgi.com/drupal + https://fastcgi-archives.github.io/ PisiLinux Community admins@pisilinux.org BSD library - FastCGI development kit + FastCGI Developer's Kit. FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. - https://github.com/FastCGI-Archives/fcgi2/archive/2.4.2.tar.gz + https://github.com/FastCGI-Archives/fcgi2/archive/2.4.5/fcgi2-2.4.5.tar.gz - + @@ -27,8 +23,7 @@ /usr/bin /usr/lib - /usr/share/doc/fcgi - /usr/share/man + /usr/share @@ -40,11 +35,18 @@ /usr/include - /usr/share/man/man3 + /usr/lib/pkgconfig + + 2025-04-19 + 2.4.5 + Critical bugfix. + Pisi Linux Admins + admins@pisilinux.org + 2020-03-21 2.4.2 From 6c668afcf9b5daad3dbe490c8a274f98101bab7f Mon Sep 17 00:00:00 2001 From: uglyside Date: Sat, 19 Apr 2025 18:58:24 +0300 Subject: [PATCH 3/3] cvdupdate-1.1.2 --- .../language/python3/python3-click/actions.py | 11 +- .../language/python3/python3-click/pspec.xml | 17 ++- .../python3/python3-colorama/actions.py | 8 +- .../python3/python3-colorama/pspec.xml | 16 ++- .../python3/python3-coloredlogs/actions.py | 7 +- .../python3/python3-coloredlogs/pspec.xml | 106 ++++++++-------- .../python3/python3-dnspython/actions.py | 13 +- .../python3/python3-dnspython/pspec.xml | 34 ++--- .../python3/python3-humanfriendly/actions.py | 7 +- .../python3/python3-humanfriendly/pspec.xml | 99 +++++++-------- .../python3-rangehttpserver/actions.py | 4 +- .../python3/python3-rangehttpserver/pspec.xml | 104 +++++++-------- util/antivirus/cvdupdate/actions.py | 4 +- util/antivirus/cvdupdate/pspec.xml | 120 +++++++++--------- 14 files changed, 288 insertions(+), 262 deletions(-) diff --git a/programming/language/python3/python3-click/actions.py b/programming/language/python3/python3-click/actions.py index 23ea111e7b..9475590ba1 100644 --- a/programming/language/python3/python3-click/actions.py +++ b/programming/language/python3/python3-click/actions.py @@ -4,15 +4,12 @@ # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt -from pisi.actionsapi import pythonmodules +from pisi.actionsapi import python3modules from pisi.actionsapi import pisitools -from pisi.actionsapi import get def build(): - pythonmodules.compile(pyVer="3") + python3modules.compile() def install(): - pythonmodules.install(pyVer="3") - pisitools.dodoc("LICENSE*") - for dirs in ["examples"]: - pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), dirs) \ No newline at end of file + python3modules.install() + pisitools.dodoc("LICENSE.txt") diff --git a/programming/language/python3/python3-click/pspec.xml b/programming/language/python3/python3-click/pspec.xml index e97054f510..b10ff52326 100644 --- a/programming/language/python3/python3-click/pspec.xml +++ b/programming/language/python3/python3-click/pspec.xml @@ -12,11 +12,13 @@ BSD-3 library Python3 composable command line interface toolkit - Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. - https://github.com/pallets/click/archive/refs/tags/8.1.3.tar.gz + Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. + https://files.pythonhosted.org/packages/source/c/click/click-8.1.8.tar.gz - python3-setuptools - python3 + python3-devel + python3-wheel + python3-build + python3-installer @@ -33,6 +35,13 @@ + + 2025-04-16 + 8.1.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2023-10-17 8.1.3 diff --git a/programming/language/python3/python3-colorama/actions.py b/programming/language/python3/python3-colorama/actions.py index 4152599a80..c206c08994 100644 --- a/programming/language/python3/python3-colorama/actions.py +++ b/programming/language/python3/python3-colorama/actions.py @@ -3,13 +3,13 @@ # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/copyleft/gpl.txt -from pisi.actionsapi import pythonmodules +from pisi.actionsapi import python3modules from pisi.actionsapi import pisitools def build(): - pythonmodules.compile(pyVer="3") + python3modules.compile() def install(): - pythonmodules.install(pyVer="3") + python3modules.install() - pisitools.dodoc("LICENSE*") \ No newline at end of file + pisitools.dodoc("LICENSE.txt") diff --git a/programming/language/python3/python3-colorama/pspec.xml b/programming/language/python3/python3-colorama/pspec.xml index 019857d5d5..601fb70633 100644 --- a/programming/language/python3/python3-colorama/pspec.xml +++ b/programming/language/python3/python3-colorama/pspec.xml @@ -13,12 +13,15 @@ library Cross-platform colored terminal text. Python API for cross-platform colored terminal text. - https://github.com/tartley/colorama/archive/0.4.4.tar.gz + https://files.pythonhosted.org/packages/source/c/colorama/colorama-0.4.6.tar.gz python3-devel + python3-wheel + python3-build + python3-hatchling - + python3-colorama Cross-platform colored terminal text. @@ -30,8 +33,15 @@ /usr/share/doc/python3-colorama - + + + 2025-04-16 + 0.4.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2023-10-17 0.4.4 diff --git a/programming/language/python3/python3-coloredlogs/actions.py b/programming/language/python3/python3-coloredlogs/actions.py index b2ccc86d69..f4cf75c7b6 100644 --- a/programming/language/python3/python3-coloredlogs/actions.py +++ b/programming/language/python3/python3-coloredlogs/actions.py @@ -5,9 +5,12 @@ # See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import pythonmodules +from pisi.actionsapi import pisitools def build(): - pythonmodules.compile(pyVer = '3') + pythonmodules.compile(pyVer = '3') def install(): - pythonmodules.install(pyVer = '3') + pythonmodules.install(pyVer = '3') + + pisitools.dodoc("LICENSE.txt") diff --git a/programming/language/python3/python3-coloredlogs/pspec.xml b/programming/language/python3/python3-coloredlogs/pspec.xml index 66eba61dc0..f595710313 100644 --- a/programming/language/python3/python3-coloredlogs/pspec.xml +++ b/programming/language/python3/python3-coloredlogs/pspec.xml @@ -1,57 +1,61 @@ - - python3-coloredlogs - https://coloredlogs.readthedocs.io/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language.python3 - Colored terminal output for Python’s logging module. - The coloredlogs package enables colored terminal output for Python’s logging module. - - https://files.pythonhosted.org/packages/source/c/coloredlogs/coloredlogs-15.0.1.tar.gz - - - python3-devel - python3-setuptools - python3-importlib_metadata - - - - - + + python3-coloredlogs + https://coloredlogs.readthedocs.io/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language.python3 + Colored terminal output for Python’s logging module. + The coloredlogs package enables colored terminal output for Python’s logging module. + https://files.pythonhosted.org/packages/source/c/coloredlogs/coloredlogs-15.0.1.tar.gz + + python3-devel + python3-setuptools + + + + + - - python3-coloredlogs - - python3-colorama - - - /usr/bin - /usr/lib/python3* - /usr/share/doc - - + + python3-coloredlogs + + python3-humanfriendly + + + /usr/bin + /usr/lib/python3* + /usr/share/doc + + - - - 2023-10-17 - 15.0.1 - Rebuild. - fury - uglyside@yandex.ru - - - 2022-11-15 - 15.0.1 - First build. - fury - uglyside@yandex.ru - - + + + 2025-04-16 + 15.0.1 + Rebuild. + fury + uglyside@yandex.ru + + + 2023-10-17 + 15.0.1 + Rebuild. + fury + uglyside@yandex.ru + + + 2022-11-15 + 15.0.1 + First build. + fury + uglyside@yandex.ru + + diff --git a/programming/language/python3/python3-dnspython/actions.py b/programming/language/python3/python3-dnspython/actions.py index 222b976b3d..acb1176239 100644 --- a/programming/language/python3/python3-dnspython/actions.py +++ b/programming/language/python3/python3-dnspython/actions.py @@ -1,16 +1,13 @@ -#!/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 pythonmodules -from pisi.actionsapi import pisitools +from pisi.actionsapi import python3modules def build(): - pythonmodules.compile(pyVer="3") + python3modules.compile() def install(): - pythonmodules.install(pyVer="3") - - pisitools.dodoc("LICENSE", "README*") + python3modules.install() diff --git a/programming/language/python3/python3-dnspython/pspec.xml b/programming/language/python3/python3-dnspython/pspec.xml index ca01c613eb..1e685d2ae8 100644 --- a/programming/language/python3/python3-dnspython/pspec.xml +++ b/programming/language/python3/python3-dnspython/pspec.xml @@ -1,41 +1,34 @@ - + python3-dnspython - https://pypi.org/project/dnspython/ + https://www.dnspython.org/about/ Pisi Linux Admins admin@pisilinux.org ISC + programming.language.python3 app - A DNS toolkit for Python - A DNS toolkit for Python - https://files.pythonhosted.org/packages/13/27/5277de856f605f3429d752a39af3588e29d10181a3aa2e2ee471d817485a/dnspython-2.1.0.zip + A DNS toolkit for Python. + It can be used for queries, zone transfers, dynamic updates, nameserver testing, and many other things. + https://files.pythonhosted.org/packages/source/d/dnspython/dnspython-2.7.0.tar.gz python3-devel - python3-setuptools - python3-ecdsa - python3-idna - python3-pycryptodome + python3-wheel + python3-build + python3-hatchling - - --> python3-dnspython python3 - python3-setuptools - python3-ecdsa - python3-idna - python3-pycryptodome /usr/lib @@ -44,6 +37,13 @@ + + 2025-04-16 + 2.7.0 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + 2023-10-17 2.1.0 diff --git a/programming/language/python3/python3-humanfriendly/actions.py b/programming/language/python3/python3-humanfriendly/actions.py index b2ccc86d69..f4cf75c7b6 100644 --- a/programming/language/python3/python3-humanfriendly/actions.py +++ b/programming/language/python3/python3-humanfriendly/actions.py @@ -5,9 +5,12 @@ # See the file https://www.gnu.org/licenses/gpl-3.0.txt from pisi.actionsapi import pythonmodules +from pisi.actionsapi import pisitools def build(): - pythonmodules.compile(pyVer = '3') + pythonmodules.compile(pyVer = '3') def install(): - pythonmodules.install(pyVer = '3') + pythonmodules.install(pyVer = '3') + + pisitools.dodoc("LICENSE.txt") diff --git a/programming/language/python3/python3-humanfriendly/pspec.xml b/programming/language/python3/python3-humanfriendly/pspec.xml index 7cbe5177d0..a1a4cb979f 100644 --- a/programming/language/python3/python3-humanfriendly/pspec.xml +++ b/programming/language/python3/python3-humanfriendly/pspec.xml @@ -1,57 +1,54 @@ - - python3-humanfriendly - https://humanfriendly.readthedocs.io/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language.python3 - Human friendly input/output in Python. - The functions and classes in the humanfriendly package can be used to make text interfaces more user friendly. - - https://files.pythonhosted.org/packages/source/h/humanfriendly/humanfriendly-10.0.tar.gz - - - python3-devel - python3-setuptools - python3-importlib_metadata - - - - - + + python3-humanfriendly + https://humanfriendly.readthedocs.io/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language.python3 + Human friendly input/output in Python. + The functions and classes in the humanfriendly package can be used to make text interfaces more user friendly. + https://files.pythonhosted.org/packages/source/h/humanfriendly/humanfriendly-10.0.tar.gz + + python3-devel + python3-setuptools + + + + + - - python3-humanfriendly - - python3 - - - /usr/bin - /usr/lib/python3* - /usr/share/doc - - + + python3-humanfriendly + + python3 + + + /usr/bin + /usr/lib/python3* + /usr/share/doc + + - - - 2023-10-17 - 10.0 - Rebuild. - fury - uglyside@yandex.ru - - - 2022-11-15 - 10.0 - First build. - fury - uglyside@yandex.ru - - + + + 2023-10-17 + 10.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2022-11-15 + 10.0 + First build. + fury + uglyside@yandex.ru + + diff --git a/programming/language/python3/python3-rangehttpserver/actions.py b/programming/language/python3/python3-rangehttpserver/actions.py index b2ccc86d69..e6317e6654 100644 --- a/programming/language/python3/python3-rangehttpserver/actions.py +++ b/programming/language/python3/python3-rangehttpserver/actions.py @@ -7,7 +7,7 @@ from pisi.actionsapi import pythonmodules def build(): - pythonmodules.compile(pyVer = '3') + pythonmodules.compile(pyVer = '3') def install(): - pythonmodules.install(pyVer = '3') + pythonmodules.install(pyVer = '3') diff --git a/programming/language/python3/python3-rangehttpserver/pspec.xml b/programming/language/python3/python3-rangehttpserver/pspec.xml index 9e7d20594d..099a002674 100644 --- a/programming/language/python3/python3-rangehttpserver/pspec.xml +++ b/programming/language/python3/python3-rangehttpserver/pspec.xml @@ -1,56 +1,60 @@ - - python3-rangehttpserver - https://github.com/danvk/RangeHTTPServer - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.language.python3 - SimpleHTTPServer with support for Range requests. - SimpleHTTPServer with support for Range requests. - - https://files.pythonhosted.org/packages/source/r/rangehttpserver/rangehttpserver-1.2.0.tar.gz - - - python3-devel - python3-setuptools - python3-importlib_metadata - - - - - + + python3-rangehttpserver + https://github.com/danvk/RangeHTTPServer + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.language.python3 + SimpleHTTPServer with support for Range requests. + SimpleHTTPServer with support for Range requests. + https://files.pythonhosted.org/packages/source/r/rangehttpserver/rangehttpserver-1.4.0.tar.gz + + python3-devel + python3-setuptools + + + + + - - python3-rangehttpserver - - python3 - - - /usr/lib/python3* - /usr/share/doc - - + + python3-rangehttpserver + + python3 + + + /usr/lib + /usr/share + + - - - 2023-10-17 - 1.2.0 - Rebuild. - fury - uglyside@yandex.ru - - - 2022-11-15 - 1.2.0 - First build. - fury - uglyside@yandex.ru - - + + + 2025-04-16 + 1.4.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2023-10-17 + 1.2.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2022-11-15 + 1.2.0 + First build. + fury + uglyside@yandex.ru + + diff --git a/util/antivirus/cvdupdate/actions.py b/util/antivirus/cvdupdate/actions.py index b2ccc86d69..e6317e6654 100644 --- a/util/antivirus/cvdupdate/actions.py +++ b/util/antivirus/cvdupdate/actions.py @@ -7,7 +7,7 @@ from pisi.actionsapi import pythonmodules def build(): - pythonmodules.compile(pyVer = '3') + pythonmodules.compile(pyVer = '3') def install(): - pythonmodules.install(pyVer = '3') + pythonmodules.install(pyVer = '3') diff --git a/util/antivirus/cvdupdate/pspec.xml b/util/antivirus/cvdupdate/pspec.xml index c6e663f33d..07e80373d8 100644 --- a/util/antivirus/cvdupdate/pspec.xml +++ b/util/antivirus/cvdupdate/pspec.xml @@ -1,65 +1,67 @@ - - cvdupdate - https://github.com/Cisco-Talos/cvdupdate - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app - util.antivirus - ClamAV Private Database Mirror Updater Tool. - This tool downloads the latest ClamAV databases along with the latest database patch files. - - https://files.pythonhosted.org/packages/source/c/cvdupdate/cvdupdate-1.1.1.tar.gz - - - python3-devel - python3-setuptools - python3-importlib_metadata - - - - - + + cvdupdate + https://github.com/Cisco-Talos/cvdupdate + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app + util.antivirus + ClamAV Private Database Mirror Updater Tool. + This tool downloads the latest ClamAV databases along with the latest database patch files. + https://files.pythonhosted.org/packages/source/c/cvdupdate/cvdupdate-1.1.2.tar.gz + + python3-devel + python3-setuptools + + + + + - - cvdupdate - - python3-click - python3-certifi - python3-colorama - python3-requests - python3-dnspython - python3-coloredlogs - python3-rangehttpserver - python3-charset-normalizer - - - - /usr/bin - /usr/lib/python3* - /usr/share/doc - - + + cvdupdate + + python3-click + python3-certifi + python3-colorama + python3-requests + python3-dnspython + python3-coloredlogs + python3-rangehttpserver + + + /usr/bin + /usr/lib/python3* + /usr/share/doc + + - - - 2023-11-04 - 1.1.1 - Rebuild. - fury - uglyside@yandex.ru - - - 2022-11-15 - 1.1.1 - First build. - fury - uglyside@yandex.ru - - + + + 2025-04-16 + 1.1.2 + Rebuild. + fury + uglyside@yandex.ru + + + 2023-11-04 + 1.1.1 + Rebuild. + fury + uglyside@yandex.ru + + + 2022-11-15 + 1.1.1 + First build. + fury + uglyside@yandex.ru + +