diff --git a/desktop/lxde/libfm/pspec.xml b/desktop/lxde/libfm/pspec.xml index 8fff2b43b7..6a08b0d08f 100644 --- a/desktop/lxde/libfm/pspec.xml +++ b/desktop/lxde/libfm/pspec.xml @@ -13,7 +13,7 @@ desktop.lxde Library for file management. libfm is a LXDE library for file management. - https://github.com/lxde/releases/raw/master/releases/libfm-1.4.0.tar.xz + https://github.com/lxde/releases/raw/master/releases/libfm-1.4.1.tar.xz intltool atk-devel @@ -109,6 +109,13 @@ + + 2026-02-08 + 1.4.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2025-06-12 1.4.0 diff --git a/desktop/lxde/lxmenu-data/pspec.xml b/desktop/lxde/lxmenu-data/pspec.xml index 93ab227b30..51dd35f2f9 100644 --- a/desktop/lxde/lxmenu-data/pspec.xml +++ b/desktop/lxde/lxmenu-data/pspec.xml @@ -12,7 +12,7 @@ data freedesktop.org application menu definition files lxqt-menu-data is freedesktop.org application menu definition files - https://github.com/lxde/releases/raw/master/releases/lxmenu-data-0.1.6.tar.xz + https://github.com/lxde/releases/raw/master/releases/lxmenu-data-0.1.7.tar.xz intltool gettext-devel @@ -29,6 +29,13 @@ + + 2026-02-08 + 0.1.7 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2025-06-21 0.1.6 diff --git a/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch b/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch deleted file mode 100644 index cf79ca77f5..0000000000 --- a/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001 -From: Michael Biebl -Date: Tue, 17 Apr 2012 13:29:09 +0200 -Subject: [PATCH] Fix installation of HTML images for absolute paths - -when using out-of-tree builds. - -Bug: https://bugzilla.gnome.org/show_bug.cgi?id=674163 -Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656803 ---- - gtk-doc.make | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -Index: gtk+-3.6.4/gtk-doc.make -=================================================================== ---- gtk+-3.6.4.orig/gtk-doc.make 2013-01-10 16:03:56.697595578 +1300 -+++ gtk+-3.6.4/gtk-doc.make 2013-01-10 16:03:56.693595578 +1300 -@@ -173,8 +173,8 @@ - if test -f $(abs_srcdir)/$$file ; then \ - cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ - fi; \ -- if test -f $(abs_builddir)/$$file ; then \ -- cp $(abs_builddir)/$$file $(abs_builddir)/html; \ -+ if test -f $$file ; then \ -+ cp $$file $(abs_builddir)/html; \ - fi; \ - done; - $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) diff --git a/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch b/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch deleted file mode 100644 index 6a892b3d6d..0000000000 --- a/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch +++ /dev/null @@ -1,76 +0,0 @@ -Description: "ubuntu-almost-fixed-height" private property to speed-up software-center -Bug: https://bugzilla.gnome.org/607447 -Bug-Ubuntu: https://launchpad.net/bugs/514879 - -=== modified file 'gtk/gtktreeview.c' -Index: gtk+-3.6.4/gtk/gtktreeview.c -=================================================================== ---- gtk+-3.6.4.orig/gtk/gtktreeview.c 2013-01-10 16:03:58.421595565 +1300 -+++ gtk+-3.6.4/gtk/gtktreeview.c 2013-01-10 16:03:58.417595565 +1300 -@@ -462,6 +462,7 @@ - - guint fixed_height_mode : 1; - guint fixed_height_check : 1; -+ guint ubuntu_almost_fixed_height_mode : 1; - - guint reorderable : 1; - guint header_has_focus : 1; -@@ -552,6 +553,7 @@ - PROP_ENABLE_SEARCH, - PROP_SEARCH_COLUMN, - PROP_FIXED_HEIGHT_MODE, -+ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE, - PROP_HOVER_SELECTION, - PROP_HOVER_EXPAND, - PROP_SHOW_EXPANDERS, -@@ -1075,6 +1077,15 @@ - P_("Speeds up GtkTreeView by assuming that all rows have the same height"), - FALSE, - GTK_PARAM_READWRITE)); -+ -+ /* Private ubuntu extension to fix bugzilla bug #607447 */ -+ g_object_class_install_property (o_class, -+ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE, -+ g_param_spec_boolean ("ubuntu-almost-fixed-height-mode", -+ "Private Ubuntu extension", -+ "Private Ubuntu extension", -+ FALSE, -+ GTK_PARAM_READWRITE)); - - /** - * GtkTreeView:hover-selection: -@@ -1736,6 +1747,7 @@ - tree_view->priv->fixed_height = -1; - tree_view->priv->fixed_height_mode = FALSE; - tree_view->priv->fixed_height_check = 0; -+ tree_view->priv->ubuntu_almost_fixed_height_mode = FALSE; - tree_view->priv->selection = _gtk_tree_selection_new_with_tree_view (tree_view); - tree_view->priv->enable_search = TRUE; - tree_view->priv->search_column = -1; -@@ -1828,6 +1840,9 @@ - case PROP_FIXED_HEIGHT_MODE: - gtk_tree_view_set_fixed_height_mode (tree_view, g_value_get_boolean (value)); - break; -+ case PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE: -+ tree_view->priv->ubuntu_almost_fixed_height_mode = g_value_get_boolean (value); -+ break; - case PROP_HOVER_SELECTION: - tree_view->priv->hover_selection = g_value_get_boolean (value); - break; -@@ -8740,7 +8755,15 @@ - - _gtk_tree_view_accessible_changed (tree_view, tree, node); - -- if (tree_view->priv->fixed_height_mode -+ if (tree_view->priv->ubuntu_almost_fixed_height_mode -+ && tree_view->priv->fixed_height >= 0) -+ { -+ _gtk_rbtree_node_mark_invalid (tree, node); -+ validate_visible_area (tree_view); -+ if (gtk_widget_get_realized (GTK_WIDGET (tree_view))) -+ gtk_tree_view_node_queue_redraw (tree_view, tree, node); -+ } -+ else if (tree_view->priv->fixed_height_mode - && tree_view->priv->fixed_height >= 0) - { - _gtk_rbtree_node_set_height (tree, node, tree_view->priv->fixed_height); diff --git a/desktop/toolkit/gtk/gtk3/pspec.xml b/desktop/toolkit/gtk/gtk3/pspec.xml index 9d3b54e67e..f141779b48 100644 --- a/desktop/toolkit/gtk/gtk3/pspec.xml +++ b/desktop/toolkit/gtk/gtk3/pspec.xml @@ -12,7 +12,7 @@ gtk The GIMP Toolkit version 3 GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - mirrors://gnome/gtk/3.24/gtk-3.24.50.tar.xz + mirrors://gnome/gtk/3.24/gtk-3.24.51.tar.xz meson atk-devel @@ -37,7 +37,6 @@ gtk-doc python-six graphite2-devel - libcloudproviders-devel fribidi-devel harfbuzz-devel @@ -45,15 +44,13 @@ libxkbcommon-devel docbook-xsl sassc - wayland-devel wayland-cursor wayland-client wayland-protocols-devel - - + @@ -67,9 +64,7 @@ atk pango libXi - cairo - libXext libXrandr libXfixes @@ -84,15 +79,10 @@ graphite2 libcloudproviders icon-theme-adwaita - - - fribidi freetype harfbuzz libxkbcommon - wayland wayland-cursor wayland-client @@ -126,12 +116,6 @@ GTK demo application gtk3 - - - - - - /usr/bin/gtk3-demo @@ -152,13 +136,15 @@ gtk3-devel Development files for gtk3 - gtk3 atk-devel pango-devel - libX11-devel libXi-devel cairo-devel glib2-devel + libXi-devel + libX11-devel + fribidi-devel + wayland-devel libXext-devel libepoxy-devel libXfixes-devel @@ -169,12 +155,11 @@ libXcursor-devel libXinerama-devel at-spi2-atk-devel - libXcomposite-devel - fribidi-devel - wayland-devel - libcloudproviders-devel libxkbcommon-devel + libXcomposite-devel + libcloudproviders-devel wayland-protocols-devel + gtk3 /usr/include @@ -240,6 +225,13 @@ --> + + 2026-02-08 + 3.24.51 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-08-07 3.24.50 diff --git a/hardware/scannner/component.xml b/hardware/scanner/component.xml similarity index 100% rename from hardware/scannner/component.xml rename to hardware/scanner/component.xml diff --git a/hardware/scannner/sane-backends/actions.py b/hardware/scanner/sane-backends/actions.py similarity index 100% rename from hardware/scannner/sane-backends/actions.py rename to hardware/scanner/sane-backends/actions.py diff --git a/hardware/scannner/sane-backends/files/30sane b/hardware/scanner/sane-backends/files/30sane similarity index 100% rename from hardware/scannner/sane-backends/files/30sane rename to hardware/scanner/sane-backends/files/30sane diff --git a/hardware/scannner/sane-backends/files/archlinux/network.patch b/hardware/scanner/sane-backends/files/archlinux/network.patch similarity index 100% rename from hardware/scannner/sane-backends/files/archlinux/network.patch rename to hardware/scanner/sane-backends/files/archlinux/network.patch diff --git a/hardware/scannner/sane-backends/files/archlinux/segfault-avahi-fix-kodakio.patch b/hardware/scanner/sane-backends/files/archlinux/segfault-avahi-fix-kodakio.patch similarity index 100% rename from hardware/scannner/sane-backends/files/archlinux/segfault-avahi-fix-kodakio.patch rename to hardware/scanner/sane-backends/files/archlinux/segfault-avahi-fix-kodakio.patch diff --git a/hardware/scannner/sane-backends/files/fix-buffer-overflow.patch b/hardware/scanner/sane-backends/files/fix-buffer-overflow.patch similarity index 100% rename from hardware/scannner/sane-backends/files/fix-buffer-overflow.patch rename to hardware/scanner/sane-backends/files/fix-buffer-overflow.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.20-open-macro.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.20-open-macro.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.20-open-macro.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.20-open-macro.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.21-epson-expression800.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.21-epson-expression800.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.21-epson-expression800.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.21-epson-expression800.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.23-sane-config-multilib.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.23-sane-config-multilib.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.23-sane-config-multilib.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.23-sane-config-multilib.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.23-soname.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.23-soname.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.23-soname.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.23-soname.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.23-udev.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.23-udev.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.23-udev.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.23-udev.patch diff --git a/hardware/scannner/sane-backends/files/sane-backends-1.0.25-udev.patch b/hardware/scanner/sane-backends/files/sane-backends-1.0.25-udev.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-backends-1.0.25-udev.patch rename to hardware/scanner/sane-backends/files/sane-backends-1.0.25-udev.patch diff --git a/hardware/scannner/sane-backends/files/sane-epson2-disable-focus.patch b/hardware/scanner/sane-backends/files/sane-epson2-disable-focus.patch similarity index 100% rename from hardware/scannner/sane-backends/files/sane-epson2-disable-focus.patch rename to hardware/scanner/sane-backends/files/sane-epson2-disable-focus.patch diff --git a/hardware/scannner/sane-backends/files/sane.png b/hardware/scanner/sane-backends/files/sane.png similarity index 100% rename from hardware/scannner/sane-backends/files/sane.png rename to hardware/scanner/sane-backends/files/sane.png diff --git a/hardware/scannner/sane-backends/files/suse/fix-mustek_pp_ccd300.c.patch b/hardware/scanner/sane-backends/files/suse/fix-mustek_pp_ccd300.c.patch similarity index 100% rename from hardware/scannner/sane-backends/files/suse/fix-mustek_pp_ccd300.c.patch rename to hardware/scanner/sane-backends/files/suse/fix-mustek_pp_ccd300.c.patch diff --git a/hardware/scannner/sane-backends/pspec.xml b/hardware/scanner/sane-backends/pspec.xml similarity index 100% rename from hardware/scannner/sane-backends/pspec.xml rename to hardware/scanner/sane-backends/pspec.xml diff --git a/hardware/scannner/sane-backends/translations.xml b/hardware/scanner/sane-backends/translations.xml similarity index 100% rename from hardware/scannner/sane-backends/translations.xml rename to hardware/scanner/sane-backends/translations.xml diff --git a/hardware/scannner/sane-frontends/actions.py b/hardware/scanner/sane-frontends/actions.py similarity index 100% rename from hardware/scannner/sane-frontends/actions.py rename to hardware/scanner/sane-frontends/actions.py diff --git a/hardware/scannner/sane-frontends/files/sane-frontends-1.0.14-array-out-of-bounds.patch b/hardware/scanner/sane-frontends/files/sane-frontends-1.0.14-array-out-of-bounds.patch similarity index 100% rename from hardware/scannner/sane-frontends/files/sane-frontends-1.0.14-array-out-of-bounds.patch rename to hardware/scanner/sane-frontends/files/sane-frontends-1.0.14-array-out-of-bounds.patch diff --git a/hardware/scannner/sane-frontends/files/sane-frontends-1.0.14-sane-backends-1.0.20.patch b/hardware/scanner/sane-frontends/files/sane-frontends-1.0.14-sane-backends-1.0.20.patch similarity index 100% rename from hardware/scannner/sane-frontends/files/sane-frontends-1.0.14-sane-backends-1.0.20.patch rename to hardware/scanner/sane-frontends/files/sane-frontends-1.0.14-sane-backends-1.0.20.patch diff --git a/hardware/scannner/sane-frontends/pspec.xml b/hardware/scanner/sane-frontends/pspec.xml similarity index 100% rename from hardware/scannner/sane-frontends/pspec.xml rename to hardware/scanner/sane-frontends/pspec.xml diff --git a/hardware/scannner/sane-frontends/translations.xml b/hardware/scanner/sane-frontends/translations.xml similarity index 100% rename from hardware/scannner/sane-frontends/translations.xml rename to hardware/scanner/sane-frontends/translations.xml diff --git a/hardware/scannner/skanlite/actions.py b/hardware/scanner/skanlite/actions.py similarity index 100% rename from hardware/scannner/skanlite/actions.py rename to hardware/scanner/skanlite/actions.py diff --git a/hardware/scannner/skanlite/pspec.xml b/hardware/scanner/skanlite/pspec.xml similarity index 100% rename from hardware/scannner/skanlite/pspec.xml rename to hardware/scanner/skanlite/pspec.xml diff --git a/hardware/scannner/skanlite/translations.xml b/hardware/scanner/skanlite/translations.xml similarity index 100% rename from hardware/scannner/skanlite/translations.xml rename to hardware/scanner/skanlite/translations.xml diff --git a/multimedia/editor/puddletag/pspec.xml b/multimedia/editor/puddletag/pspec.xml index 3841918949..c451a0ac98 100644 --- a/multimedia/editor/puddletag/pspec.xml +++ b/multimedia/editor/puddletag/pspec.xml @@ -13,7 +13,7 @@ multimedia.editor Puddletag is an audio tag editor (primarily created) for GNU/Linux. Supported formats: ID3v1, ID3v2 (mp3), MP4 (mp4, m4a, etc.), VorbisComments (ogg, flac), Musepack (mpc), Monkey’s Audio (.ape) and WavPack (wv). - https://files.pythonhosted.org/packages/source/p/puddletag/puddletag-2.4.0.tar.gz + https://files.pythonhosted.org/packages/source/p/puddletag/puddletag-2.5.0.tar.gz python3-devel python3-setuptools @@ -48,6 +48,13 @@ + + 2026-02-08 + 2.5.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + 2025-02-09 2.4.0 diff --git a/multimedia/sound/libopenmpt/actions.py b/multimedia/sound/libopenmpt/actions.py index af15b4136f..a598def242 100755 --- a/multimedia/sound/libopenmpt/actions.py +++ b/multimedia/sound/libopenmpt/actions.py @@ -2,28 +2,19 @@ # -*- 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 -NoStrip = ["/usr/lib"] - def setup(): - autotools.autoreconf("-vfi") - autotools.configure("--disable-static \ - --without-portaudiocpp") + autotools.configure("--prefix=/usr --disable-static") - def build(): - autotools.make() def install(): - autotools.rawInstall("DESTDIR=%s" %get.installDIR()) - - pisitools.dodoc("LICENSE", "README.md") + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.dodoc("LICENSE", "README.md") diff --git a/multimedia/sound/libopenmpt/pspec.xml b/multimedia/sound/libopenmpt/pspec.xml index c76a5cdb06..291bd8e43f 100755 --- a/multimedia/sound/libopenmpt/pspec.xml +++ b/multimedia/sound/libopenmpt/pspec.xml @@ -1,18 +1,18 @@ - + libopenmpt - http://lib.openmpt.org/ + https://lib.openmpt.org/libopenmpt/ - Mathias Freire - mathiasfreire45@gmail.com + Mathias Freire + mathiasfreire45@gmail.com - BSD - library + BSD + library A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. - https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz + https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.52+release.autotools.tar.gz flac-devel zlib-devel @@ -24,7 +24,7 @@ pulseaudio-libs-devel - + libopenmpt @@ -32,7 +32,7 @@ zlib libgcc libogg - mpg123 + mpg123 libvorbis portaudio libsndfile @@ -45,7 +45,7 @@ /usr/share/man - + libopenmpt-devel Header files for libopenmpt. @@ -58,7 +58,14 @@ - + + + 2026-02-08 + 0.4.52 + Past release + Idris Kalp + lpd_iriska@gmail.com + 2020-01-14 0.4.11 @@ -68,6 +75,3 @@ - - - diff --git a/programming/misc/onetbb/pspec.xml b/programming/misc/onetbb/pspec.xml index 2c1d62916a..b5316aac18 100644 --- a/programming/misc/onetbb/pspec.xml +++ b/programming/misc/onetbb/pspec.xml @@ -13,7 +13,7 @@ onetbb oneAPI Threading Building Blocks. A flexible C++ library that simplifies the work of adding parallelism to complex applications. - https://github.com/uxlfoundation/oneTBB/archive/v2022.2.0/oneTBB-v2022.2.0.tar.gz + https://github.com/uxlfoundation/oneTBB/archive/v2022.3.0/oneTBB-v2022.3.0.tar.gz swig ninja @@ -68,6 +68,13 @@ + + 2026-02-08 + 2022.3.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2025-10-21 2022.2.0 diff --git a/util/dock/plank/pspec.xml b/util/dock/plank/pspec.xml index 8d5e2a572a..8c6cc21361 100644 --- a/util/dock/plank/pspec.xml +++ b/util/dock/plank/pspec.xml @@ -13,7 +13,7 @@ app Plank reloaded. Still stupidly simple. A simplest dock. Also it is library which can be extended to create other dock programs with more advanced features. - https://github.com/zquestz/plank-reloaded/archive/0.11.153/plank-reloaded-0.11.153.tar.gz + https://github.com/zquestz/plank-reloaded/archive/0.11.161/plank-reloaded-0.11.161.tar.gz meson atk-devel @@ -91,6 +91,13 @@ + + 2026-02-08 + 0.11.161 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2025-10-19 0.11.153 diff --git a/x11/wm/i3wm/pspec.xml b/x11/wm/i3wm/pspec.xml index 448bfad013..3db53afd5a 100644 --- a/x11/wm/i3wm/pspec.xml +++ b/x11/wm/i3wm/pspec.xml @@ -11,7 +11,7 @@ BSDv3 A tiling window manager for X11. A tiling window manager, completely written from scratch. - https://i3wm.org/downloads/i3-4.24.tar.xz + https://i3wm.org/downloads/i3-4.25.1.tar.xz meson xmlto @@ -89,6 +89,13 @@ + + 2026-02-08 + 4.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2025-02-06 4.24