diff --git a/multimedia/video/ffmpeg4/actions.py b/multimedia/video/ffmpeg4/actions.py new file mode 100644 index 0000000000..d98fdee22a --- /dev/null +++ b/multimedia/video/ffmpeg4/actions.py @@ -0,0 +1,129 @@ +#!/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 + +import os +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +def setup(): + shelltools.system("./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --incdir=/usr/include/ffmpeg4.4 \ + --libdir=/usr/lib/ffmpeg4.4 \ + --disable-debug \ + --disable-static \ + --disable-stripping \ + --enable-version3 \ + --enable-nonfree \ + --enable-avfilter \ + --enable-avresample \ + --enable-frei0r \ + --enable-gpl \ + --enable-ladspa \ + --enable-libaom \ + --enable-libaribb24 \ + --enable-libass \ + --enable-libbluray \ + --enable-libbs2b \ + --enable-libcelt \ + --enable-libcdio \ + --enable-libcodec2 \ + --enable-libdav1d \ + --enable-libdavs2 \ + --enable-libdc1394 \ + --enable-libfdk-aac \ + --enable-libflite \ + --enable-libfontconfig \ + --enable-libfreetype \ + --enable-libfribidi \ + --enable-libgme \ + --enable-libgsm \ + --enable-libiec61883 \ + --enable-libilbc \ + --enable-libjack \ + --enable-libkvazaar \ + --disable-liblensfun \ + --enable-libmodplug \ + --enable-libmp3lame \ + --enable-libopencore_amrnb \ + --enable-libopencore_amrwb \ + --enable-libopenjpeg \ + --enable-libopus \ + --enable-libpulse \ + --enable-librsvg \ + --enable-librubberband \ + --enable-librtmp \ + --enable-libshine \ + --enable-libsnappy \ + --enable-libsoxr \ + --enable-libspeex \ + --enable-libtheora \ + --enable-libtwolame \ + --enable-libvidstab \ + --enable-libv4l2 \ + --enable-libvo-amrwbenc \ + --enable-libvorbis \ + --enable-libvpx \ + --enable-libwebp \ + --enable-libx264 \ + --enable-libx265 \ + --enable-libxavs \ + --enable-libxavs2 \ + --enable-libxcb \ + --enable-libxvid \ + --enable-libxml2 \ + --enable-libzmq \ + --enable-libzimg \ + --enable-pic \ + --enable-postproc \ + --enable-librav1e \ + --enable-runtime-cpudetect \ + --enable-shared \ + --enable-libsvtav1 \ + --enable-swresample \ + --enable-vdpau \ + --enable-opencl \ + --enable-openssl \ + --enable-libdrm \ + --enable-libmfx \ + --enable-vaapi \ + --enable-vdpau \ + --enable-omx \ + --enable-libsrt \ + --extra-ldflags='-lasound -lm'") + # --enable-openal \ + +def build(): + autotools.make() + autotools.make('tools/qt-faststart') + autotools.make("doc/ff{mpeg,play}.1") + +def install(): + autotools.rawInstall("DESTDIR=%s install-man" % get.installDIR()) + pisitools.dobin("tools/qt-faststart") + + pisitools.dodoc("Changelog", "README.md", "LICENSE.md", "COPYING*") + pisitools.removeDir("/usr/share") + pisitools.removeDir("/usr/bin") + + + # for libs in os.listdir("%s/usr/lib/ffmpeg4.4/*.so*" % get.installDIR()): + # pisitools.dosym("/usr/lib/ffmpeg4.4/%s" % libs, "/usr/lib/%s" % libs) + + for lib in shelltools.ls("%s/usr/lib/ffmpeg4.4" % get.installDIR()): + pisitools.dosym("/usr/lib/ffmpeg4.4/%s" % lib, "/usr/lib/%s" % lib) + + pisitools.remove("/usr/lib/pkgconfig") + pisitools.remove("/usr/lib/libavutil.so") + pisitools.remove("/usr/lib/libswscale.so") + pisitools.remove("/usr/lib/libavcodec.so") + pisitools.remove("/usr/lib/libpostproc.so") + pisitools.remove("/usr/lib/libavdevice.so") + pisitools.remove("/usr/lib/libavfilter.so") + pisitools.remove("/usr/lib/libavformat.so") + pisitools.remove("/usr/lib/libswresample.so") diff --git a/multimedia/video/ffmpeg4/files/fix-vmaf-model-path.patch b/multimedia/video/ffmpeg4/files/fix-vmaf-model-path.patch new file mode 100644 index 0000000000..88a949b438 --- /dev/null +++ b/multimedia/video/ffmpeg4/files/fix-vmaf-model-path.patch @@ -0,0 +1,25 @@ +From 37b8f54578ac1bcb7a63dc9038a5238fd6a58793 Mon Sep 17 00:00:00 2001 +From: Leigh Scott +Date: Sat, 23 May 2020 12:32:44 +0100 +Subject: [PATCH] fix vmaf model path + +--- + libavfilter/vf_libvmaf.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf.c +index 14c3216b3a..e7273b6d1d 100644 +--- a/libavfilter/vf_libvmaf.c ++++ b/libavfilter/vf_libvmaf.c +@@ -72,7 +72,7 @@ typedef struct LIBVMAFContext { + #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM + + static const AVOption libvmaf_options[] = { +- {"model_path", "Set the model to be used for computing vmaf.", OFFSET(model_path), AV_OPT_TYPE_STRING, {.str="/usr/local/share/model/vmaf_v0.6.1.pkl"}, 0, 1, FLAGS}, ++ {"model_path", "Set the model to be used for computing vmaf.", OFFSET(model_path), AV_OPT_TYPE_STRING, {.str="/usr/share/model/vmaf_v0.6.1.pkl"}, 0, 1, FLAGS}, + {"log_path", "Set the file path to be used to store logs.", OFFSET(log_path), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, FLAGS}, + {"log_fmt", "Set the format of the log (xml or json).", OFFSET(log_fmt), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, FLAGS}, + {"enable_transform", "Enables transform for computing vmaf.", OFFSET(enable_transform), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS}, +-- +2.26.2 + diff --git a/multimedia/video/ffmpeg4/pspec.xml b/multimedia/video/ffmpeg4/pspec.xml new file mode 100644 index 0000000000..91de9bd0c0 --- /dev/null +++ b/multimedia/video/ffmpeg4/pspec.xml @@ -0,0 +1,243 @@ + + + + + ffmpeg4 + http://ffmpeg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + LGPLv2 + LGPLv3 + app:console + A command-line tool to record, convert and stream audio and video + FFmpeg is a complete solution to record, convert and stream audio and video. + https://ffmpeg.org/releases/ffmpeg-4.4.5.tar.xz + + srt-devel + freetype-devel + fontconfig-devel + + lame-devel + cairo-devel + xz-devel + x264-devel + x265-devel + xavs-devel + xavs2-devel + ffnvcodec + libbs2b-devel + libavc1394-devel + libraw1394-devel + svt-av1-devel + libdrm-devel + libmfx-devel + rav1e-devel + dav1d-devel + davs2-devel + aom-devel + libva-devel + libsdl2-devel + libvpx-devel + libass-devel + libopus-devel + libilbc-devel + codec2-devel + libfdk-aac-devel + libgme-devel + lensfun-devel + libiec61883-devel + kvazaar-devel + libopenmpt-devel + librsvg-devel + rubberband-devel + shine-devel + flite-devel + libsoxr-devel + snappy-devel + vid.stab-devel + libxcb-devel + libzimg-devel + + alsa-lib-devel + libvdpau-devel + libtheora-devel + libvorbis-devel + + celt-devel + gsm-devel + libbluray-devel + opencore-amr-devel + libmodplug-devel + pulseaudio-libs-devel + + openjpeg2-devel + frei0r-plugins-devel + rtmpdump-devel + + speex-devel + yasm-devel + libv4l-devel + pkgconfig + libvo-amrwbenc-devel + + xvid-devel + libdc1394-devel + + libcdio-paranoia-devel + libXv-devel + wavpack-devel + webp-devel + ladspa-sdk-devel + libaribb24-devel + jack-audio-connection-kit-devel + twolame-devel + fribidi-devel + libxml2-devel + opencl-icd-devel + openssl-devel + libomxil-bellagio-devel + zeromq-devel + + + + + + + + fix-vmaf-model-path.patch + + + + + + ffmpeg4 + + srt + gsm + celt + + lame + x264 + x265 + xvid + zlib + bzip2 + speex + libva + libXv + + libX11 + + libsdl2 + libv4l + libvpx + libxcb + libass + libopus + libXext + alsa-lib + freetype + libvdpau + openjpeg2 + xz + cairo + glib2 + xavs + xavs2 + libbs2b + libavc1394 + libraw1394 + svt-av1 + libdrm + libmfx + rav1e + dav1d + davs2 + aom + libva + libsdl2 + libvpx + libass + libopus + libilbc + codec2 + libfdk-aac + libgme + lensfun + libiec61883 + kvazaar + libopenmpt + librsvg + rubberband + shine + flite + libsoxr + snappy + vid.stab + libxcb + libzimg + + rtmpdump + libbluray + libdc1394 + libtheora + libvorbis + fontconfig + libmodplug + libvo-aacenc + opencore-amr + + libvo-amrwbenc + pulseaudio-libs + libcdio-paranoia + wavpack + webp + ladspa-sdk + libaribb24 + jack-audio-connection-kit + twolame + fribidi + libxml2 + opencl-icd + openssl + libomxil-bellagio + zeromq + + + /etc + /usr/bin + /usr/lib/ffmpeg4.4 + /usr/lib/*.so* + /usr/share/doc + /usr/share/man + /usr/share/ffmpeg + + + + + ffmpeg4-devel + Development files for ffmpeg + + ffmpeg4 + + + /usr/include/ffmpeg4.4 + /usr/lib/ffmpeg4.4/pkgconfig + /usr/lib/pkgconfig + + + + + + 2024-08-31 + 4.4.5 + First release + Pisi Linux Community + admin@pisilinux.org + + + diff --git a/multimedia/video/ffmpeg4/translations.xml b/multimedia/video/ffmpeg4/translations.xml new file mode 100644 index 0000000000..5c2aa1eb1e --- /dev/null +++ b/multimedia/video/ffmpeg4/translations.xml @@ -0,0 +1,16 @@ + + + + ffmpeg + FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu + FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. + + + + ffmpeg-devel + ffmpeg için geliştirme dosyaları + Pliki nagłówkowe ffmpeg + + diff --git a/pisi-index.xml b/pisi-index.xml index 37ecef51b2..55209c5c95 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -47928,7 +47928,7 @@ Gnome session. Değişik sözlüklerden sorgular yapmayı sağlayan bir istemci xfce4-dict allows you to search different kinds of dictionary services for words or phrases and shows you the result. xfce4-dict değişik sözlüklerden kelime ya da deyimler aramanızı sağlar ve size gösterir. - https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.5.tar.bz2 + https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.7.tar.bz2 xfce4-panel-devel intltool @@ -47958,6 +47958,13 @@ Gnome session. + + 2024-09-25 + 0.8.7 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-04-23 0.8.5 @@ -63480,7 +63487,7 @@ Gnome session. GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. Wersja 4 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. gtk4-logo - mirrors://gnome/gtk/4.16/gtk-4.16.1.tar.xz + mirrors://gnome/gtk/4.16/gtk-4.16.2.tar.xz gettext-devel glib2-devel @@ -63591,7 +63598,7 @@ Gnome session. GTK4 demo uygulamaları app:gui - gtk4 + gtk4 librsvg @@ -63623,7 +63630,7 @@ Gnome session. GTK4 için geliştirme dosyaları Pliki nagłówkowe do gtk4 - gtk4 + gtk4 lzo-devel pango-devel libX11-devel @@ -63658,7 +63665,7 @@ Gnome session. GTK4 icon cache updater GTK4 için simge önbelleği güncelleyicisi - gtk4 + gtk4 /usr/bin/gtk*-update-icon-cache @@ -63666,6 +63673,13 @@ Gnome session. + + 2024-09-24 + 4.16.2 + Version bump + Pisi Linux Community + admin@pisilinux.org + 2024-09-13 4.16.1 @@ -66125,12 +66139,12 @@ Gnome session. desktop Provides a set of easy to use chart components Qt Data Visualization module - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtdatavis3d-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtdatavis3d-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-datavis3d/pspec.xml @@ -66138,8 +66152,8 @@ Gnome session. qt6-datavis3d Qt Data Visualization module - qt6-base - qt6-declarative + qt6-base + qt6-declarative libgcc @@ -66153,9 +66167,9 @@ Gnome session. qt6-datavis3d-devel Development files for qt6-datavis3d - qt6-base-devel - qt6-declarative-devel - qt6-datavis3d + qt6-base-devel + qt6-declarative-devel + qt6-datavis3d /usr/include/qt6 @@ -66164,6 +66178,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66248,14 +66269,14 @@ Gnome session. desktop.toolkit.qt6 Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtwebchannel-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtwebchannel-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-sql-sqlite - qt6-base-devel - qt6-websockets-devel - qt6-declarative-devel + qt6-sql-sqlite + qt6-base-devel + qt6-websockets-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-webchannel/pspec.xml @@ -66263,8 +66284,8 @@ Gnome session. qt6-webchannel libgcc - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -66276,9 +66297,9 @@ Gnome session. qt6-webchannel-devel - qt6-webchannel - qt6-base-devel - qt6-declarative-devel + qt6-webchannel + qt6-base-devel + qt6-declarative-devel /usr/lib/pkgconfig @@ -66286,6 +66307,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66374,7 +66402,7 @@ Gnome session. Provides access to position, satellite and area monitoring classes Provides access to position, satellite and area monitoring classes qt6-positioning - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtpositioning-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtpositioning-everywhere-src-6.7.3.tar.xz ninja cmake @@ -66382,9 +66410,9 @@ Gnome session. glib2-devel gypsy-devel dbus-glib-devel - qt6-base-devel - qt6-serialport-devel - qt6-declarative-devel + qt6-base-devel + qt6-serialport-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-positioning/pspec.xml @@ -66394,9 +66422,9 @@ Gnome session. gconf glib2 gypsy - qt6-base - qt6-serialport - qt6-declarative + qt6-base + qt6-serialport + qt6-declarative /usr/lib @@ -66409,9 +66437,9 @@ Gnome session. qt6-positioning-devel Development files for qt6-positioning - qt6-positioning - qt6-base-devel - qt6-declarative-devel + qt6-positioning + qt6-base-devel + qt6-declarative-devel /usr/include @@ -66420,6 +66448,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66507,15 +66542,15 @@ Gnome session. desktop.toolkit.qt6 Qt module to make text to speech and speech recognition easy Qt module to make text to speech and speech recognition easy - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtspeech-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtspeech-everywhere-src-6.7.3.tar.xz ninja cmake flite-devel speech-dispatcher-devel - qt6-base-devel - qt6-multimedia-devel - qt6-declarative-devel + qt6-base-devel + qt6-multimedia-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-speech/pspec.xml @@ -66526,9 +66561,9 @@ Gnome session. flite libgcc speech-dispatcher - qt6-base - qt6-multimedia - qt6-declarative + qt6-base + qt6-multimedia + qt6-declarative /usr/lib @@ -66541,8 +66576,8 @@ Gnome session. qt6-speech-devel Development headers for qt6-speech - qt6-speech - qt6-base-devel + qt6-speech + qt6-base-devel /usr/lib/cmake @@ -66551,6 +66586,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66645,14 +66687,14 @@ Gnome session. desktop C++ and QML APIs for easy inclusion of 3D graphics C++ and QML APIs for easy inclusion of 3D graphics - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qt3d-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qt3d-everywhere-src-6.7.3.tar.xz ninja cmake vulkan-headers - qt6-base-devel - qt6-declarative-devel - qt6-shadertools-devel + qt6-base-devel + qt6-declarative-devel + qt6-shadertools-devel desktop/toolkit/qt6/qt6-3d/pspec.xml @@ -66660,9 +66702,9 @@ Gnome session. qt6-3d C++ and QML APIs for easy inclusion of 3D graphics - qt6-base - qt6-declarative - qt6-shadertools + qt6-base + qt6-declarative + qt6-shadertools libgcc assimp @@ -66678,9 +66720,9 @@ Gnome session. qt6-3d-devel Development files for qt6-3d - qt6-base-devel - qt6-declarative-devel - qt6-3d + qt6-base-devel + qt6-declarative-devel + qt6-3d /usr/include/qt6 @@ -66689,6 +66731,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66777,20 +66826,20 @@ Gnome session. A family of player software for a certain json-based file format for describing 2d vector graphics animations A family of player software for a certain json-based file format for describing 2d vector graphics animations qt6-lottie - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtlottie-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtlottie-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-lottie/pspec.xml qt6-lottie - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -66803,7 +66852,7 @@ Gnome session. qt6-lottie-devel Development files for qt6-lottie - qt6-lottie + qt6-lottie /usr/include @@ -66812,6 +66861,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -66896,14 +66952,14 @@ Gnome session. desktop.toolkit.qt6 Classes for displaying the contents of SVG files Classes for displaying the contents of SVG files - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtsvg-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtsvg-everywhere-src-6.7.3.tar.xz ninja cmake libxkbcommon-devel zlib-devel vulkan-headers - qt6-base-devel + qt6-base-devel desktop/toolkit/qt6/qt6-svg/pspec.xml @@ -66911,7 +66967,7 @@ Gnome session. qt6-svg libgcc - qt6-base + qt6-base zlib @@ -66926,8 +66982,8 @@ Gnome session. qt6-svg-devel Development files for qt6-svg - qt6-base-devel - qt6-svg + qt6-base-devel + qt6-svg /usr/include/qt6/ @@ -66935,6 +66991,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67023,23 +67086,23 @@ Gnome session. Physics engine integration for Qt Quick 3D Physics engine integration for Qt Quick 3D qt-logo.svg - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtquick3dphysics-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtquick3dphysics-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-quick3d-devel - qt6-shadertools-devel - qt6-declarative-devel + qt6-base-devel + qt6-quick3d-devel + qt6-shadertools-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-quick3dphysics/pspec.xml qt6-quick3dphysics - qt6-base - qt6-quick3d - qt6-declarative + qt6-base + qt6-quick3d + qt6-declarative /usr/lib @@ -67051,10 +67114,10 @@ Gnome session. qt6-quick3dphysics-devel Development files for qt6-quick3dphysics - qt6-quick3dphysics - qt6-base-devel - qt6-quick3d-devel - qt6-declarative-devel + qt6-quick3dphysics + qt6-base-devel + qt6-quick3d-devel + qt6-declarative-devel /usr/include @@ -67063,6 +67126,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67151,12 +67221,12 @@ Gnome session. OpenGL'ye ek olarak Qt Quick'in Vulkan, Metal ve Direct3D üzerinde çalışmasına izin veren gölgelendirici ardışık düzeni için işlevsellik sağlar OpenGL'ye ek olarak Qt Quick'in Vulkan, Metal ve Direct3D üzerinde çalışmasına izin veren gölgelendirici ardışık düzeni için işlevsellik sağlar qt6-shadertools - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtshadertools-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtshadertools-everywhere-src-6.7.3.tar.xz ninja cmake vulkan-headers - qt6-base-devel + qt6-base-devel desktop/toolkit/qt6/qt6-shadertools/pspec.xml @@ -67180,8 +67250,8 @@ Gnome session. qt6-shadertools-devel Development files for qt6-shadertools - qt6-shadertools - qt6-base-devel + qt6-shadertools + qt6-base-devel /usr/include @@ -67190,6 +67260,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67274,7 +67351,7 @@ Gnome session. desktop.toolkit.qt6 Classes for audio, video, radio and camera functionality Classes for audio, video, radio and camera functionality - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtmultimedia-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtmultimedia-everywhere-src-6.7.3.tar.xz ninja cmake @@ -67288,10 +67365,10 @@ Gnome session. libXrandr-devel gst-plugins-bad-devel mesa-devel - qt6-sql-sqlite - qt6-base-devel - qt6-shadertools-devel - qt6-declarative-devel + qt6-sql-sqlite + qt6-base-devel + qt6-shadertools-devel + qt6-declarative-devel gst-plugins-base-devel desktop/toolkit/qt6/qt6-multimedia/pspec.xml @@ -67311,8 +67388,8 @@ Gnome session. libXrandr gst-plugins-bad pulseaudio-libs - qt6-base - qt6-declarative + qt6-base + qt6-declarative gst-plugins-base @@ -67325,9 +67402,9 @@ Gnome session. qt6-multimedia-devel - qt6-multimedia - qt6-base-devel - qt6-declarative-devel + qt6-multimedia + qt6-base-devel + qt6-declarative-devel /usr/lib/pkgconfig @@ -67335,6 +67412,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67427,18 +67511,18 @@ Gnome session. desktop.toolkit.qt6 Network authentication module Ağ kimlik doğrulama modülü - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtnetworkauth-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtnetworkauth-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel + qt6-base-devel desktop/toolkit/qt6/qt6-networkauth/pspec.xml qt6-networkauth - qt6-base + qt6-base /usr/lib @@ -67449,8 +67533,8 @@ Gnome session. qt6-networkauth-devel Development files for qt6-networkauth - qt6-networkauth - qt6-base-devel + qt6-networkauth + qt6-base-devel /usr/include @@ -67459,6 +67543,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67543,21 +67634,21 @@ Gnome session. desktop.toolkit.qt6 Classes for QML and JavaScript languages Classes for QML and JavaScript languages - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtdeclarative-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtdeclarative-everywhere-src-6.7.3.tar.xz ninja cmake python3 libxkbcommon-devel mesa-devel - qt6-sql-sqlite - qt6-sql-mysql - qt6-sql-odbc - qt6-base-devel - qt6-sql-postgresql - qt6-imageformats - qt6-shadertools-devel - qt6-languageserver-devel + qt6-sql-sqlite + qt6-sql-mysql + qt6-sql-odbc + qt6-base-devel + qt6-sql-postgresql + qt6-imageformats + qt6-shadertools-devel + qt6-languageserver-devel desktop/toolkit/qt6/qt6-declarative/pspec.xml @@ -67565,8 +67656,8 @@ Gnome session. qt6-declarative libgcc - qt6-base - qt6-languageserver + qt6-base + qt6-languageserver libglvnd @@ -67581,8 +67672,8 @@ Gnome session. qt6-declarative-devel - qt6-base-devel - qt6-declarative + qt6-base-devel + qt6-declarative /usr/lib/pkgconfig @@ -67591,6 +67682,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67675,15 +67773,15 @@ Gnome session. desktop.toolkit.qt6 Provides access to Bluetooth hardware Provides access to Bluetooth hardware - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtconnectivity-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtconnectivity-everywhere-src-6.7.3.tar.xz ninja cmake pcsc-lite-devel bluez-libs-devel - qt6-sql-sqlite - qt6-base-devel - qt6-declarative-devel + qt6-sql-sqlite + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-connectivity/pspec.xml @@ -67692,8 +67790,8 @@ Gnome session. pcsc-lite bluez-libs - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/bin @@ -67707,8 +67805,8 @@ Gnome session. qt6-connectivity-devel - qt6-connectivity - qt6-base-devel + qt6-connectivity + qt6-base-devel /usr/lib/pkgconfig @@ -67716,6 +67814,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67800,20 +67905,20 @@ Gnome session. desktop.toolkit.qt6 Provides access to hardware and virtual serial ports Provides access to hardware and virtual serial ports - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtserialport-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtserialport-everywhere-src-6.7.3.tar.xz ninja cmake eudev-devel - qt6-base-devel - qt6-sql-sqlite + qt6-base-devel + qt6-sql-sqlite desktop/toolkit/qt6/qt6-serialport/pspec.xml qt6-serialport - qt6-base + qt6-base eudev libgcc @@ -67827,8 +67932,8 @@ Gnome session. qt6-serialport-devel - qt6-base-devel - qt6-serialport + qt6-base-devel + qt6-serialport /usr/lib/pkgconfig @@ -67836,6 +67941,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -67920,12 +68032,12 @@ Gnome session. desktop.toolkit.qt6 Provides a set of easy to use chart components Provides a set of easy to use chart components - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtcharts-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtcharts-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-charts/pspec.xml @@ -67933,8 +68045,8 @@ Gnome session. qt6-charts Provides a set of easy to use chart components - qt6-base - qt6-declarative + qt6-base + qt6-declarative libgcc @@ -67948,9 +68060,9 @@ Gnome session. qt6-charts-devel Development files for qt6-charts - qt6-charts - qt6-base-devel - qt6-declarative-devel + qt6-charts + qt6-base-devel + qt6-declarative-devel /usr/include/qt6 @@ -67959,6 +68071,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68047,12 +68166,12 @@ Gnome session. Qt HTTP Server Qt HTTP Server qt6-httpserver - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qthttpserver-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qthttpserver-everywhere-src-6.7.3.tar.xz cmake ninja - qt6-base-devel - qt6-websockets-devel + qt6-base-devel + qt6-websockets-devel desktop/toolkit/qt6/qt6-httpserver/pspec.xml @@ -68073,9 +68192,9 @@ Gnome session. qt6-httpserver-devel Development files for qt6-httpserver - qt6-httpserver - qt6-base-devel - qt6-websockets-devel + qt6-httpserver + qt6-base-devel + qt6-websockets-devel /usr/include @@ -68084,6 +68203,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68174,9 +68300,9 @@ Gnome session. cmake ninja ccache - qt6-linguist - qt6-svg-devel - qt6-base-devel + qt6-linguist + qt6-svg-devel + qt6-base-devel alpine/find_lrelease.patch @@ -68198,6 +68324,13 @@ Gnome session. + + 2024-09-27 + 0.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-06-01 0.9 @@ -68282,13 +68415,13 @@ Gnome session. desktop.toolkit.qt6 Provides access to sensor hardware and motion gesture recognition Provides access to sensor hardware and motion gesture recognition - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtsensors-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtsensors-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-sql-sqlite - qt6-base-devel - qt6-declarative-devel + qt6-sql-sqlite + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-sensors/pspec.xml @@ -68296,8 +68429,8 @@ Gnome session. qt6-sensors libgcc - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -68309,9 +68442,9 @@ Gnome session. qt6-sensors-devel - qt6-sensors - qt6-base-devel - qt6-declarative-devel + qt6-sensors + qt6-base-devel + qt6-declarative-devel /usr/lib/pkgconfig @@ -68319,6 +68452,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68406,13 +68546,13 @@ Gnome session. desktop Qt module for keyframe-based timeline construction Qt module for keyframe-based timeline construction - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtquicktimeline-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtquicktimeline-everywhere-src-6.7.3.tar.xz ninja cmake vulkan-headers - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-quicktimeline/pspec.xml @@ -68420,8 +68560,8 @@ Gnome session. qt6-quicktimeline Qt module for keyframe-based timeline construction - qt6-base - qt6-declarative + qt6-base + qt6-declarative libgcc @@ -68436,9 +68576,9 @@ Gnome session. qt6-quicktimeline-devel Development files for qt6-quicktimeline - qt6-base-devel - qt6-declarative-devel - qt6-quicktimeline + qt6-base-devel + qt6-declarative-devel + qt6-quicktimeline /usr/include/qt6 @@ -68447,6 +68587,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68535,22 +68682,22 @@ Gnome session. Provides a way to display web content in a QML application Provides a way to display web content in a QML application qt6-webview - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtwebview-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtwebview-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-webengine-devel - qt6-declarative-devel + qt6-base-devel + qt6-webengine-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-webview/pspec.xml qt6-webview - qt6-base - qt6-webengine - qt6-declarative + qt6-base + qt6-webengine + qt6-declarative /usr/lib @@ -68563,9 +68710,9 @@ Gnome session. qt6-webview-devel Development files for qt6-webview - qt6-webview - qt6-base-devel - qt6-declarative-devel + qt6-webview + qt6-base-devel + qt6-declarative-devel /usr/include @@ -68574,6 +68721,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68658,13 +68812,13 @@ Gnome session. desktop.toolkit.qt6 Provides WebSocket communication compliant with RFC 6455 Provides WebSocket communication compliant with RFC 6455 - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtwebsockets-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtwebsockets-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-sql-sqlite - qt6-base-devel - qt6-declarative-devel + qt6-sql-sqlite + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-websockets/pspec.xml @@ -68672,8 +68826,8 @@ Gnome session. qt6-websockets libgcc - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -68685,8 +68839,8 @@ Gnome session. qt6-websockets-devel - qt6-websockets - qt6-base-devel + qt6-websockets + qt6-base-devel /usr/lib/pkgconfig @@ -68694,6 +68848,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68779,25 +68940,25 @@ Gnome session. A cross-platform application and UI framework (Translations) A cross-platform application and UI framework (Translations) qt-logo.svg - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qttranslations-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qttranslations-everywhere-src-6.7.3.tar.xz cmake ninja glib2-devel - qt6-base-devel - qt6-linguist - qt6-qdbusviewer - qt6-designer-devel - qt6-assistant-devel - qt6-sql-sqlite - qt6-linguist + qt6-base-devel + qt6-linguist + qt6-qdbusviewer + qt6-designer-devel + qt6-assistant-devel + qt6-sql-sqlite + qt6-linguist desktop/toolkit/qt6/qt6-translations/pspec.xml qt6-translations - qt6-base + qt6-base /usr/share/qt6 @@ -68805,6 +68966,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -68893,20 +69061,20 @@ Gnome session. Inter-process communication (IPC) module developed for Qt Inter-process communication (IPC) module developed for Qt qt6-remoteobjects - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtremoteobjects-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtremoteobjects-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-remoteobjects/pspec.xml qt6-remoteobjects - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -68919,9 +69087,9 @@ Gnome session. qt6-remoteobjects-devel Development files for qt6-remoteobjects - qt6-remoteobjects - qt6-base-devel - qt6-declarative-devel + qt6-remoteobjects + qt6-base-devel + qt6-declarative-devel /usr/include @@ -68930,6 +69098,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69017,12 +69192,12 @@ Gnome session. desktop.toolkit.qt6 Qt module for general purpose serial bus access Qt module for general purpose serial bus access - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtserialbus-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtserialbus-everywhere-src-6.7.3.tar.xz cmake ninja - qt6-base-devel - qt6-serialport-devel + qt6-base-devel + qt6-serialport-devel desktop/toolkit/qt6/qt6-serialbus/pspec.xml @@ -69030,8 +69205,8 @@ Gnome session. qt6-serialbus Qt module for general purpose serial bus access - qt6-base - qt6-serialport + qt6-base + qt6-serialport /usr/bin @@ -69045,9 +69220,9 @@ Gnome session. qt6-serialbus-devel Development files for qt6-serialbus - qt6-serialbus - qt6-base-devel - qt6-serialport-devel + qt6-serialbus + qt6-base-devel + qt6-serialport-devel /usr/include/qt6 @@ -69056,6 +69231,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69140,7 +69322,7 @@ Gnome session. desktop.toolkit.qt6 Cross platform application and UI framework Cross platform application and UI development framework - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtbase-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtbase-everywhere-src-6.7.3.tar.xz fb92bb07.patch @@ -69223,7 +69405,6 @@ Gnome session. qt6-base-nostrip.patch fedora/qtbase-mysql.patch fedora/qtbase-libglvnd.patch - qtbase-6.7.1-qeventlooplocker.patch desktop/toolkit/qt6/qt6-base/pspec.xml @@ -69293,7 +69474,7 @@ Gnome session. Development files for Qt 5 Development files for Qt 5 - qt6-base + qt6-base libglvnd-devel vulkan-headers libxkbcommon-devel @@ -69308,7 +69489,7 @@ Gnome session. qt6-sql-mysql - qt6-base + qt6-base libgcc mariadb-lib @@ -69319,7 +69500,7 @@ Gnome session. qt6-sql-postgresql - qt6-base + qt6-base libgcc postgresql-lib @@ -69330,7 +69511,7 @@ Gnome session. qt6-sql-sqlite - qt6-base + qt6-base libgcc sqlite @@ -69341,7 +69522,7 @@ Gnome session. qt6-sql-odbc - qt6-base + qt6-base libgcc unixODBC @@ -69350,6 +69531,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69452,17 +69640,17 @@ Gnome session. Experimental module providing APIs and a host tool to host tool to perform graphics and compute shader conditioning for the upcoming Qt graphics abstraction layer Experimental module providing APIs and a host tool to host tool to perform graphics and compute shader conditioning for the upcoming Qt graphics abstraction layer qt-logo.svg - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtquick3d-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtquick3d-everywhere-src-6.7.3.tar.xz ninja cmake vulkan-headers llvm-clang-devel - qt6-base-devel - qt6-declarative-devel - qt6-shadertools-devel + qt6-base-devel + qt6-declarative-devel + qt6-shadertools-devel assimp-devel - qt6-quicktimeline-devel + qt6-quicktimeline-devel desktop/toolkit/qt6/qt6-quick3d/pspec.xml @@ -69470,10 +69658,10 @@ Gnome session. qt6-quick3d Experimental module providing APIs and a host tool to host tool to perform graphics and compute shader conditioning for the upcoming Qt graphics abstraction layer - qt6-base - qt6-shadertools - qt6-declarative - qt6-quicktimeline + qt6-base + qt6-shadertools + qt6-declarative + qt6-quicktimeline libgcc zlib assimp @@ -69491,11 +69679,11 @@ Gnome session. qt6-quick3d-devel Development files for qt6-quick3d - qt6-base-devel - qt6-declarative-devel - qt6-quick3d - qt6-quicktimeline-devel - qt6-shadertools-devel + qt6-base-devel + qt6-declarative-devel + qt6-quick3d + qt6-quicktimeline-devel + qt6-shadertools-devel /usr/include/qt6 @@ -69504,6 +69692,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69600,10 +69795,10 @@ Gnome session. cmake glib2-devel libsecret-devel - qt6-assistant-devel - qt6-base-devel - qt6-designer-devel - qt6-linguist + qt6-assistant-devel + qt6-base-devel + qt6-designer-devel + qt6-linguist desktop/toolkit/qt6/qt6-keychain/pspec.xml @@ -69613,7 +69808,7 @@ Gnome session. glib2 libgcc - qt6-base + qt6-base /usr/lib @@ -69625,7 +69820,7 @@ Gnome session. qt6-keychain-devel Development support for qt6-keychain - qt6-keychain + qt6-keychain /usr/lib/cmake @@ -69633,6 +69828,13 @@ Gnome session. + + 2024-09-27 + 0.14.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-06-02 0.14.3 @@ -69741,12 +69943,12 @@ Gnome session. desktop.toolkit.qt6 Provides a set of easy to use chart components Provides a set of easy to use chart components - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtscxml-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtscxml-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-scxml/pspec.xml @@ -69754,8 +69956,8 @@ Gnome session. qt6-scxml Provides a set of easy to use chart components - qt6-base - qt6-declarative + qt6-base + qt6-declarative libgcc @@ -69770,9 +69972,9 @@ Gnome session. qt6-scxml-devel Development files for qt6-scxml - qt6-scxml - qt6-base-devel - qt6-declarative-devel + qt6-scxml + qt6-base-devel + qt6-declarative-devel /usr/include/qt6 @@ -69781,6 +69983,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69865,7 +70074,7 @@ Gnome session. desktop.toolkit.qt6 Plugins for additional image formats: TIFF, MNG, TGA, WBMP Plugins for additional image formats: TIFF, MNG, TGA, WBMP - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtimageformats-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtimageformats-everywhere-src-6.7.3.tar.xz ninja cmake @@ -69877,15 +70086,15 @@ Gnome session. tiff-devel webp-devel libjpeg-turbo-devel - qt6-base-devel - qt6-sql-sqlite + qt6-base-devel + qt6-sql-sqlite desktop/toolkit/qt6/qt6-imageformats/pspec.xml qt6-imageformats - qt6-base + qt6-base libgcc tiff webp @@ -69899,6 +70108,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -69986,14 +70202,14 @@ Gnome session. desktop.toolkit.qt6 Module that contains unsupported Qt 5 APIs Module that contains unsupported Qt 5 APIs - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qt5compat-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qt5compat-everywhere-src-6.7.3.tar.xz ninja cmake icu4c-devel - qt6-base-devel - qt6-declarative-devel - qt6-shadertools-devel + qt6-base-devel + qt6-declarative-devel + qt6-shadertools-devel desktop/toolkit/qt6/qt6-5compat/pspec.xml @@ -70002,9 +70218,9 @@ Gnome session. icu4c libgcc - qt6-base - qt6-declarative - qt6-shadertools + qt6-base + qt6-declarative + qt6-shadertools /usr/lib @@ -70017,8 +70233,8 @@ Gnome session. qt6-5compat-devel - qt6-5compat - qt6-base-devel + qt6-5compat + qt6-base-devel /usr/lib/pkgconfig @@ -70027,6 +70243,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -70122,18 +70345,18 @@ Gnome session. An implementation of the Language Server Protocol An implementation of the Language Server Protocol qt6-languageserver - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtlanguageserver-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtlanguageserver-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel + qt6-base-devel desktop/toolkit/qt6/qt6-languageserver/pspec.xml qt6-languageserver - qt6-base + qt6-base /usr/lib @@ -70145,7 +70368,7 @@ Gnome session. qt6-languageserver-devel Development files for qt6-languageserver - qt6-languageserver + qt6-languageserver /usr/include @@ -70154,6 +70377,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -70238,7 +70468,7 @@ Gnome session. desktop.toolkit.qt6 A cross-platform application and UI framework (Development Tools, QtHelp) A cross-platform application and UI framework (Development Tools, QtHelp) - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qttools-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qttools-everywhere-src-6.7.3.tar.xz ninja cmake @@ -70249,15 +70479,15 @@ Gnome session. lld-devel llvm-mlir llvm-polly - qt6-base-devel - qt6-sql-sqlite - qt6-sql-mysql - qt6-sql-odbc - qt6-base-devel - qt6-sql-postgresql + qt6-base-devel + qt6-sql-sqlite + qt6-sql-mysql + qt6-sql-odbc + qt6-base-devel + qt6-sql-postgresql icon-theme-hicolor vulkan-headers - qt6-declarative-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-tools/pspec.xml @@ -70268,9 +70498,9 @@ Gnome session. libgcc llvm-libs llvm-clang - qt6-base - qt6-sql-sqlite - qt6-declarative + qt6-base + qt6-sql-sqlite + qt6-declarative /usr/bin/qdistancefieldgenerator-qt6 @@ -70326,8 +70556,8 @@ Gnome session. qt6-assistant-devel - qt6-base-devel - qt6-assistant + qt6-base-devel + qt6-assistant llvm-clang-devel @@ -70353,8 +70583,8 @@ Gnome session. qt6-designer libgcc - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/bin/designer-qt6 @@ -70419,7 +70649,7 @@ Gnome session. qt6-designer-devel qt6-base-devel - qt6-designer + qt6-designer /usr/include/qt6/QtTools/QtTools* @@ -70501,6 +70731,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-01 6.7.1 @@ -70606,15 +70843,15 @@ Gnome session. desktop.toolkit.qt6 Qt module for general purpose serial bus access Virtual keyboard framework - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtvirtualkeyboard-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtvirtualkeyboard-everywhere-src-6.7.3.tar.xz ninja cmake libxcb-devel hunspell-devel - qt6-svg-devel - qt6-base-devel - qt6-declarative-devel + qt6-svg-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-virtualkeyboard/pspec.xml @@ -70622,9 +70859,9 @@ Gnome session. qt6-virtualkeyboard Virtual keyboard framework - qt6-svg - qt6-base - qt6-declarative + qt6-svg + qt6-base + qt6-declarative libgcc libxcb hunspell @@ -70640,7 +70877,7 @@ Gnome session. qt6-virtualkeyboard-devel Development headers for qt6-virtualkeyboard - qt6-virtualkeyboard + qt6-virtualkeyboard /usr/include/qt6 @@ -70649,6 +70886,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -70734,22 +70978,25 @@ Gnome session. Provides support for web applications using the Chromium browser project Provides support for web applications using the Chromium browser project qt-logo - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtwebengine-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtwebengine-everywhere-src-6.7.3.tar.xz + + qtwebengine-ffmpeg-7.patch + ninja cmake - qt6-base-devel - qt6-declarative-devel - qt6-positioning-devel - qt6-sensors-devel - qt6-webchannel-devel - qt6-designer-devel - qt6-websockets-devel + qt6-base-devel + qt6-declarative-devel + qt6-positioning-devel + qt6-sensors-devel + qt6-webchannel-devel + qt6-designer-devel + qt6-websockets-devel bison wget tiff-devel cups-devel - nodejs + nodejs re2c ninja gperf @@ -70808,6 +71055,9 @@ Gnome session. python3-html5lib libepoxy-devel + + qtwebengine-fix-building-with-system-ffmpeg.patch + desktop/toolkit/qt6/qt6-webengine/pspec.xml @@ -70836,7 +71086,7 @@ Gnome session. libxslt libopus libxml2 - qt6-base + qt6-base alsa-lib harfbuzz libevent @@ -70847,11 +71097,11 @@ Gnome session. libXScrnSaver libXdamage libXrender - qt6-positioning + qt6-positioning libXcomposite libjpeg-turbo - qt6-webchannel - qt6-declarative + qt6-webchannel + qt6-declarative zlib minizip protobuf @@ -70877,11 +71127,11 @@ Gnome session. qt6-webengine-devel - qt6-webengine - qt6-base-devel - qt6-declarative-devel - qt6-positioning-devel - qt6-webchannel-devel + qt6-webengine + qt6-base-devel + qt6-declarative-devel + qt6-positioning-devel + qt6-webchannel-devel /usr/lib/pkgconfig @@ -70890,6 +71140,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -70978,13 +71235,13 @@ Gnome session. Bazı popüler konum hizmetlerinden elde edilen verileri kullanarak uygulanabilir haritalama çözümleri oluşturmanıza yardımcı olur Bazı popüler konum hizmetlerinden elde edilen verileri kullanarak uygulanabilir haritalama çözümleri oluşturmanıza yardımcı olur qt6-location - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtlocation-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtlocation-everywhere-src-6.7.3.tar.xz cmake ninja - qt6-base-devel - qt6-declarative-devel - qt6-positioning-devel + qt6-base-devel + qt6-declarative-devel + qt6-positioning-devel desktop/toolkit/qt6/qt6-location/pspec.xml @@ -71005,7 +71262,7 @@ Gnome session. qt6-location-devel Development files for qt6-location - qt6-location + qt6-location qt6-base-devel qt6-positioning-devel @@ -71016,6 +71273,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -71044,7 +71308,7 @@ Gnome session. desktop.toolkit.qt6 Provides APIs for Wayland Provides APIs for Wayland - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtwayland-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtwayland-everywhere-src-6.7.3.tar.xz cmake ninja @@ -71053,8 +71317,8 @@ Gnome session. libxkbcommon-devel libXcomposite-devel xorg-xwayland-devel - qt6-base-devel - qt6-declarative-devel + qt6-base-devel + qt6-declarative-devel desktop/toolkit/qt6/qt6-wayland/pspec.xml @@ -71070,8 +71334,8 @@ Gnome session. libxkbcommon libXcomposite wayland-server - qt6-base - qt6-declarative + qt6-base + qt6-declarative /usr/lib @@ -71085,9 +71349,9 @@ Gnome session. qt6-wayland-devel - qt6-wayland - qt6-base-devel - qt6-declarative-devel + qt6-wayland + qt6-base-devel + qt6-declarative-devel /usr/lib/pkgconfig @@ -71095,6 +71359,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -71180,33 +71451,33 @@ Gnome session. A cross-platform application and UI framework (Documentation) A cross-platform application and UI framework (Documentation) assistant5 - https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtdoc-everywhere-src-6.7.1.tar.xz + https://download.qt.io/official_releases/qt/6.7/6.7.3/submodules/qtdoc-everywhere-src-6.7.3.tar.xz ninja cmake - qt6-base-devel - qt6-sql-sqlite - qt6-assistant - qt6-multimedia-devel - qt6-webchannel-devel - qt6-svg-devel - qt6-sensors-devel - qt6-translations - qt6-imageformats - qt6-websockets-devel - qt6-serialport-devel - qt6-positioning-devel - qt6-connectivity-devel + qt6-base-devel + qt6-sql-sqlite + qt6-assistant + qt6-multimedia-devel + qt6-webchannel-devel + qt6-svg-devel + qt6-sensors-devel + qt6-translations + qt6-imageformats + qt6-websockets-devel + qt6-serialport-devel + qt6-positioning-devel + qt6-connectivity-devel desktop/toolkit/qt6/qt6-doc/pspec.xml qt6-doc - qt6-base - qt6-svg - qt6-assistant - qt6-declarative + qt6-base + qt6-svg + qt6-assistant + qt6-declarative /usr/share/doc @@ -71215,6 +71486,13 @@ Gnome session. + + 2024-09-27 + 6.7.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-06-02 6.7.1 @@ -84237,7 +84515,7 @@ Gnome session. mate-notification-daemon is the server implementation of the Mate desktop notification specification. mate-notification-daemon Mate projesinin masaüstü bilgilendirme hizmeti uygulamasını içerir. mate-notification-properties - http://pub.mate-desktop.org/releases/1.28/mate-notification-daemon-1.28.0.tar.xz + http://pub.mate-desktop.org/releases/1.28/mate-notification-daemon-1.28.1.tar.xz intltool python3-devel @@ -84285,6 +84563,13 @@ Gnome session. + + 2024-09-25 + 1.28.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2024-02-16 1.28.0 @@ -85134,6 +85419,13 @@ Gnome session. + + 2024-09-26 + 21.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2023-10-24 21.10.0 @@ -85687,7 +85979,7 @@ Gnome session. gtk3-devel glib2-devel - mate-panel + mate-panel /usr/include @@ -85699,13 +85991,20 @@ Gnome session. mate-panel için döküman belgeleri. mate-panel için döküman belgeleri. - mate-panel + mate-panel /usr/share/gtk-doc + + 2024-09-26 + 1.28.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2024-06-26 1.28.2 @@ -87572,7 +87871,7 @@ Gnome session. librsvg-devel mate-menus-devel mate-desktop-devel - mate-control-center + mate-control-center /usr/include @@ -87580,6 +87879,13 @@ Gnome session. + + 2024-09-26 + 1.28.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-02-22 1.28.0 @@ -87727,6 +88033,13 @@ Gnome session. + + 2024-09-25 + 1.28.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-02-22 1.28.0 @@ -101509,7 +101822,7 @@ Gnome session. kpipewire-kf6-devel Development files for kpipewire-kf6 - kpipewire-kf6 + kpipewire-kf6 pipewire-devel libepoxy-devel @@ -101520,6 +101833,13 @@ Gnome session. + + 2024-09-27 + 6.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2024-09-10 6.1.5 @@ -113135,6 +113455,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.qt6-base-devel qt6-5compat-devel qt6-multimedia-devel + qt6-assistant-devel + qt6-qdbusviewer qt6-phonon-devel extra-cmake-modules-kf6 kdoctools-kf6-devel @@ -137382,7 +137704,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.A framework for creating UPnP devices and control points UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve gupnp-logo - mirrors://gnome/gupnp/1.6/gupnp-1.6.6.tar.xz + mirrors://gnome/gupnp/1.6/gupnp-1.6.7.tar.xz meson gtk-doc @@ -137416,7 +137738,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.gupnp-devel gupnp için geliştirme dosyaları - gupnp + gupnp glib2-devel gssdp-devel libsoup3-devel @@ -137430,6 +137752,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2024-09-23 + 1.6.7 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-11-03 1.6.6 @@ -339292,7 +339621,7 @@ from a wide variety of machine architectures. Development files for pipewire glib2-devel - pipewire + pipewire /usr/include @@ -339303,13 +339632,20 @@ from a wide variety of machine architectures. pipewire-docs Development files for pipewire - pipewire + pipewire /usr/share/doc/pipewire/html + + 2024-08-10 + 1.2.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2024-08-03 1.2.2 @@ -341919,7 +342255,7 @@ cleaner, which will allow to add new features in the future. multimedia.plugin Chromaprint is the core component of the Acoustid project. Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. - https://github.com/acoustid/chromaprint/releases/download/v1.5.0/chromaprint-1.5.0.tar.gz + https://github.com/acoustid/chromaprint/releases/download/v1.5.1/chromaprint-1.5.1.tar.gz boost-devel fftw3-devel @@ -341943,7 +342279,7 @@ cleaner, which will allow to add new features in the future. libchromaprint-devel libchromaprint için geliştirme dosyaları - libchromaprint + libchromaprint /usr/include @@ -341951,6 +342287,13 @@ cleaner, which will allow to add new features in the future. + + 2024-08-10 + 1.5.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-10-29 1.5.0 @@ -343159,7 +343502,7 @@ cleaner, which will allow to add new features in the future. GStreamer est la librairies principale. Elle contient les entêtes, les fichiers et les éléments centraux. GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. gstreamer bir ses yayın altyapısı kütüphanesidir. Bu kütüphaneyi kullanan uygulamalar, gerçek zamanlı ses işleme, görüntü oynatma gibi çokluortam ile ilgili birçok işlem gerçekleştirebilirler. - https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.24.8.tar.xz meson gobject-introspection-devel @@ -343226,7 +343569,7 @@ cleaner, which will allow to add new features in the future. glib2-32bit elfutils-32bit libunwind-32bit - gstreamer + gstreamer /usr/lib32/libgstbase* @@ -343246,7 +343589,7 @@ cleaner, which will allow to add new features in the future. Development files for gstreamer gstreamer için geliştirme dosyaları - gstreamer + gstreamer libunwind-devel elfutils-devel glib2-devel @@ -343264,6 +343607,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -343645,7 +343995,7 @@ cleaner, which will allow to add new features in the future. Gstreamer plugin for the libav codec Gstreamer için FFmpeg desteği Gstreamer plugin for the libav codec. - https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.24.8.tar.xz meson python3 @@ -343656,7 +344006,7 @@ cleaner, which will allow to add new features in the future. yasm-devel ffmpeg-devel libunwind-devel - gst-plugins-base-devel + gst-plugins-base-devel multimedia/video/gst-libav/pspec.xml @@ -343669,7 +344019,7 @@ cleaner, which will allow to add new features in the future. glib2 ffmpeg gstreamer - gst-plugins-base + gst-plugins-base /usr/lib @@ -343680,6 +344030,20 @@ cleaner, which will allow to add new features in the future. + + 2024-09-27 + 1.24.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -343893,7 +344257,7 @@ cleaner, which will allow to add new features in the future. Diğer eklentilerle karşılaştırıldığında çok iyi durumda olmayan gstreamer eklentileri GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. gst-plugins-bad, iyiye yakın kalitede olan ancak gerçek bir geliştirici, belgelendirme, test seti gibi eksikleri bulunan eklentilerdir. - https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.24.8.tar.xz meson valgrind @@ -343963,9 +344327,9 @@ cleaner, which will allow to add new features in the future. libvo-aacenc-devel libjpeg-turbo-devel libvo-amrwbenc-devel - gstreamer-devel + gstreamer-devel gobject-introspection-devel - gst-plugins-base-devel + gst-plugins-base-devel neon-devel libavtp-devel qrencode-devel @@ -344042,10 +344406,10 @@ cleaner, which will allow to add new features in the future. libvo-aacenc schroedinger libjpeg-turbo - gstreamer + gstreamer libvo-amrwbenc wayland-client - gst-plugins-base + gst-plugins-base neon libavtp qrencode @@ -344075,7 +344439,7 @@ cleaner, which will allow to add new features in the future. wayland-devel gstreamer-devel gst-plugins-base-devel - gst-plugins-bad + gst-plugins-bad /usr/lib/pkgconfig @@ -344086,6 +344450,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -344465,7 +344836,7 @@ cleaner, which will allow to add new features in the future. FFmpeg is a complete solution to record, convert and stream audio and video. FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. - https://ffmpeg.org/releases/ffmpeg-4.4.5.tar.xz + https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz srt-devel freetype-devel @@ -344510,6 +344881,7 @@ cleaner, which will allow to add new features in the future. vid.stab-devel libxcb-devel libzimg-devel + openal-devel alsa-lib-devel libvdpau-devel libtheora-devel @@ -344546,7 +344918,7 @@ cleaner, which will allow to add new features in the future. zeromq-devel - fix-vmaf-model-path.patch + ffmpeg-7.0.2-chromium_method-1.patch.patch multimedia/video/ffmpeg/pspec.xml @@ -344614,6 +344986,7 @@ cleaner, which will allow to add new features in the future. vid.stab libxcb libzimg + openal rtmpdump libbluray libdc1394 @@ -344654,7 +345027,7 @@ cleaner, which will allow to add new features in the future. ffmpeg için geliştirme dosyaları Pliki nagłówkowe ffmpeg - ffmpeg + ffmpeg /usr/include @@ -344662,10 +345035,17 @@ cleaner, which will allow to add new features in the future. + + 2024-09-27 + 7.0.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + - 2024-08-31 + 2024-07-31 4.4.5 - Rebuild. + Version bump. Pisi Linux Community admin@pisilinux.org @@ -344896,7 +345276,7 @@ cleaner, which will allow to add new features in the future. A set of good-quality plugins for GStreamer Gstreamer için temel eklentiler paketi gst-plugins-good contains a set of mature plugins and elements for GStreamer. - https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.24.8.tar.xz meson xz-devel @@ -344930,9 +345310,9 @@ cleaner, which will allow to add new features in the future. libgcrypt-devel libiec61883-devel libjpeg-turbo-devel - gstreamer-devel + gstreamer-devel pulseaudio-libs-devel - gst-plugins-base-devel + gst-plugins-base-devel jack-audio-connection-kit-devel multimedia/video/gst-plugins-good/pspec.xml @@ -344971,9 +345351,9 @@ cleaner, which will allow to add new features in the future. libraw1394 libiec61883 libjpeg-turbo - gstreamer + gstreamer pulseaudio-libs - gst-plugins-base + gst-plugins-base jack-audio-connection-kit @@ -344990,6 +345370,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -345245,13 +345632,13 @@ cleaner, which will allow to add new features in the future. GStreamer tabanlı RTSP sunucu kitaplığı GStreamer tabanlı RTSP sunucu kitaplığı GStreamer tabanlı RTSP sunucu kitaplığı - https://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.24.8.tar.xz meson python3-devel glib2-devel - gstreamer-devel - gst-plugins-bad-devel + gstreamer-devel + gst-plugins-bad-devel multimedia/video/gst-rtsp-server/pspec.xml @@ -345273,7 +345660,7 @@ cleaner, which will allow to add new features in the future. gst-rtsp-server-devel Development files for gst-rtsp-server - gst-rtsp-server + gst-rtsp-server gstreamer-devel @@ -345283,6 +345670,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -345691,17 +346085,20 @@ cleaner, which will allow to add new features in the future. Ses/video düzenleyicileri oluşturmak için GStreamer kitaplığı Ses/video düzenleyicileri oluşturmak için GStreamer kitaplığı Ses/video düzenleyicileri oluşturmak için GStreamer kitaplığı - https://gstreamer.freedesktop.org/src/gst-editing-services/gst-editing-services-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-editing-services/gst-editing-services-1.24.8.tar.xz - gstreamer-devel - gst-plugins-base-devel - gst-plugins-bad-devel + gstreamer-devel + gst-plugins-base-devel + gst-plugins-bad-devel gobject-introspection-devel libxml2-devel python3-devel python3-pygobject3-devel meson + + 7554.patch + multimedia/video/gst-editing-services/pspec.xml @@ -345730,7 +346127,7 @@ cleaner, which will allow to add new features in the future. gst-editing-services-devel Development files for gst-editing-services - gst-editing-services + gst-editing-services glib2-devel libxml2-devel python3-devel @@ -345744,6 +346141,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -346122,7 +346526,7 @@ cleaner, which will allow to add new features in the future. Les plug-ins (greffons) de base GStreamer est une collection bien peaufinée et bien maintenues de plug-ins et d'éléments GStreamer, couvrant l'éventail des types d'éléments que quelqu'un pourrait vouloir écrire pour GStreamer. Il contient également des librairies d'aide ainsi que les classes de bases utiles pour l'écriture d'éléments. Un grand nombre de décodeurs, d'encodeurs et de filtres audio et vidéos sont également inclus. GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. Bu paket, Gstreamer'ın rahatlıkla genişleyebilmesini sağlayan ve bakımları sürekli yapılan temel eklentileri içerir. Program parçacığı yazmak için yardımcı kütüphaneler ve temel sınıflar da bulunur. - https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.24.8.tar.xz git meson @@ -346155,7 +346559,7 @@ cleaner, which will allow to add new features in the future. libX11-devel xorg-proto xorg-server-xvfb - gstreamer-devel + gstreamer-devel gobject-introspection-devel wayland-protocols-devel @@ -346190,7 +346594,7 @@ cleaner, which will allow to add new features in the future. graphene wayland-cursor wayland-client - gstreamer + gstreamer /usr/bin @@ -346230,7 +346634,7 @@ cleaner, which will allow to add new features in the future. libjpeg-turbo-32bit - gst-plugins-base + gst-plugins-base orc-32bit zlib-32bit cairo-32bit @@ -346270,7 +346674,7 @@ cleaner, which will allow to add new features in the future. Development files for gst-plugins-base gst-plugins-base için geliştirme dosyaları - gst-plugins-base + gst-plugins-base orc-devel gstreamer-devel glib2-devel @@ -346296,6 +346700,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -346536,6 +346947,228 @@ cleaner, which will allow to add new features in the future. + + + ffmpeg4 + http://ffmpeg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + LGPLv2 + LGPLv3 + app:console + multimedia.video + A command-line tool to record, convert and stream audio and video + FFmpeg is a complete solution to record, convert and stream audio and video. + https://ffmpeg.org/releases/ffmpeg-4.4.5.tar.xz + + srt-devel + freetype-devel + fontconfig-devel + lame-devel + cairo-devel + xz-devel + x264-devel + x265-devel + xavs-devel + xavs2-devel + ffnvcodec + libbs2b-devel + libavc1394-devel + libraw1394-devel + svt-av1-devel + libdrm-devel + libmfx-devel + rav1e-devel + dav1d-devel + davs2-devel + aom-devel + libva-devel + libsdl2-devel + libvpx-devel + libass-devel + libopus-devel + libilbc-devel + codec2-devel + libfdk-aac-devel + libgme-devel + lensfun-devel + libiec61883-devel + kvazaar-devel + libopenmpt-devel + librsvg-devel + rubberband-devel + shine-devel + flite-devel + libsoxr-devel + snappy-devel + vid.stab-devel + libxcb-devel + libzimg-devel + alsa-lib-devel + libvdpau-devel + libtheora-devel + libvorbis-devel + celt-devel + gsm-devel + libbluray-devel + opencore-amr-devel + libmodplug-devel + pulseaudio-libs-devel + openjpeg2-devel + frei0r-plugins-devel + rtmpdump-devel + speex-devel + yasm-devel + libv4l-devel + pkgconfig + libvo-amrwbenc-devel + xvid-devel + libdc1394-devel + libcdio-paranoia-devel + libXv-devel + wavpack-devel + webp-devel + ladspa-sdk-devel + libaribb24-devel + jack-audio-connection-kit-devel + twolame-devel + fribidi-devel + libxml2-devel + opencl-icd-devel + openssl-devel + libomxil-bellagio-devel + zeromq-devel + + + fix-vmaf-model-path.patch + + multimedia/video/ffmpeg4/pspec.xml + + + ffmpeg4 + + srt + gsm + celt + lame + x264 + x265 + xvid + zlib + bzip2 + speex + libva + libXv + libX11 + libsdl2 + libv4l + libvpx + libxcb + libass + libopus + libXext + alsa-lib + freetype + libvdpau + openjpeg2 + xz + cairo + glib2 + xavs + xavs2 + libbs2b + libavc1394 + libraw1394 + svt-av1 + libdrm + libmfx + rav1e + dav1d + davs2 + aom + libva + libsdl2 + libvpx + libass + libopus + libilbc + codec2 + libfdk-aac + libgme + lensfun + libiec61883 + kvazaar + libopenmpt + librsvg + rubberband + shine + flite + libsoxr + snappy + vid.stab + libxcb + libzimg + rtmpdump + libbluray + libdc1394 + libtheora + libvorbis + fontconfig + libmodplug + libvo-aacenc + opencore-amr + libvo-amrwbenc + pulseaudio-libs + libcdio-paranoia + wavpack + webp + ladspa-sdk + libaribb24 + jack-audio-connection-kit + twolame + fribidi + libxml2 + opencl-icd + openssl + libomxil-bellagio + zeromq + + + /etc + /usr/bin + /usr/lib/ffmpeg4.4 + /usr/lib/*.so* + /usr/share/doc + /usr/share/man + /usr/share/ffmpeg + + + + ffmpeg4-devel + Development files for ffmpeg + + ffmpeg4 + + + /usr/include/ffmpeg4.4 + /usr/lib/ffmpeg4.4/pkgconfig + /usr/lib/pkgconfig + + + + + 2024-08-31 + 4.4.5 + First release + Pisi Linux Community + admin@pisilinux.org + + + l-smash @@ -347157,8 +347790,8 @@ cleaner, which will allow to add new features in the future. cairomm-devel libxmlpp-devel autoconf-archive - gstreamer-devel - gst-plugins-base-devel + gstreamer-devel + gst-plugins-base-devel gstreamermm-1.10.0-no-volatile.patch @@ -347195,7 +347828,7 @@ cleaner, which will allow to add new features in the future. libxmlpp-devel gstreamer-devel gst-plugins-base-devel - gstreamermm + gstreamermm /usr/include/gstreamermm-1.0 @@ -347206,6 +347839,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.10.0 @@ -347750,7 +348390,7 @@ cleaner, which will allow to add new features in the future. multimedia.video GStreamer Multimedia Framework VA Plugins gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.24.8.tar.xz meson python3 @@ -347759,9 +348399,9 @@ cleaner, which will allow to add new features in the future. libva-devel libXrandr-devel wayland-protocols-devel - gstreamer-devel - gst-plugins-bad-devel - gst-plugins-base-devel + gstreamer-devel + gst-plugins-bad-devel + gst-plugins-base-devel multimedia/video/gstreamer-vaapi/pspec.xml @@ -347778,9 +348418,9 @@ cleaner, which will allow to add new features in the future. libXrender wayland-client wayland-protocols - gstreamer - gst-plugins-bad - gst-plugins-base + gstreamer + gst-plugins-bad + gst-plugins-base /usr/lib @@ -347792,6 +348432,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -348111,7 +348758,7 @@ cleaner, which will allow to add new features in the future. les Plug-ins (greffons) Ugly (horribles) de GStreamer est un ensemble de plug-ins de bonne qualité et fonctionnant correctement, mais dont la distribution pose problème. La licence du plug-in ou de librairies nécessaires au plug-in n'est pas forcément tel que l'on aimerait qu'elle soit. Le code peut également être notoirement connu pour présenter un problème patent. GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. GStreamer Ugly Plug-in'leri kaliteli ve güzel çalışan eklentiler içerir. Fakat bu eklentilerin lisanslarla ilgili sorunları bulunabilir. - https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.24.8.tar.xz meson xz-devel @@ -348131,8 +348778,8 @@ cleaner, which will allow to add new features in the future. libmpeg2-devel libdvdread-devel opencore-amr-devel - gstreamer-devel - gst-plugins-base-devel + gstreamer-devel + gst-plugins-base-devel multimedia/video/gst-plugins-ugly/pspec.xml @@ -348151,8 +348798,8 @@ cleaner, which will allow to add new features in the future. libmpeg2 libdvdread opencore-amr - gstreamer - gst-plugins-base + gstreamer + gst-plugins-base /usr/lib/gstreamer-1.0 @@ -348166,6 +348813,13 @@ cleaner, which will allow to add new features in the future. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -348920,6 +349574,9 @@ cleaner, which will allow to add new features in the future. list.patch no_autopoint.patch lpthread.patch + xine-lib-1.2.13-ffmpeg6-compatibility.patch + xine-lib-1.2.13-ffmpeg6-compatibility_2.patch + xine-lib-1.2.13-ffmpeg7-compatibility.patch multimedia/video/xine-lib/pspec.xml @@ -348985,7 +349642,7 @@ cleaner, which will allow to add new features in the future. xine-lib için geliştirme dosyaları xine-lib için geliştirme dosyaları - xine-lib + xine-lib /usr/bin/xine-config @@ -348995,6 +349652,13 @@ cleaner, which will allow to add new features in the future. + + 2024-08-10 + 1.2.13 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-07-30 1.2.13 @@ -353153,6 +353817,10 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression zlib-devel cmake + + 198.patch + efb5b618.patch + multimedia/graphics/ffmpegthumbnailer/pspec.xml @@ -353176,7 +353844,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Development files for ffmpegthumbnailer Ffmpegthumbnailer için geliştirme dosyaları - ffmpegthumbnailer + ffmpegthumbnailer /usr/include @@ -353184,6 +353852,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2024-08-10 + 2.2.2 + First Beta release. + fury + uglyside@yandex.ru + 2020-12-06 2.2.2 @@ -355854,7 +356529,8 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Programme de Manipulation d'Image GNU. GIMP is a mature image editor with many advanced features and plugin support. Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı - https://download.gimp.org/gimp/v2.10/gimp-2.10.36.tar.bz2 + gimp + https://download.gimp.org/gimp/v2.10/gimp-2.10.38.tar.bz2 bzip2 xz-devel @@ -355864,6 +356540,9 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression tiff-devel zlib-devel lcms-devel + libheif-devel + libunwind-devel + openjpeg2-devel gegl-devel glib-networking babl-devel @@ -355927,7 +356606,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression gegl-devel cairo-devel gdk-pixbuf-devel - gimp + gimp /usr/include @@ -355967,6 +356646,9 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libXext librsvg libexif + libheif + libunwind + openjpeg2 harfbuzz alsa-lib freetype @@ -356013,7 +356695,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:tr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/tr @@ -356026,7 +356708,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ast multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ast @@ -356039,7 +356721,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:my multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/my @@ -356052,7 +356734,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nds multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nds @@ -356065,7 +356747,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:el multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/el @@ -356078,7 +356760,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gu @@ -356091,7 +356773,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:be multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/be @@ -356104,7 +356786,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:vi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/vi @@ -356117,7 +356799,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ca multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ca @@ -356130,7 +356812,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:eo multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/eo @@ -356143,7 +356825,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:cs multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/cs @@ -356156,7 +356838,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ca@valencia multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ca@valencia @@ -356169,7 +356851,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ar multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ar @@ -356181,7 +356863,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ar multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/bs @@ -356194,7 +356876,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:km multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/km @@ -356207,7 +356889,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ga multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ga @@ -356220,7 +356902,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fi @@ -356233,7 +356915,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:eu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/eu @@ -356246,7 +356928,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:et multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/et @@ -356259,7 +356941,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:xh multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/xh @@ -356272,7 +356954,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gl @@ -356285,7 +356967,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:id multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/id @@ -356298,7 +356980,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:es multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/es @@ -356311,7 +356993,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ru multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ru @@ -356324,7 +357006,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:rw multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/rw @@ -356337,7 +357019,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nl @@ -356350,7 +357032,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nn multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nn @@ -356363,7 +357045,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nb multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nb @@ -356376,7 +357058,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ne multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ne @@ -356389,7 +357071,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:lt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/lt @@ -356402,7 +357084,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pa multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pa @@ -356415,7 +357097,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ro multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ro @@ -356428,7 +357110,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:en_GB multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/en_GB @@ -356441,7 +357123,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:yi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/yi @@ -356454,7 +357136,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:en_CA multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/en_CA @@ -356467,7 +357149,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fr @@ -356480,7 +357162,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:bg multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/bg @@ -356493,7 +357175,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ms multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ms @@ -356506,7 +357188,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pt_BR multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pt_BR @@ -356519,7 +357201,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hr @@ -356532,7 +357214,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:zh_TW multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/zh_TW @@ -356545,7 +357227,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ko multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ko @@ -356558,7 +357240,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:it multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/it @@ -356571,7 +357253,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fa multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fa @@ -356584,7 +357266,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:dz multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/dz @@ -356597,7 +357279,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sr@Latn multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sr@latin @@ -356610,7 +357292,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:da multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/da @@ -356623,7 +357305,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ja multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ja @@ -356636,7 +357318,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:he multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/he @@ -356649,7 +357331,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pt @@ -356662,7 +357344,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:zh_CN multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/zh_CN @@ -356675,7 +357357,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sr @@ -356688,7 +357370,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:oc multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/oc @@ -356701,7 +357383,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sv multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sv @@ -356714,7 +357396,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:mk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/mk @@ -356727,7 +357409,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sk @@ -356740,7 +357422,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:de multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/de @@ -356753,7 +357435,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pl @@ -356766,7 +357448,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:uk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/uk @@ -356779,7 +357461,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sl @@ -356792,7 +357474,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hu @@ -356805,7 +357487,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:tt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/tt @@ -356818,7 +357500,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:az multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/az @@ -356831,7 +357513,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:am multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/am @@ -356844,7 +357526,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:is multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/is @@ -356857,7 +357539,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:lv multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/lv @@ -356870,7 +357552,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:th multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/th @@ -356883,7 +357565,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ka multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ka @@ -356896,7 +357578,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hi @@ -356909,7 +357591,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:zh_HK multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/zh_HK @@ -356922,7 +357604,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ml multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ml @@ -356935,7 +357617,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ta multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ta @@ -356948,7 +357630,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:kn multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/kn @@ -356961,7 +357643,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:si multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/si @@ -356974,7 +357656,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:kk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/kk @@ -356987,7 +357669,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:br multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/br @@ -356999,7 +357681,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:te multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/te @@ -357011,7 +357693,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:csb multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/csb @@ -357023,7 +357705,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gd multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gd @@ -357035,13 +357717,20 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:mr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/mr + + 2024-09-24 + 2.10.38 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-01-03 2.10.36 @@ -357656,7 +358345,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Graf tabanlı resim işleme altyapısı gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. - https://download.gimp.org/pub/gegl/0.4/gegl-0.4.46.tar.xz + https://download.gimp.org/pub/gegl/0.4/gegl-0.4.48.tar.xz ruby meson @@ -357690,6 +358379,9 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression gobject-introspection-devel babl-devel + + 66de8124.patch + multimedia/graphics/gegl/pspec.xml @@ -357734,7 +358426,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression babl-devel glib2-devel json-glib-devel - gegl + gegl /usr/include @@ -357743,6 +358435,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2024-08-10 + 0.4.48 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-10-25 0.4.46 @@ -371024,7 +371723,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression multimedia.videoplayer mpv is based on mplayer2 mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs. - https://github.com/mpv-player/mpv/archive/v0.38.0.tar.gz + https://github.com/mpv-player/mpv/archive/v0.39.0.tar.gz meson python3-devel @@ -371149,7 +371848,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression mpv-player-devel - mpv-player + mpv-player /usr/lib/pkgconfig @@ -371157,6 +371856,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2024-09-24 + 0.39.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-04-17 0.38.0 @@ -378419,7 +379125,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol multimedia.misc FFmpeg version of headers required to interface with Nvidias codec APIs FFmpeg version of headers required to interface with Nvidias codec APIs - https://github.com/FFmpeg/nv-codec-headers/releases/download/n11.1.5.1/nv-codec-headers-11.1.5.1.tar.gz + https://github.com/FFmpeg/nv-codec-headers/releases/download/n12.2.72.0/nv-codec-headers-12.2.72.0.tar.gz multimedia/misc/ffnvcodec/pspec.xml @@ -378431,6 +379137,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2024-09-27 + 12.2.72.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + 2022-07-03 11.1.5.1 @@ -399943,7 +400656,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol OpenSSH est une version libre des outils de connexion SSH sur lesquels les utilisateurs techniquement chevronnés s'appuient. Les utilisateurs de telnet, rlogin et ftp ne se rendent peut être pas compte que les mots de passe sont transmis sur internet en clair. OpenSSH crypte tout le trafic (y compris les mots de passe) pour éliminer les écoutes passives, les détournements de connexion et autres attaques. OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other attacks. OpenSSH teknik internet kullanıcıların güvendikleri SSH bağlanırlık araçlarının Özgür (free) sürümüdür.telnet, rlogin ve ftp kullanıcıları parolalarının internetten şifresiz olarak aktarıldığını anlayamayabilirler ancak aktarılmaktadır.OpenSSH eavesdropping (iletişim kanalını dinleme), connection hijacking (bağlantı çalma) ve diğer atakları önlemek için tüm bağlantı trafiğini (parolalar dahil) şifrelemektedir. - https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz + https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.9p1.tar.gz libedit-devel zlib-devel @@ -399979,6 +400692,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2024-09-24 + 9.9.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-07-03 9.8.1 @@ -419943,7 +420663,7 @@ complete albums that you have purchased from Amazon. Bir uzak masaüstü protokol uygulaması FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. - https://github.com/FreeRDP/FreeRDP/archive/2.11.2.tar.gz + https://github.com/FreeRDP/FreeRDP/archive/3.8.0.tar.gz pam-devel cups-devel @@ -419964,8 +420684,17 @@ complete albums that you have purchased from Amazon. openssl-devel zlib-devel cmake - libxslt + libxslt-devel util-linux + gtk3-devel + fuse3-devel + icu4c-devel + json-c-devel + libsdl2-devel + sdl2-ttf-devel + e2fsprogs-devel + mit-kerberos-devel + webkit2gtk-4.1-devel wayland-devel libusb-devel libXext-devel @@ -420008,11 +420737,22 @@ complete albums that you have purchased from Amazon. pulseaudio-libs gstreamer gst-plugins-base + gtk3 + zlib + fuse3 + icu4c + json-c + libsdl2 + sdl2-ttf + e2fsprogs + mit-kerberos + webkit2gtk-4.1 /usr/bin /usr/lib /usr/share/freerdp + /usr/share/FreeRDP /usr/share/doc /usr/share/man @@ -420020,7 +420760,8 @@ complete albums that you have purchased from Amazon. freerdp-devel - freerdp + freerdp + zlib-devel openssl-devel wayland-devel libxkbcommon-devel @@ -420031,6 +420772,13 @@ complete albums that you have purchased from Amazon. + + 2024-09-27 + 3.8.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-09-21 2.11.2 @@ -421201,7 +421949,7 @@ complete albums that you have purchased from Amazon. GTK 4 için yazım denetimi kütüphanesi GTK 4 için yazım denetimi kütüphanesi - https://download.gnome.org/sources/libspelling/0.4/libspelling-0.4.0.tar.xz + https://download.gnome.org/sources/libspelling/0.4/libspelling-0.4.1.tar.xz meson asciidoc @@ -421241,7 +421989,7 @@ complete albums that you have purchased from Amazon. libspelling-devel Development files for libspelling - libspelling + libspelling gtk4-devel glib2-devel gtksourceview5-devel @@ -421252,6 +422000,13 @@ complete albums that you have purchased from Amazon. + + 2024-09-27 + 0.4.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-09-14 0.4.0 @@ -435488,7 +436243,7 @@ provide integrated access to the cloud providers services. Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. git - https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.46.0.tar.xz + https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.46.2.tar.xz openssl-devel libpcre2-devel @@ -435510,7 +436265,7 @@ provide integrated access to the cloud providers services. Fast Version Control System app:console - perl-Git + perl-Git perl-String-ShellQuote perl-Net-SMTP-SSL perl-Authen-SASL @@ -435575,7 +436330,7 @@ provide integrated access to the cloud providers services. zlib libpcre2 - git + git /etc/conf.d/git-daemon @@ -435614,7 +436369,7 @@ provide integrated access to the cloud providers services. gitk, Git sürüm ağacı görüntüleyicisi sunar. app:gui - git + git tcltk @@ -435630,8 +436385,8 @@ provide integrated access to the cloud providers services. git-gui, GIT için basit bir grafik arayüz sunar. app:gui - git - gitk + git + gitk tcltk @@ -435655,7 +436410,7 @@ provide integrated access to the cloud providers services. app:web server.web - git + git /var/www/localhost @@ -435669,6 +436424,13 @@ provide integrated access to the cloud providers services. + + 2024-09-24 + 2.46.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-07-30 2.46.0 @@ -451194,9 +451956,9 @@ provide integrated access to the cloud providers services. python-pygobject3-devel python3-pygobject3-devel glib2-devel - gstreamer-devel + gstreamer-devel python-devel - gst-plugins-base-devel + gst-plugins-base-devel programming/language/python/gst-python/pspec.xml @@ -451216,6 +451978,13 @@ provide integrated access to the cloud providers services. + + 2024-09-24 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2024-08-31 1.16.2 @@ -469598,7 +470367,7 @@ provide integrated access to the cloud providers services. GLib/GObject/GIO/GTK+ için python3 bağlayıcıları. pygobject is GLib's GObject library bindings for Python3. python3-pygobject, Python3 için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - https://download.gnome.org/sources/pygobject/3.48/pygobject-3.48.2.tar.xz + https://download.gnome.org/sources/pygobject/3.50/pygobject-3.50.0.tar.xz meson glib2-devel @@ -469636,7 +470405,7 @@ provide integrated access to the cloud providers services. glib2-devel libffi-devel gobject-introspection-devel - python3-pygobject3 + python3-pygobject3 /usr/include @@ -469644,6 +470413,13 @@ provide integrated access to the cloud providers services. + + 2024-09-24 + 3.50.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-04-06 3.48.2 @@ -475491,14 +476267,14 @@ provide integrated access to the cloud providers services. GStreamer Python bağlayıcıları gst-python3 is a Python frontend to GStreamer. gst-python3 GStreamer için Python arabirimidir. - https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.24.7.tar.xz + https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.24.8.tar.xz meson glib2-devel python3-pygobject3-devel - gstreamer-devel + gstreamer-devel python3-devel - gst-plugins-base-devel + gst-plugins-base-devel programming/language/python3/gst-python3/pspec.xml @@ -475517,6 +476293,13 @@ provide integrated access to the cloud providers services. + + 2024-09-24 + 1.24.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2024-08-31 1.24.7 @@ -478823,8 +479606,9 @@ provide integrated access to the cloud providers services. Cairo vektörel grafik kitaplığı için Python3 bağlayıcıları Pycairo is set of Python3 bindings for the cairo graphics library. python3-cairo, Cairo vektörel grafik kitaplığı için Python bağlayıcıları sunar. - https://github.com/pygobject/pycairo/archive/v1.24.0.tar.gz + https://github.com/pygobject/pycairo/archive/v1.27.0.tar.gz + meson python3-devel python3-setuptools cairo-devel @@ -478849,7 +479633,7 @@ provide integrated access to the cloud providers services. python3-cairo için geliştirme dosyaları python3-cairo-devel, python3-cairo için geliştirme dosyalarını içerir. - python3-cairo + python3-cairo cairo-devel @@ -478859,6 +479643,13 @@ provide integrated access to the cloud providers services. + + 2024-09-24 + 1.27.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2023-10-17 1.24.0 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index a4251b70a0..c1f9151542 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -42edf29fc880d64c36d9c38f1165f2c3ac362741 \ No newline at end of file +fce4afb7f4869790daab9bd2aea607831d1c7565 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index f8ec8004c1..72cf775c57 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 840269b3f0..4363896562 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -8531f00f256534fc65de57871101abe482ecf4d4 \ No newline at end of file +2fd289a63fae3de80992059625aa4177c1fb4318 \ No newline at end of file