diff --git a/multimedia/misc/libsdl3/actions.py b/multimedia/misc/libsdl3/actions.py new file mode 100644 index 0000000000..21bad43d30 --- /dev/null +++ b/multimedia/misc/libsdl3/actions.py @@ -0,0 +1,60 @@ +#!/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 autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import libtools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import get + +# WorkDir = "SDL2-%s" % get.srcVERSION() +docdir = "%s/%s" % (get.docDIR(), get.srcNAME()) + +def setup(): + shelltools.export("CFLAGS", "%s -fPIC -O3" % get.CFLAGS()) + shelltools.export("CXXFLAGS", "%s -fPIC -O3" % get.CXXFLAGS()) + + # for libtool version matching + #shelltools.copy("/usr/share/aclocal/ltversion.m4", "acinclude/") + # shelltools.system("./autogen.sh") + + #libtools.libtoolize("--force --copy") + + options = "-B build -G Ninja \ + -D SDL_STATIC=OFF \ + -D SDL_RPATH=OFF \ + " + + if get.buildTYPE() == "emul32": + options += " -DCMAKE_INSTALL_PREFIX=/emul32 -DCMAKE_INSTALL_LIBDIR=/usr/lib32 \ + " + + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + shelltools.export("CFLAGS", "%s -fPIC -O3 -m32" % get.CFLAGS()) + shelltools.export("CXXFLAGS", "%s -fPIC -O3 -m32" % get.CXXFLAGS()) + shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS()) + else: + options += " -DCMAKE_INSTALL_PREFIX=/usr" + + cmaketools.configure(options) + +def build(): + shelltools.system("ninja -C build") + +def install(): + shelltools.cd("build") + shelltools.system("DESTDIR=%s ninja install " % get.installDIR()) + libtools.preplib() + + if get.buildTYPE() == "emul32": + pisitools.dosed("%s/usr/lib32/cmake/SDL3/*.cmake" % get.installDIR(), "emul32", "usr") + pisitools.dosed("%s/usr/lib32/pkgconfig/*.pc" % get.installDIR(), "emul32", "usr") + pisitools.removeDir("/emul32") + return + + shelltools.cd("..") + pisitools.dodoc("BUGS.txt", "CREDITS.*", "README*", "WhatsNew.txt") diff --git a/multimedia/misc/libsdl3/pspec.xml b/multimedia/misc/libsdl3/pspec.xml new file mode 100644 index 0000000000..fde809dd6c --- /dev/null +++ b/multimedia/misc/libsdl3/pspec.xml @@ -0,0 +1,134 @@ + + + + + libsdl3 + https://www.libsdl.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + Zlib + library + Simple Direct Media Layer 2.0 series + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + https://github.com/libsdl-org/SDL/releases/download/release-3.2.24/SDL3-3.2.24.tar.gz + + cmake + ninja + DirectFB-devel + alsa-lib-devel + audiofile-devel + dbus-devel + ibus-devel + libXi-devel + vulkan-devel + libX11-devel + libXext-devel + libXinerama-devel + libXrandr-devel + libXrender-devel + libXt-devel + libXv-devel + libglvnd-devel + mesa-glu-devel + libXScrnSaver-devel + libxkbcommon-devel + egl-wayland-devel + wayland-protocols-devel + pulseaudio-libs-devel + + + + + + + + libsdl3 + libsdl3 reference documents + + DirectFB + alsa-lib + audiofile + libX11 + libXScrnSaver + libXext + libXinerama + libXrandr + libXrender + libXt + libglvnd + pulseaudio-libs + + + /usr/share/doc + /usr/lib/libSDL3.so + /usr/lib/libSDL3.a + /usr/lib/libSDL3.so.0 + /usr/lib/libSDL3.so.0.2.24 + /usr/lib/libSDL3_test.a + /usr/share/licenses/SDL3/LICENSE.txt + + + + + libsdl3-devel + Development files for libsdl3 + + libsdl3 + + + /usr/bin + /usr/include/SDL3 + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/lib/cmake/SDL3 + + + + + libsdl3-32bit + 32-bit shared libraries for libsdl3 + emul32 + + libXt-32bit + libX11-32bit + libXext-32bit + libglvnd-32bit + alsa-lib-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + + + libXt-32bit + libX11-32bit + libXext-32bit + alsa-lib-32bit + libglvnd-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + libsdl3 + + + /usr/lib32 + + + + + + 2025-10-23 + 3.2.24 + First release + Pisi Linux Community + admin@pisilinux.org + + + diff --git a/pisi-index.xml b/pisi-index.xml index b563f3b258..e48896245c 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -8906,7 +8906,7 @@ libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. libxcrypt is a modern library for one-way hashing of passwords. It supports a wide variety of both modern and historical hashing methods: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt. libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. Çok çeşitli modern ve tarihsel hashing yöntemlerini destekler: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt ve descrypt. - https://github.com/besser82/libxcrypt/archive/v4.4.36.tar.gz + https://github.com/besser82/libxcrypt/archive/v4.4.38.tar.gz glibc-devel @@ -8924,7 +8924,7 @@ libxcrypt-devel Development files for libxcrypt - libxcrypt + libxcrypt /usr/include @@ -8932,6 +8932,13 @@ + + 2025-10-16 + 4.4.38 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-08-18 4.4.36 @@ -12111,6 +12118,8 @@ 0014-kernel-6.5.patch 0015-kernel-6.6.patch 0016-kernel-6.8.patch + 0017-gcc-14.patch + 0018-gcc-15.patch kernel-module-headers @@ -14034,6 +14043,8 @@ kernel-6.8.patch kernel-6.10.patch kernel-6.12.patch + gcc-14.patch + gcc-15.patch kernel-module-headers @@ -18252,7 +18263,7 @@ Flightgear data files Contains base data files for Flightgear simulator. You can also install additional data files, including the 3 DVD sized world map from the original website. flightgear - https://sourceforge.net/projects/flightgear/files/release-2024.1/FlightGear-2024.1.1-data.txz/download + https://sourceforge.net/projects/flightgear/files/release-2024.1/FlightGear-2024.1.1-data.txz/download game/simulation/flightgear-data-base/pspec.xml @@ -18303,6 +18314,7 @@ flightgear https://gitlab.com/flightgear/fgmeta/-/jobs/11398677078/artifacts/raw/fgbuild/flightgear-2024.1.2.tar.bz2 + cmake plib-devel OpenSceneGraph-devel simgear-devel @@ -18317,6 +18329,7 @@ libX11-devel libgcc flite-devel + curl-devel freeglut-devel libevent-devel freetype-devel @@ -18326,6 +18339,7 @@ libpng-devel qt5-declarative-devel qt5-svg-devel + qt5-linguist game/simulation/flightgear/pspec.xml @@ -18360,10 +18374,12 @@ /usr/bin /usr/share/pixmaps /usr/share/zsh + /usr/share/icons /usr/share/icons/hicolor /usr/share/bash-completion/completions /usr/share/flightgear/ /usr/share/applications + /usr/share/metainfo flightgear.png @@ -19302,6 +19318,7 @@ cmake mesa-glu-devel xz-devel + curl-devel zlib-devel openal-devel ffmpeg-devel @@ -30725,11 +30742,13 @@ kguiaddons-devel kcoreaddons-devel kholidays-devel + networkmanager-qt-devel kunitconversion-devel qt6-sql-postgresql extra-cmake-modules knotifications-devel qt6-declarative-devel + plasma-activities-devel libksysguard-devel desktop/kde/plasma/plasma5-support/pspec.xml @@ -30754,11 +30773,14 @@ knotifications qt6-declarative qt6-sql-postgresql + networkmanager-qt + plasma-activities /usr/lib /usr/share/plasma5support /usr/share/qlogging-categories6 + /usr/share/plasma/weather_legacy/noaa_station_list.xml /usr/share/locale /usr/share/doc @@ -30878,6 +30900,7 @@ Karanlık-aydınlık döngüsünü planlamaya yardımcı araçlar https://download.kde.org/stable/plasma/6.5.0/knighttime-6.5.0.tar.xz + ki18n-devel kconfig-devel qt6-base-devel kholidays-devel @@ -33576,6 +33599,8 @@ qt6-positioning-devel qt6-virtualkeyboard-devel plasma-activities-stats-devel + knighttime-devel + libkexiv2-devel desktop/kde/plasma/plasma-workspace/pspec.xml @@ -33680,6 +33705,8 @@ qt6-declarative qt6-positioning plasma-activities-stats + knighttime + libkexiv2 /etc/pam.d @@ -34652,6 +34679,7 @@ talking to the kernel. scim-devel ibus-devel glib2-devel + ksvg-devel ki18n-devel icu4c-devel libxcb-devel @@ -34693,6 +34721,7 @@ talking to the kernel. kio ibus + ksvg glib2 ki18n icu4c @@ -35625,6 +35654,7 @@ talking to the kernel. kwayland-devel qt6-multimedia libplasma-devel + knighttime-devel qt6-wayland-devel qt6-5compat-devel qt6-sensors-devel @@ -35686,6 +35716,7 @@ talking to the kernel. xcb-util-cursor xcb-util-keysyms plasma-activities + knighttime libqaccessibilityclient-qt6 @@ -37957,6 +37988,7 @@ talking to the kernel. kwayland-devel qt6-multimedia libplasma-devel + knighttime-devel qt6-wayland-devel qt6-5compat-devel qt6-sensors-devel @@ -38023,6 +38055,7 @@ talking to the kernel. xcb-util-cursor xcb-util-keysyms plasma-activities + knighttime libqaccessibilityclient-qt6 @@ -39938,6 +39971,7 @@ talking to the kernel. knotifications-devel libaccounts-qt6-devel qt6-declarative-devel + qt6-shadertools-devel pulseaudio-libs-devel xorg-input-evdev-devel xcb-util-keysyms-devel @@ -40017,6 +40051,7 @@ talking to the kernel. packagekit-qt6 wayland-client libaccounts-qt6 + qt6-shadertools qt6-declarative plasma5-support kirigami-addons @@ -40045,7 +40080,7 @@ talking to the kernel. 2025-10-21 6.5.0 - Version bump. + Version bump Pisi Linux Community admin@pisilinux.org @@ -43810,6 +43845,7 @@ talking to the kernel. Development files for networkmanager-qt qt6-base-devel + NetworkManager-devel networkmanager-qt @@ -51935,7 +51971,7 @@ talking to the kernel. kio-extras-devel Development files for kio-extras - kio-extras + kio-extras /usr/include @@ -51946,8 +51982,8 @@ talking to the kernel. - - 2025-10-09 + + 2025-10-21 25.08.2 Version bump. Pisi Linux Community @@ -56930,7 +56966,7 @@ talking to the kernel. krdc-devel - krdc + krdc /usr/include @@ -56940,8 +56976,8 @@ talking to the kernel. - - 2025-10-09 + + 2025-10-22 25.08.2 Version bump. Pisi Linux Community @@ -64540,8 +64576,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - 2025-10-09 + + 2025-10-21 25.08.2 Version bump. Pisi Linux Community @@ -73963,7 +73999,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for konqueror qt6-base-devel - konqueror + konqueror /usr/include @@ -73974,8 +74010,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - 2025-10-09 + + 2025-10-22 25.08.2 Version bump. Pisi Linux Community @@ -74435,7 +74471,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for okular okular için geliştirme dosyaları - okular + okular /usr/include @@ -74446,8 +74482,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - 2025-10-09 + + 2025-10-21 25.08.2 Version bump. Pisi Linux Community @@ -85731,8 +85767,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. marco-devel - marco development files marco için geliştirme dosyaları + marco development files gtk3-devel marco @@ -87063,8 +87099,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. mate-menus-devel - mate-menus için geliştirme dosyaları mate-menus için geliştirme dosyaları + mate-menus için geliştirme dosyaları glib2-devel mate-menus @@ -89904,8 +89940,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. libmatekbd-devel - libmatekbd için geliştirme dosyaları libmatekbd için geliştirme dosyaları + libmatekbd için geliştirme dosyaları gtk3-devel glib2-devel @@ -105107,10 +105143,10 @@ It supports email, address books, calendars, tasks, news feeds and much more. LGPLv3 desktop - Granite is a companion library for GTK and GLib. Granite, GTK ve GLib için bir eşlikçi kütüphanedir. - Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. + Granite is a companion library for GTK and GLib. Granite, GTK ve GLib için bir eşlikçi kütüphanedir. Diğer şeylerin aynında elementary OS için geliştirilmiş uygulamalarda kullanılması adına karışık araçlar ve kolaylık fonksiyonları sağlar. + Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. https://github.com/elementary/granite/archive/7.6.0.tar.gz gobject-introspection-devel @@ -105146,8 +105182,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. granite7-devel - Development files for granite granite7 için geliştirme dosyaları. + Development files for granite granite7 gtk4-devel @@ -120183,8 +120219,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.xfce.addon Timer plugin for Xfce4 panel Xfce4 uyarı eklentisi - With this plugin you can add timers (alarm or countdown) to your Xfce panel. You can display a warning window and/or run a custom command when alarm rings, repeat alarms etc. Xfce4-timer-plugin, ayarladığınız zamanda bir pencere açarak sizi uyaran Xfce4 panel eklentisidir. + With this plugin you can add timers (alarm or countdown) to your Xfce panel. You can display a warning window and/or run a custom command when alarm rings, repeat alarms etc. xfce4-panel https://archive.xfce.org/src/panel-plugins/xfce4-timer-plugin/1.8/xfce4-timer-plugin-1.8.0.tar.xz @@ -145447,7 +145483,7 @@ settings shared by various components of a desktop. Mutter is a Wayland display server and X11 window manager and compositor library. Mutter is a Wayland display server and X11 window manager and compositor library. gnome - https://download.gnome.org/sources/mutter/49/mutter-49.1.tar.xz + https://download.gnome.org/sources/mutter/49/mutter-49.1.1.tar.xz meson docutils @@ -145634,7 +145670,7 @@ settings shared by various components of a desktop. wayland-protocols-devel startup-notification-devel gobject-introspection-devel - mutter + mutter libwacom-devel gnome-desktop-devel gnome-settings-daemon-devel @@ -145645,6 +145681,13 @@ settings shared by various components of a desktop. + + 2025-10-23 + 49.1.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-10-15 49.1 @@ -151818,7 +151861,7 @@ GNOME Session and the applications that run under it. desktop.gnome.apps A desktop calculator for GNOME gnome-calculator is an application that solves mathematical equations. - mirrors://gnome/gnome-calculator/49/gnome-calculator-49.1.tar.xz + mirrors://gnome/gnome-calculator/49/gnome-calculator-49.1.1.tar.xz meson itstool @@ -151882,7 +151925,7 @@ GNOME Session and the applications that run under it. gtk3-devel glib2-devel libgee-devel - gnome-calculator + gnome-calculator /usr/lib/pkgconfig @@ -151891,6 +151934,13 @@ GNOME Session and the applications that run under it. + + 2025-10-22 + 49.1.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-10-10 49.1 @@ -176428,8 +176478,10 @@ GNOME Session and the applications that run under it. Einfachee direkte Medien-Schicht libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - http://www.libsdl.org/release/SDL-1.2.15.tar.gz + https://github.com/libsdl-org/sdl12-compat/archive/refs/tags/release-1.2.68.tar.gz + cmake + ninja DirectFB-devel alsa-lib-devel aalib-devel @@ -176441,16 +176493,6 @@ GNOME Session and the applications that run under it. libglvnd-devel mesa-glu-devel - - sdl-1.2.14-disable-mmx.patch - sdl_x11sym.patch - SDL-1.2.14-dont-propagate-lpthread.patch - SDL-1.2.14-noproc.patch - SDL-1.2.13-rh484362.patch - libsdl-1.2.15-sdl-config.patch - libsdl-1.2.15-resizing.patch - libsdl-1.2.15-joystick.patch - multimedia/misc/libsdl/pspec.xml @@ -176480,7 +176522,7 @@ GNOME Session and the applications that run under it. Development files for libsdl libsdl için geliştirme dosyaları - libsdl + libsdl DirectFB-devel alsa-lib-devel aalib-devel @@ -176506,13 +176548,20 @@ GNOME Session and the applications that run under it. emul32 emul32 - libsdl + libsdl /usr/lib32 + + 2025-10-23 + 1.2.68 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2020-01-11 1.2.15 @@ -177714,7 +177763,7 @@ GNOME Session and the applications that run under it. multimedia.misc Sandboxed and extendable image decoding Sandboxed and extendable image decoding - https://download.gnome.org/sources/glycin/2.0/glycin-2.0.3.tar.xz + https://download.gnome.org/sources/glycin/2.0/glycin-2.0.4.tar.xz rust meson @@ -177760,7 +177809,7 @@ GNOME Session and the applications that run under it. lcms2-devel fontconfig-devel libseccomp-devel - glycin + glycin /usr/include @@ -177769,6 +177818,13 @@ GNOME Session and the applications that run under it. + + 2025-10-22 + 2.0.4 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-10-10 2.0.3 @@ -177778,6 +177834,133 @@ GNOME Session and the applications that run under it. + + + libsdl3 + https://www.libsdl.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + Zlib + library + multimedia.misc + Simple Direct Media Layer 2.0 series + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + https://github.com/libsdl-org/SDL/releases/download/release-3.2.24/SDL3-3.2.24.tar.gz + + cmake + ninja + DirectFB-devel + alsa-lib-devel + audiofile-devel + dbus-devel + ibus-devel + libXi-devel + vulkan-devel + libX11-devel + libXext-devel + libXinerama-devel + libXrandr-devel + libXrender-devel + libXt-devel + libXv-devel + libglvnd-devel + mesa-glu-devel + libXScrnSaver-devel + libxkbcommon-devel + egl-wayland-devel + wayland-protocols-devel + pulseaudio-libs-devel + + multimedia/misc/libsdl3/pspec.xml + + + libsdl3 + libsdl3 reference documents + + DirectFB + alsa-lib + audiofile + libX11 + libXScrnSaver + libXext + libXinerama + libXrandr + libXrender + libXt + libglvnd + pulseaudio-libs + + + /usr/share/doc + /usr/lib/libSDL3.so + /usr/lib/libSDL3.a + /usr/lib/libSDL3.so.0 + /usr/lib/libSDL3.so.0.2.24 + /usr/lib/libSDL3_test.a + /usr/share/licenses/SDL3/LICENSE.txt + + + + libsdl3-devel + Development files for libsdl3 + + libsdl3 + + + /usr/bin + /usr/include/SDL3 + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/lib/cmake/SDL3 + + + + libsdl3-32bit + 32-bit shared libraries for libsdl3 + emul32 + + libXt-32bit + libX11-32bit + libXext-32bit + libglvnd-32bit + alsa-lib-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + + + libXt-32bit + libX11-32bit + libXext-32bit + alsa-lib-32bit + libglvnd-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + libsdl3 + + + /usr/lib32 + + + + + 2025-10-23 + 3.2.24 + First release + Pisi Linux Community + admin@pisilinux.org + + + regionset @@ -179349,16 +179532,13 @@ GNOME Session and the applications that run under it. SDL resim yükleme kitaplığı SDL_image is an image file loader for SDL. SDL_image, SDL için resim yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz + https://github.com/libsdl-org/SDL_image/archive/633dc522f5114f6d473c910dace62e8ca27a1f7d.tar.gz tiff-devel libsdl-devel libpng-devel libjpeg-turbo-devel - - gif-overflow.patch - multimedia/misc/sdl-image/pspec.xml @@ -179381,7 +179561,7 @@ GNOME Session and the applications that run under it. Development files for sdl-image sdl-image için geliştirme dosyaları - sdl-image + sdl-image libsdl-devel tiff-devel libjpeg-turbo-devel @@ -179405,7 +179585,7 @@ GNOME Session and the applications that run under it. tiff-32bit - sdl-image + sdl-image libsdl-32bit libpng-32bit libjpeg-turbo-32bit @@ -179417,6 +179597,13 @@ GNOME Session and the applications that run under it. + + 2025-10-23 + 1.2.12 + Rebuild. + Kamil Atlı + admin@pisilinux.org + 2020-10-15 1.2.12 @@ -183003,7 +183190,7 @@ GNOME Session and the applications that run under it. SDL ağ kütüphanesi sdl-mixer is a SDL library for network access. sdl-net, SDL için ağ erişim kitaplığıdır. - http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.tar.gz + https://github.com/libsdl-org/SDL_net/archive/091c95c031769f48d3ffaacddfdea1af999f4446.tar.gz libsdl-devel @@ -183024,7 +183211,7 @@ GNOME Session and the applications that run under it. Development files for sdl-net sdl-net için geliştirme dosyaları - sdl-net + sdl-net libsdl-devel @@ -183033,6 +183220,13 @@ GNOME Session and the applications that run under it. + + 2025-10-23 + 1.2.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-07 1.2.8 @@ -183963,14 +184157,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Küçük ve hızlı bir konuşma sentezleyici Flite (festival-lite) is a small, fast run-time speech synthesis engine developed at CMU and primarily designed for small embedded machines and/or large servers. Flite is designed as an alternative synthesis engine to Festival for voices built using the FestVox suite of voice building tools. Flite (festival-lite), CMU tarafından geliştirilmiş küçük ve hızlı bir konuşma sentezleyicisidir. Flite, Festival'e alternatif sentezleyici olarak, öncelikle küçük gömülü sistemler ve/veya büyük sunucular için tasarlanmıştır. - http://festvox.org/flite/packed/flite-2.1/flite-2.1-release.tar.bz2 + https://github.com/festvox/flite/archive/refs/tags/v2.2.tar.gz alsa-lib-devel chrpath - flite-ldflags.patch - CVE-2014-0027_unsafe_temporary_file.patch + fedora/flite-2.2-parallel-make.patch multimedia/sound/flite/pspec.xml @@ -183990,13 +184183,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development headers for flite flite için geliştirme başlıkları - flite + flite /usr/include + + 2025-10-23 + 2.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2020-02-28 2.1 @@ -194273,7 +194473,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol netpbm - http://netpbm.sourceforge.net/ + https://netpbm.sourceforge.net/ PisiLinux Community admins@pisilinux.org @@ -194281,47 +194481,41 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol GPLv2 app:console multimedia.graphics - A set of utilities to convert to/from the netpbm (and related) formats + Netpbm - graphics tools and converters. Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi - Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. - http://archlinux.c3sl.ufpr.br/other/netpbm/netpbm-10.61.02.tar.gz - - config.mk - + A toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. + mirrors://sourceforge/netpbm/netpbm-10.86.48.tgz - jasper-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel zlib-devel + tiff-devel libX11-devel + libpng-devel + jasper-devel libxml2-devel + jbigkit-devel + libjpeg-turbo-devel - netpbm-CAN-2005-2471.patch - netpbm-security-code.patch - netpbm-security-scripts.patch - library-link.patch + fix-C23.patch multimedia/graphics/netpbm/pspec.xml netpbm - jasper - tiff - libpng - libjpeg-turbo zlib + tiff libX11 + libpng + jasper libxml2 + jbigkit + libjpeg-turbo /usr/bin /usr/lib - /usr/share/netpbm - /usr/share/man - /usr/share/doc + /usr/share @@ -194329,14 +194523,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development files for netpbm netpbm için geliştirme dosyaları - netpbm + netpbm /usr/include - /usr/share/man/man3 + + 2025-10-22 + 10.86.48 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2020-03-06 10.61.02 @@ -198903,7 +199103,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. inkscape - https://inkscape.org/gallery/item/53679/inkscape-1.4.tar.xz + https://inkscape.org/gallery/item/56344/inkscape-1.4.2.tar.xz cmake ragel @@ -198942,7 +199142,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libwpd-devel liblqr-devel libxslt-devel - libsoup-devel python3-devel boost-python3 poppler-devel @@ -198950,6 +199149,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libyaml-devel libvisio-devel libspiro-devel + pstoedit-devel gtkspell3-devel dbus-glib-devel librevenge-devel @@ -198962,12 +199162,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol python3-pygobject3-devel - inkscape-1.4-cmake4.patch - inkscape-1.4-gcc15.patch - inkscape-1.4-poppler-24.10-fix-backport.patch - inkscape-1.4-poppler-24.11.0.patch - inkscape-1.4-poppler-24.12.0.patch - inkscape-1.4-poppler-25.02.0.patch + inkscape-1.4-poppler-25.06.0.patch multimedia/graphics/inkscape/pspec.xml @@ -198999,7 +199194,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol potrace cairomm libgomp - libsoup libxml2 libxslt pangomm @@ -199011,6 +199205,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libvisio libspiro libepoxy + pstoedit dbus-glib gtkspell3 libsigc++ @@ -199058,7 +199253,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol lib2geom-devel - lib2geom + lib2geom /usr/lib/cmake @@ -199067,6 +199262,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2025-10-22 + 1.4.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + 2025-04-29 1.4 @@ -213698,7 +213900,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Skrooge allows you to manage your personal finances, powered by KDE. Thanks to its many features, it is one of the most powerful way to enter, follow, and analyze your expenses. Skrooge, kişisel finans akışınızı kontrol altında tutmanızı sağlayan bir uygulamadır. skrooge - mirrors://kde/stable/skrooge/skrooge-25.4.0.tar.xz + mirrors://kde/stable/skrooge/skrooge-25.10.0.tar.xz qt6-base-devel extra-cmake-modules @@ -213806,6 +214008,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2025-10-22 + 25.10.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-10-11 25.4.0 @@ -216789,28 +216998,29 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Postscript ve PDF grafiklerini diğer vektor formatlarına dönüştüren bir araç Pstoedit converts PostScript and PDF files to various vector graphic formats. The resulting files can be edited or imported into various drawing packages. Pstoedit, PDF ve Postscript dosyalarını diğer vektör formatlarına dönüştürür. Sonuçta oluşan düzenlenebilir ya da çeşitli çizim paketlerine eklenebilir. - mirrors://sourceforge/pstoedit/pstoedit-4.01.tar.gz + mirrors://sourceforge/pstoedit/pstoedit-4.02.tar.gz - plotutils-devel gd-devel + libzip-devel + plotutils-devel imagemagick-devel ghostscript-devel - libzip-devel office/misc/pstoedit/pspec.xml pstoedit - libgcc - imagemagick gd - plotutils + libgcc libzip + plotutils + imagemagick /usr/bin - /usr/lib + /usr/lib/libpstoedit.so* + /usr/lib/pstoedit /usr/share/man /usr/share/doc /usr/share/pstoedit @@ -216821,7 +217031,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Development files for pstoedit pstoedit için geliştirme dosyaları - pstoedit + pstoedit /usr/include @@ -216830,6 +217040,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2025-10-22 + 4.02 + Version bump + Kamil Atlı + suvari@pisilinux.org + 2024-08-29 4.01 @@ -235658,10 +235875,10 @@ from a wide variety of machine architectures. BSD library hardware.misc - Audio Video Transport Protocol (AVTP) Plugin. Open source implementation of Audio Video Transport Protocol - Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec. + Audio Video Transport Protocol (AVTP) Plugin. Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec + Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec. https://github.com/Avnu/libavtp/archive/refs/tags/v0.2.0.tar.gz meson @@ -235678,8 +235895,8 @@ from a wide variety of machine architectures. libavtp-devel - Development files for libavtp Development files forlibavtp + Development files for libavtp libavtp @@ -237963,8 +238180,8 @@ from a wide variety of machine architectures. LGPLv2.1 library multimedia.plugin - The Advanced Linux Sound Architecture (ALSA) plugins. Additional library plugins Eg.jack, pulse, maemo ... + The Advanced Linux Sound Architecture (ALSA) plugins. alsa-plugins provides plugins like JACK, PulseAudio, etc. for ALSA. https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.12.tar.bz2 @@ -251657,7 +251874,7 @@ Gnome session. Evdev keycode'larını keysms türüne çeviren bir kitaplık Library to convert evdev keycodes to keysyms Evdev keycode'larını keysms türüne çeviren bir kitaplık - https://github.com/xkbcommon/libxkbcommon/archive/refs/tags/xkbcommon-1.12.0.tar.gz + https://github.com/xkbcommon/libxkbcommon/archive/refs/tags/xkbcommon-1.12.2.tar.gz meson xorg-proto @@ -251696,7 +251913,7 @@ Gnome session. Development files for libxkbcommon libxkbcommon için geliştirme dosyaları - libxkbcommon + libxkbcommon libxcb-devel libxml2-devel @@ -251717,7 +251934,7 @@ Gnome session. wayland-32bit - libxkbcommon + libxkbcommon libxcb-32bit libxml2-32bit @@ -251726,6 +251943,13 @@ Gnome session. + + 2025-10-22 + 1.12.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2025-10-11 1.12.0 @@ -275875,10 +276099,10 @@ Gnome session. LGPL 2.1+ library programming.language.python3 - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. https://github.com/pygobject/pgi/archive/refs/tags/0.0.11.2.tar.gz python3-devel @@ -278137,10 +278361,10 @@ Gnome session. MIT library programming.language.python3 - Monitoring filesystems events with inotify on Linux. Monitoring filesystems events with inotify on Linux. - Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. + Monitoring filesystems events with inotify on Linux. Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. + Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. https://github.com/seb-m/pyinotify/archive/refs/tags/0.9.6.tar.gz python3-devel @@ -279265,10 +279489,10 @@ Gnome session. custom:unknown library programming.language.python3 - This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g - The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. https://files.pythonhosted.org/packages/source/b/bs4/bs4-0.0.1.tar.gz python3-devel @@ -280294,10 +280518,10 @@ Gnome session. MIT library programming.language.python3 - Python Bindings for PortAudio. Python Bindings for PortAudio. - ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + Python Bindings for PortAudio. ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz python3-devel @@ -283100,6 +283324,13 @@ Gnome session. + + 2025-10-15 + 8.2.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2025-04-12 8.2.1 @@ -284704,10 +284935,10 @@ Gnome session. MIT library programming.language.python3 - Google Text to Speech token Google Text to Speech token - A python implementation of the token validation of Google Translate. + Google Text to Speech token A python implementation of the token validation of Google Translate. + A python implementation of the token validation of Google Translate. https://files.pythonhosted.org/packages/source/g/gTTS-token/gTTS-token-1.1.4.tar.gz python3-devel @@ -286554,10 +286785,10 @@ Gnome session. MIT library programming.language.python3 - Google Text to Speech (TTS) API Google Text to Speech (TTS) API - Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + Google Text to Speech (TTS) API Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API https://github.com/pndurette/gTTS/archive/v2.2.3.tar.gz python3-devel @@ -289197,10 +289428,10 @@ Gnome session. MIT library programming.language.python3 - aiml implements an interpreter for AIML aiml implements an interpreter for AIML - aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + aiml implements an interpreter for AIML aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. https://github.com/paulovn/python-aiml/archive/0.9.3.tar.gz python3-devel @@ -289900,10 +290131,10 @@ Gnome session. BSD library programming.language.python3 - Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. - This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. https://files.pythonhosted.org/packages/13/6f/280431fc903d7bc1a0b7efe5dc837602f0f193e382b36006bf23178acab5/pocketsphinx2-0.1.17.tar.gz python3-devel @@ -291662,10 +291893,10 @@ Gnome session. MPL2 library programming.language.python3 - pyttsx3 is a text-to-speech conversion library in Python. pyttsx3 is a text-to-speech conversion library in Python. - pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + pyttsx3 is a text-to-speech conversion library in Python. pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. https://github.com/nateshmbhat/pyttsx3/archive/v.2.90.tar.gz python3-devel @@ -293791,10 +294022,10 @@ Gnome session. PSF library programming.language.python3 - This package contains wrappers for accessing the ALSA API from Python. This package contains wrappers for accessing the ALSA API from Python. - It is fairly complete for PCM devices and Mixer access. + This package contains wrappers for accessing the ALSA API from Python. It is fairly complete for PCM devices and Mixer access. + It is fairly complete for PCM devices and Mixer access. https://files.pythonhosted.org/packages/a9/bd/24f576c07953671edfeba2545c3c92c46e97384f622957ecf95967c2b456/pyalsaaudio-0.9.2.tar.gz python3-devel @@ -337619,6 +337850,7 @@ contacts, tasks, and calendar information. boost-1.81.0-phoenix-multiple-definitions.patch e7433ba54596da97cb7859455cd37ca140305a9c.patch + boost-move-std-ns-begin-fix-for-gcc15.patch programming/misc/boost/pspec.xml @@ -337651,7 +337883,7 @@ contacts, tasks, and calendar information. boost-devel, boost için geliştirme ve başlık dosyalarını içerir. data:doc - boost + boost /usr/share/doc/*/html @@ -337665,7 +337897,7 @@ contacts, tasks, and calendar information. boost için python3 kitaplık belgeleri boost-python3, boost için python3 kitaplık belgelerini içerir. - boost + boost libgcc openmpi @@ -337677,6 +337909,13 @@ contacts, tasks, and calendar information. + + 2025-10-22 + 1.87.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2025-02-23 1.87.0 @@ -366785,8 +367024,8 @@ complete albums that you have purchased from Amazon. as-is library science.gis - Open Geographical Datastore Interface, a GIS support library Açık coğrafik veri kayıt arayüzü, GIS destek kütüphanesi + Open Geographical Datastore Interface, a GIS support library OGDI is an application programming interface (API) that uses a standardized access methods to work in conjunction with GIS software packages (the application) and various geospatial data products. OGDI, GIS yazılım paketleri ve çeşitli mekansal/coğrafik veri ürünleriyle çalışabilecek standart erişim metodları içeren açık bir uygulama geliştirme arayüzüdür. https://src.fedoraproject.org/lookaside/extras/ogdi/ogdi-3.2.1.tar.gz/sha512/74bb62dc437e83ec1364046621c66bcab9bd7c2e0f9bd62d8e5110b5f0adcc8519f76baefb2263aebdaa5fb76ec75c3075624559ce140b936f888bca5fa24a0a/ogdi-3.2.1.tar.gz @@ -366885,8 +367124,8 @@ complete albums that you have purchased from Amazon. library app:console science.gis - Cartographic Projections library Kartografik görüntüleme kütüphanesi + Cartographic Projections library Proj.4 cartographic projection software with updated NAD27 grids. Güncellenmiş NAD27 gridlerini de içeren kartografik görüntüleme yazılımı. https://download.osgeo.org/proj/proj-7.1.1.tar.gz @@ -367096,8 +367335,8 @@ complete albums that you have purchased from Amazon. as-is library science.gis - Library for reading TIFF files with embedded tags Biblioteka GeoTIFF + Library for reading TIFF files with embedded tags Library for reading TIFF files with embedded tags for geographic (cartographic) information. Coğrafik bilgi için gömülü etikletler içeren TIFF dosyalarını okumaya yarayan bir kütüphane. Ta biblioteka pozwala na odczytywanie i analizowanie znaczników „GeoTIFF”, a także definiowanie i zapisywanie znaczników w nowych plikach. diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 8ae98850f0..6cf9e1c758 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -665664e60935aa8a4eccedb5f239ae2e8f1109be \ No newline at end of file +feba3472366dee0f96a4d3dcd387107a309273ed \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index ad4b11f2e0..c96ae25932 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 46c0532ecd..6e0f0e68d7 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -0d0b894daf26161f8129e0cefa2cdb94d6450008 \ No newline at end of file +cc2f2d294bc4b919442417072c75cc96755171a9 \ No newline at end of file