diff --git a/multimedia/converter/flowblade/pspec.xml b/multimedia/converter/flowblade/pspec.xml index a7545b294b..699d760926 100644 --- a/multimedia/converter/flowblade/pspec.xml +++ b/multimedia/converter/flowblade/pspec.xml @@ -27,13 +27,13 @@ flowblade - mlt + mlt6 gmic gtk3 ffmpeg python3 librsvg - python-mlt + python-mlt6 dbus-python3 frei0r-plugins python3-numpy @@ -51,6 +51,13 @@ + + 2021-10-28 + 2.8.0.3 + Rebuild. + PisiLinux Community + admins@pisilinux.org + 2021-10-25 2.8.0.3 diff --git a/multimedia/tv/mlt6/actions.py b/multimedia/tv/mlt6/actions.py new file mode 100644 index 0000000000..5352bde12e --- /dev/null +++ b/multimedia/tv/mlt6/actions.py @@ -0,0 +1,61 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import get + +def setup(): + shelltools.export("LDFLAGS", get.LDFLAGS()) + + shelltools.makedirs("build") + shelltools.cd("build") + + cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \ + -DMOD_OPENCV=ON \ + -DMOD_GTK2=OFF \ + -DMOD_RTAUDIO=OFF \ + -DSWIG_PYTHON=ON", sourceDir="..") + + #autotools.configure("--enable-gpl \ + #--enable-gpl3 \ + #--disable-gtk2 \ + #--qt-libdir=/usr/lib/ \ + #--qt-includedir=/usr/include/qt5 \ + #--avformat-vdpau \ + #--avformat-swscale") + + # Enable bindings + #shelltools.echo("%s/src/swig/config.mak" % get.curDIR(), "SUBDIRS = perl python") + +def build(): + shelltools.cd("build") + cmaketools.make() + #cmaketools.make("-C src/swig") + + #autotools.make() + #autotools.make("-C src/swig") + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.rename("/usr/bin/melt", "melt6") + + #autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + # We should manually install the bindings :( + #pisitools.insinto("/usr/lib/%s/site-packages/" % get.curPYTHON(), "src/swig/python/mlt.py") + #pisitools.dolib("src/swig/python/_mlt.so", "/usr/lib/%s/site-packages/" % get.curPYTHON()) + + #pisitools.insinto("/usr/lib/perl5/vendor_perl/%s/" % get.curPERL(), "src/swig/perl/blib/lib/mlt.pm") + #pisitools.dolib("src/swig/perl/blib/arch/auto/mlt/mlt.so", "/usr/lib/perl5/vendor_perl/%s/i686-linux-thread-multi/auto/mlt/" % get.curPERL()) + + + shelltools.cd("..") + pisitools.dodoc("COPYING", "GPL*", "README*") diff --git a/multimedia/tv/mlt6/files/7063e88e.patch b/multimedia/tv/mlt6/files/7063e88e.patch new file mode 100644 index 0000000000..4ad7ff5de4 --- /dev/null +++ b/multimedia/tv/mlt6/files/7063e88e.patch @@ -0,0 +1,50 @@ +From 7063e88e09977282470c4f2f93e56e05f21b7c2b Mon Sep 17 00:00:00 2001 +From: Dan Dennedy +Date: Fri, 16 Apr 2021 11:15:37 -0700 +Subject: [PATCH] fix #704 by properly identifying cover art + +(cherry picked from commit 6b0829df726aa9a840b8b34e923e9faf17a3a5ca) +--- + src/modules/avformat/producer_avformat.c | 15 ++++----------- + 1 file changed, 4 insertions(+), 11 deletions(-) + +diff --git a/src/modules/avformat/producer_avformat.c b/src/modules/avformat/producer_avformat.c +index 049452f9d..e079e6f70 100644 +--- a/src/modules/avformat/producer_avformat.c ++++ b/src/modules/avformat/producer_avformat.c +@@ -398,10 +398,7 @@ static mlt_properties find_default_streams( producer_avformat self ) + if ( first_video_index < 0 ) + first_video_index = i; + // Only set the video stream if not album art +- if (self->video_index < 0 && +- (codec_params->codec_id != AV_CODEC_ID_MJPEG || +- codec_context->time_base.num != 1 || +- codec_context->time_base.den != 90000)) { ++ if (self->video_index < 0 && !(context->streams[i]->disposition & AV_DISPOSITION_ATTACHED_PIC)) { + self->video_index = i; + } + mlt_properties_set( meta_media, key, "video" ); +@@ -1682,11 +1679,7 @@ static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_form + codec_params = stream->codecpar; + + // Always use the image cache for album art. +- int is_album_art = ((codec_context->codec_id == AV_CODEC_ID_MJPEG +- || codec_context->codec_id == AV_CODEC_ID_GIF +- || codec_context->codec_id == AV_CODEC_ID_PNG) +- && mlt_properties_get_int(properties, "meta.media.frame_rate_num") == 90000 +- && mlt_properties_get_int(properties, "meta.media.frame_rate_den") == 1); ++ int is_album_art = stream->disposition & AV_DISPOSITION_ATTACHED_PIC; + if (is_album_art) + position = 0; + +@@ -2296,8 +2289,8 @@ static int video_codec_init( producer_avformat self, int index, mlt_properties p + mlt_properties_set_int( properties, "meta.media.frame_rate_num", frame_rate.num ); + mlt_properties_set_int( properties, "meta.media.frame_rate_den", frame_rate.den ); + +- // MP3 album art is a single JPEG at 90000 fps, which is not seekable. +- if ( codec->id == AV_CODEC_ID_MJPEG && frame_rate.num == 90000 && frame_rate.den == 1 ) ++ // Cover art is a single image at 90000 fps, which is not seekable. ++ if (stream->disposition & AV_DISPOSITION_ATTACHED_PIC) + self->video_seekable = 0; + + // Set the YUV colorspace from override or detect diff --git a/multimedia/tv/mlt6/files/a87229bc.patch b/multimedia/tv/mlt6/files/a87229bc.patch new file mode 100644 index 0000000000..a8f3d68dc5 --- /dev/null +++ b/multimedia/tv/mlt6/files/a87229bc.patch @@ -0,0 +1,19 @@ +From a87229bcea6242da2a0b923ad11dffd37d44098f Mon Sep 17 00:00:00 2001 +From: j-b-m +Date: Fri, 14 May 2021 08:08:25 +0200 +Subject: [PATCH] Backport vid.stab metadata fix + +--- + src/modules/vid.stab/CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/modules/vid.stab/CMakeLists.txt b/src/modules/vid.stab/CMakeLists.txt +index f3f2fec8a..3fce11663 100644 +--- a/src/modules/vid.stab/CMakeLists.txt ++++ b/src/modules/vid.stab/CMakeLists.txt +@@ -12,4 +12,4 @@ set_target_properties(mltvidstab PROPERTIES LIBRARY_OUTPUT_DIRECTORY ..) + + install(TARGETS mltvidstab LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/mlt) + +-install(FILES filter_deshake.yml filter_vidstab.yml DESTINATION ${CMAKE_INSTALL_DATADIR}/mlt/vidstab) ++install(FILES filter_deshake.yml filter_vidstab.yml DESTINATION ${CMAKE_INSTALL_DATADIR}/mlt/vid.stab) diff --git a/multimedia/tv/mlt6/pspec.xml b/multimedia/tv/mlt6/pspec.xml new file mode 100644 index 0000000000..0515f15f0d --- /dev/null +++ b/multimedia/tv/mlt6/pspec.xml @@ -0,0 +1,126 @@ + + + + + mlt6 + https://www.mltframework.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + A multimedia framework, designed and developed for television broadcasting + MLT is an open source multimedia framework, designed and developed for television broadcasting. + https://github.com/mltframework/mlt/releases/download/v6.26.1/mlt-6.26.1.tar.gz + + cmake + alsa-lib-devel + swig + gtk2-devel + pango-devel + opencv-devel + python3-devel + glib2-devel + frei0r-plugins-devel + fftw3-devel + jack-audio-connection-kit-devel + pulseaudio-libs-devel + qt5-base-devel + qt5-svg-devel + perl + libxml2-devel + libsamplerate-devel + ladspa-sdk-devel + gdk-pixbuf-devel + libvorbis-devel + sdl-image-devel + libexif-devel + + libsdl2-devel + ffmpeg-devel + libdv-devel + sox-devel + fontconfig-devel + + + 7063e88e.patch + a87229bc.patch + + + + + python-mlt6 + programming.language.python + Python bindings for MLT + + libgcc + python3 + mlt6 + + + /usr/lib/python* + + + + + mlt6 + + sox + gtk2 + fftw3 + pango + glib2 + opencv + ffmpeg + libX11 + libgcc + libsdl + libsdl2 + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libvorbis + sdl-image + fontconfig + gdk-pixbuf + libsamplerate + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/mlt + /usr/share/man + /usr/share/mlt/modules + /usr/share/mlt/modules/lumas/PAL + + + + + mlt6-devel + Development files for mlt + + mlt6 + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + + 2021-08-31 + 6.26.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + diff --git a/multimedia/tv/mlt6/translations.xml b/multimedia/tv/mlt6/translations.xml new file mode 100644 index 0000000000..43888f0a71 --- /dev/null +++ b/multimedia/tv/mlt6/translations.xml @@ -0,0 +1,23 @@ + + + + mlt + Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı + MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. + + + + perl-mlt + MLT için Perl bağlayıcıları + + + + python-mlt + MLT için Python bağlayıcıları + + + + mlt-devel + mlt için geliştirme dosyaları + + diff --git a/pisi-index.xml b/pisi-index.xml index 3b36373aca..2d06833c4a 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -4393,10 +4393,13 @@ Development files and headers for openconnect openconnect için geliştirme dosyaları ve başlıkları + lz4-devel zlib-devel + p11-kit-devel gnutls-devel openssl-devel libxml2-devel + libproxy-devel openconnect @@ -45260,6 +45263,127 @@ complete albums that you have purchased from Amazon. + + + mlt6 + https://www.mltframework.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.tv + A multimedia framework, designed and developed for television broadcasting + MLT is an open source multimedia framework, designed and developed for television broadcasting. + https://github.com/mltframework/mlt/releases/download/v6.26.1/mlt-6.26.1.tar.gz + + cmake + alsa-lib-devel + swig + gtk2-devel + pango-devel + opencv-devel + python3-devel + glib2-devel + frei0r-plugins-devel + fftw3-devel + jack-audio-connection-kit-devel + pulseaudio-libs-devel + qt5-base-devel + qt5-svg-devel + perl + libxml2-devel + libsamplerate-devel + ladspa-sdk-devel + gdk-pixbuf-devel + libvorbis-devel + sdl-image-devel + libexif-devel + libsdl2-devel + ffmpeg-devel + libdv-devel + sox-devel + fontconfig-devel + + + 7063e88e.patch + a87229bc.patch + + multimedia/tv/mlt6/pspec.xml + + + python-mlt6 + Python bindings for MLT + programming.language.python + + libgcc + python3 + mlt6 + + + /usr/lib/python* + + + + mlt6 + + sox + gtk2 + fftw3 + pango + glib2 + opencv + ffmpeg + libX11 + libgcc + libsdl + libsdl2 + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libvorbis + sdl-image + fontconfig + gdk-pixbuf + libsamplerate + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/mlt + /usr/share/man + /usr/share/mlt/modules + /usr/share/mlt/modules/lumas/PAL + + + + mlt6-devel + Development files for mlt + + mlt6 + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-08-31 + 6.26.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + smtube @@ -47672,7 +47796,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.18.5.tar.xz meson xz-devel @@ -47705,9 +47829,9 @@ complete albums that you have purchased from Amazon. gdk-pixbuf-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 @@ -47746,9 +47870,9 @@ complete albums that you have purchased from Amazon. libraw1394 libiec61883 libjpeg-turbo - gstreamer + gstreamer pulseaudio-libs - gst-plugins-base + gst-plugins-base jack-audio-connection-kit @@ -47765,6 +47889,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -47918,7 +48049,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.18.5.tar.xz meson valgrind @@ -47939,7 +48070,7 @@ complete albums that you have purchased from Amazon. vulkan-devel libkate-devel libmpcdec-devel - ilmbase-devel + imath-devel libbs2b-devel librsvg-devel rtmpdump-devel @@ -47989,9 +48120,9 @@ complete albums that you have purchased from Amazon. libvo-aacenc-devel libjpeg-turbo-devel libvo-amrwbenc-devel - gstreamer-devel + gstreamer-devel gobject-introspection-devel - gst-plugins-base-devel + gst-plugins-base-devel multimedia/video/gst-plugins-bad/pspec.xml @@ -48024,7 +48155,7 @@ complete albums that you have purchased from Amazon. vulkan libkate libmpcdec - ilmbase + imath libnice libbs2b librsvg @@ -48063,10 +48194,10 @@ complete albums that you have purchased from Amazon. libvo-aacenc schroedinger libjpeg-turbo - gstreamer + gstreamer libvo-amrwbenc wayland-client - gst-plugins-base + gst-plugins-base /usr/bin @@ -48088,7 +48219,7 @@ complete albums that you have purchased from Amazon. gstreamer-devel gst-plugins-base-devel - gst-plugins-bad + gst-plugins-bad /usr/lib/pkgconfig @@ -48099,6 +48230,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -48530,7 +48668,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.18.5.tar.xz git meson @@ -48563,7 +48701,7 @@ complete albums that you have purchased from Amazon. libX11-devel xorg-proto xorg-server-xvfb - gstreamer-devel + gstreamer-devel gobject-introspection-devel wayland-protocols-devel @@ -48598,7 +48736,7 @@ complete albums that you have purchased from Amazon. graphene wayland-cursor wayland-client - gstreamer + gstreamer /usr/bin @@ -48638,7 +48776,7 @@ complete albums that you have purchased from Amazon. libjpeg-turbo-32bit - gst-plugins-base + gst-plugins-base orc-32bit zlib-32bit cairo-32bit @@ -48678,7 +48816,7 @@ complete albums that you have purchased from Amazon. 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 @@ -48700,6 +48838,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -48898,7 +49043,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.18.5.tar.xz meson gobject-introspection-devel @@ -48940,7 +49085,7 @@ complete albums that you have purchased from Amazon. /usr/share/doc /usr/share/locale /usr/share/gstreamer-1.0/gdb - /usr/share/gdb/auto-load/usr/lib/libgstreamer-1.0.so.0.1804.0-gdb.py + /usr/share/gdb/auto-load/usr/lib/libgstreamer-1.0.so.0.1805.0-gdb.py /usr/share/man @@ -48963,7 +49108,7 @@ complete albums that you have purchased from Amazon. glib2-32bit elfutils-32bit libunwind-32bit - gstreamer + gstreamer /usr/lib32/libgstbase* @@ -48972,7 +49117,7 @@ complete albums that you have purchased from Amazon. /usr/lib32/libgstnet* /usr/lib32/libgstreamer* /usr/lib32/gstreamer-1.0 - /usr/share/gdb/auto-load/usr/lib32/libgstreamer-1.0.so.0.1804.0-gdb.py + /usr/share/gdb/auto-load/usr/lib32/libgstreamer-1.0.so.0.1805.0-gdb.py gstreamer-next-32bit @@ -48983,7 +49128,7 @@ complete albums that you have purchased from Amazon. Development files for gstreamer gstreamer için geliştirme dosyaları - gstreamer + gstreamer libunwind-devel elfutils-devel glib2-devel @@ -49001,6 +49146,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -49186,7 +49338,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.18.5.tar.xz meson python3 @@ -49197,7 +49349,7 @@ complete albums that you have purchased from Amazon. yasm-devel ffmpeg-devel libunwind-devel - gst-plugins-base-devel + gst-plugins-base-devel multimedia/video/gst-libav/pspec.xml @@ -49210,7 +49362,7 @@ complete albums that you have purchased from Amazon. glib2 ffmpeg gstreamer - gst-plugins-base + gst-plugins-base /usr/lib @@ -49221,6 +49373,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -49834,11 +49993,11 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-editing-services/gst-editing-services-1.18.5.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 @@ -49873,7 +50032,7 @@ complete albums that you have purchased from Amazon. gst-editing-services-devel Development files for gst-editing-services - gst-editing-services + gst-editing-services gstreamer-devel gst-plugins-base-devel @@ -49884,6 +50043,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-24 1.18.4 @@ -50556,8 +50722,8 @@ complete albums that you have purchased from Amazon. pangomm-devel cairomm-devel libxmlpp-devel - gstreamer-devel - gst-plugins-base-devel + gstreamer-devel + gst-plugins-base-devel multimedia/video/gstreamermm/pspec.xml @@ -50569,9 +50735,9 @@ complete albums that you have purchased from Amazon. libgcc libxml2 libxmlpp - gstreamer + gstreamer libsigc++ - gst-plugins-base + gst-plugins-base /usr/lib @@ -50591,7 +50757,7 @@ complete albums that you have purchased from Amazon. libxmlpp-devel gstreamer-devel gst-plugins-base-devel - gstreamermm + gstreamermm /usr/include/gstreamermm-1.0 @@ -50602,6 +50768,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2021-06-14 1.10.0 @@ -51115,7 +51288,7 @@ complete albums that you have purchased from Amazon. multimedia.video GStreamer Multimedia Framework VA Plugins gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.18.5.tar.xz meson python3 @@ -51124,9 +51297,9 @@ complete albums that you have purchased from Amazon. 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 @@ -51143,9 +51316,9 @@ complete albums that you have purchased from Amazon. libXrender wayland-client wayland-protocols - gstreamer - gst-plugins-bad - gst-plugins-base + gstreamer + gst-plugins-bad + gst-plugins-base /usr/lib @@ -51157,6 +51330,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -51315,7 +51495,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.18.5.tar.xz meson xz-devel @@ -51335,8 +51515,8 @@ complete albums that you have purchased from Amazon. 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 @@ -51355,8 +51535,8 @@ complete albums that you have purchased from Amazon. libmpeg2 libdvdread opencore-amr - gstreamer - gst-plugins-base + gstreamer + gst-plugins-base /usr/lib/gstreamer-1.0 @@ -51370,6 +51550,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-14 1.18.4 @@ -51660,7 +51847,7 @@ complete albums that you have purchased from Amazon. 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.18.4.tar.xz + https://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.18.5.tar.xz meson python3-devel @@ -51687,7 +51874,7 @@ complete albums that you have purchased from Amazon. gst-rtsp-server-devel Development files for gst-rtsp-server - gst-rtsp-server + gst-rtsp-server gstreamer-devel @@ -51697,6 +51884,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-24 1.18.4 @@ -53150,7 +53344,7 @@ complete albums that you have purchased from Amazon. openssl-devel pugixml-devel openexr-devel - ilmbase-devel + imath-devel glew-devel python3-devel txt2man @@ -53184,7 +53378,7 @@ complete albums that you have purchased from Amazon. openssl giflib pybind11 - ilmbase + imath openjpeg2 openexr-libs libjpeg-turbo @@ -53216,7 +53410,7 @@ complete albums that you have purchased from Amazon. opencv-devel giflib-devel pugixml-devel - ilmbase-devel + imath-devel openjpeg2-devel openexr-devel libjpeg-turbo-devel @@ -53476,7 +53670,7 @@ complete albums that you have purchased from Amazon. imagemagick-docs, imagemagick için belgelendirme dosyalarını içerir. data:doc - imagemagick + imagemagick /usr/share/doc/imagemagick/html @@ -53489,7 +53683,7 @@ complete albums that you have purchased from Amazon. Pliki nagłówkowe imagemagick imagemagick-devel, imagemagick için geliştirme dosyalarını içerir. - imagemagick + imagemagick /usr/include @@ -53500,6 +53694,13 @@ complete albums that you have purchased from Amazon. + + 2021-10-28 + 7.0.10.62 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-22 7.0.10.62 @@ -55548,7 +55749,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression openexr-libs librsvg-devel lcms2-devel - ilmbase-devel gettext-devel @@ -55574,7 +55774,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression babl zlib openexr-libs - ilmbase librsvg lcms2 libjpeg-turbo @@ -55591,7 +55790,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Development files for gegl02 gegl02 için geliştirme dosyaları - gegl02 + gegl02 glib2-devel babl-devel @@ -55602,6 +55801,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-10-27 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-20 0.2.2 @@ -55717,7 +55923,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression librsvg-devel openexr-devel lensfun-devel - ilmbase-devel libspiro-devel json-glib-devel libgexiv2-devel @@ -55770,7 +55975,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression babl-devel glib2-devel json-glib-devel - gegl + gegl /usr/include @@ -55779,6 +55984,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-10-27 + 0.4.32 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2021-09-06 0.4.32 @@ -55996,10 +56208,14 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression lapack-devel sqlite-devel openexr-devel + lensfun-devel freeglut-devel libpano13-devel libjpeg-turbo-devel + + hugin-openexr3.patch + multimedia/graphics/hugin/pspec.xml @@ -56021,7 +56237,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libX11 sqlite enblend - ilmbase libgomp libglvnd freeglut @@ -56060,6 +56275,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-10-27 + 2020.0.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + 2021-03-12 2020.0.0 @@ -57861,7 +58083,7 @@ 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/pub/gimp/v2.10/gimp-2.10.26.tar.bz2 + https://download.gimp.org/pub/gimp/v2.10/gimp-2.10.28.tar.bz2 bzip2 xz-devel @@ -57933,7 +58155,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression gegl-devel cairo-devel gdk-pixbuf-devel - gimp + gimp /usr/include @@ -57969,7 +58191,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libXmu jasper libX11 - ilmbase libXext librsvg libexif @@ -58006,6 +58227,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression /usr/share/applications /usr/share/application-registry /usr/share/locale/ky/LC_MESSAGES/gimp20.mo + /usr/share/locale/kab gimp-splash-pencils.png @@ -58018,7 +58240,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:tr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/tr @@ -58031,7 +58253,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ast multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ast @@ -58044,7 +58266,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:my multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/my @@ -58057,7 +58279,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nds multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nds @@ -58070,7 +58292,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:el multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/el @@ -58083,7 +58305,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gu @@ -58096,7 +58318,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:be multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/be @@ -58109,7 +58331,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:vi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/vi @@ -58122,7 +58344,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ca multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ca @@ -58135,7 +58357,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:eo multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/eo @@ -58148,7 +58370,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:cs multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/cs @@ -58161,7 +58383,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 @@ -58174,7 +58396,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ar multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ar @@ -58186,7 +58408,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ar multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/bs @@ -58199,7 +58421,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:km multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/km @@ -58212,7 +58434,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ga multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ga @@ -58225,7 +58447,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fi @@ -58238,7 +58460,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:eu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/eu @@ -58251,7 +58473,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:et multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/et @@ -58264,7 +58486,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:xh multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/xh @@ -58277,7 +58499,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gl @@ -58290,7 +58512,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:id multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/id @@ -58303,7 +58525,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:es multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/es @@ -58316,7 +58538,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ru multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ru @@ -58329,7 +58551,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:rw multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/rw @@ -58342,7 +58564,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nl @@ -58355,7 +58577,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nn multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nn @@ -58368,7 +58590,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:nb multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/nb @@ -58381,7 +58603,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ne multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ne @@ -58394,7 +58616,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:lt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/lt @@ -58407,7 +58629,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pa multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pa @@ -58420,7 +58642,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ro multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ro @@ -58433,7 +58655,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 @@ -58446,7 +58668,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:yi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/yi @@ -58459,7 +58681,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 @@ -58472,7 +58694,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fr @@ -58485,7 +58707,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:bg multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/bg @@ -58498,7 +58720,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ms multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ms @@ -58511,7 +58733,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 @@ -58524,7 +58746,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hr @@ -58537,7 +58759,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 @@ -58550,7 +58772,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ko multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ko @@ -58563,7 +58785,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:it multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/it @@ -58576,7 +58798,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:fa multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/fa @@ -58589,7 +58811,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:dz multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/dz @@ -58602,7 +58824,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 @@ -58615,7 +58837,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:da multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/da @@ -58628,7 +58850,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ja multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ja @@ -58641,7 +58863,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:he multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/he @@ -58654,7 +58876,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pt @@ -58667,7 +58889,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 @@ -58680,7 +58902,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sr @@ -58693,7 +58915,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:oc multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/oc @@ -58706,7 +58928,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sv multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sv @@ -58719,7 +58941,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:mk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/mk @@ -58732,7 +58954,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sk @@ -58745,7 +58967,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:de multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/de @@ -58758,7 +58980,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:pl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/pl @@ -58771,7 +58993,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:uk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/uk @@ -58784,7 +59006,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:sl multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/sl @@ -58797,7 +59019,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hu multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hu @@ -58810,7 +59032,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:tt multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/tt @@ -58823,7 +59045,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:az multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/az @@ -58836,7 +59058,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:am multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/am @@ -58849,7 +59071,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:is multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/is @@ -58862,7 +59084,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:lv multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/lv @@ -58875,7 +59097,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:th multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/th @@ -58888,7 +59110,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ka multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ka @@ -58901,7 +59123,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:hi multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/hi @@ -58914,7 +59136,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 @@ -58927,7 +59149,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ml multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ml @@ -58940,7 +59162,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:ta multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/ta @@ -58953,7 +59175,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:kn multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/kn @@ -58966,7 +59188,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:si multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/si @@ -58979,7 +59201,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:kk multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/kk @@ -58992,7 +59214,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:br multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/br @@ -59004,7 +59226,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:te multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/te @@ -59016,7 +59238,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:csb multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/csb @@ -59028,7 +59250,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:gd multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/gd @@ -59040,13 +59262,20 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression locale:mr multimedia.graphics.gimp.l10n - gimp + gimp /usr/share/locale/mr + + 2021-10-27 + 2.10.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-09-06 2.10.26 @@ -59516,6 +59745,9 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libjpeg-turbo-devel GraphicsMagick-devel + + darktable-openexr3.patch + multimedia/graphics/darktable/pspec.xml @@ -59542,7 +59774,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libxml2 pugixml libsdl2 - ilmbase lensfun librsvg libsoup @@ -61146,13 +61377,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression flowblade - mlt + mlt6 gmic gtk3 ffmpeg python3 librsvg - python-mlt + python-mlt6 dbus-python3 frei0r-plugins python3-numpy @@ -61169,6 +61400,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-10-28 + 2.8.0.3 + Rebuild. + PisiLinux Community + admins@pisilinux.org + 2021-10-25 2.8.0.3 @@ -61712,6 +61950,9 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression python3-distutils-extra python3-pygobject3-devel + + Prevent_crash_when_duration_is_not_known_or_zero.patch + multimedia/converter/soundconverter/pspec.xml @@ -61738,7 +61979,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - 2021-10-23 + 2021-10-28 4.0.2 Version bump. fury @@ -62897,7 +63138,7 @@ cleaner, which will allow to add new features in the future. freetype-devel glew-devel icu4c-devel - ilmbase-devel + imath-devel jack-audio-connection-kit-devel libdc1394-devel libgomp @@ -62929,6 +63170,9 @@ cleaner, which will allow to add new features in the future. python3-idna python3-setuptools + + blender-openexr.patch + multimedia/editor/blender/pspec.xml @@ -62949,7 +63193,7 @@ cleaner, which will allow to add new features in the future. openjpeg2 libXrender glew - ilmbase + imath jack-audio-connection-kit libgcc libdc1394 @@ -71731,18 +71975,18 @@ cleaner, which will allow to add new features in the future. Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.1.0.tar.gz - git cmake pybind11 yaml-cpp glew-devel lcms2-devel boost-devel + openxr-devel pystring-devel freeglut-devel tinyxml-devel python3-devel - ilmbase-devel + imath-devel multimedia/misc/opencolorio/pspec.xml @@ -71752,7 +71996,7 @@ cleaner, which will allow to add new features in the future. glew expat libgcc - ilmbase + imath lcms2 freeglut libglvnd @@ -75745,9 +75989,10 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. - https://github.com/AcademySoftwareFoundation/openexr/archive/v2.5.3.tar.gz + https://github.com/AcademySoftwareFoundation/openexr/archive/v3.1.2.tar.gz - ilmbase-devel + cmake + imath-devel zlib-devel multimedia/misc/openexr/pspec.xml @@ -75755,7 +76000,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol openexr - ilmbase + imath libgcc openexr-libs @@ -75768,7 +76013,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol OpenEXR runtime libraries OpenEXR çalışma zamanı kitaplıkları - ilmbase + imath zlib libgcc @@ -75782,7 +76027,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol OpenEXR example files OpenEXR örnek dosyalar - /usr/share/doc/openexr/examples + /usr/share/doc/OpenEXR/examples @@ -75790,17 +76035,25 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development files for openexr OpenEXR için geliştirme dosyaları - openexr + openexr mesa-glu-devel - ilmbase-devel + imath-devel /usr/include + /usr/lib/cmake /usr/lib/pkgconfig /usr/share/aclocal + + 2021-10-26 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-20 2.5.3 @@ -76085,7 +76338,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol multimedia.misc C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags. C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags. - https://github.com/Martchus/tagparser/archive/refs/tags/v10.2.0.tar.gz + https://github.com/Martchus/tagparser/archive/refs/tags/v10.3.1.tar.gz cmake iso-codes @@ -76111,7 +76364,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol tagparser-devel - tagparser + tagparser cpp-utilities-devel @@ -76121,6 +76374,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-28 + 10.3.1 + Version bump. + fury + uglyside@yandex.ru + 2021-10-13 10.2.0 @@ -78095,7 +78355,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG. librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics. Scalable Vector Graphics (SVG) kitaplığı - mirrors://gnome/librsvg/2.52/librsvg-2.52.2.tar.xz + mirrors://gnome/librsvg/2.52/librsvg-2.52.3.tar.xz rust cairo-devel @@ -78154,7 +78414,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development files for librsvg librsvg için geliştirme dosyaları - librsvg + librsvg gdk-pixbuf-devel cairo-devel glib2-devel @@ -78166,6 +78426,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 2.52.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-16 2.52.2 @@ -108064,10 +108331,10 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol This framework provides additional image format plugins for QtGui. mirrors://kde/stable/frameworks/5.87/kimageformats-5.87.0.tar.xz + libheif-devel qt5-base-devel openexr-devel karchive-devel - ilmbase-devel extra-cmake-modules desktop/kde/framework/kimageformats/pspec.xml @@ -108076,9 +108343,9 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kimageformats qt5-base + libheif karchive openexr-libs - ilmbase /usr/share @@ -108088,6 +108355,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.87.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-10 5.87.0 @@ -124808,7 +125082,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma GTK2 and GTK3 Configurator for KDE Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. - mirrors://kde/stable/plasma/5.23.1/kde-gtk-config-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kde-gtk-config-5.23.2.tar.xz qt5-base-devel qt5-svg-devel @@ -124832,7 +125106,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol gtk3-devel at-spi2-core-devel extra-cmake-modules - kdecorations-devel + kdecorations-devel kdbusaddons-devel @@ -124875,6 +125149,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -125255,7 +125536,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Provides the interface and basic tools for the KDE workspace Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.23.1/kmenuedit-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kmenuedit-5.23.2.tar.xz qt5-base-devel kdoctools-devel @@ -125317,6 +125598,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -125697,7 +125985,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 window manager KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.23.1/kwin-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kwin-5.23.2.tar.xz lcms2-devel kactivities-devel @@ -125709,7 +125997,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kcoreaddons-devel kcrash-devel kdeclarative-devel - kdecorations-devel + kdecorations-devel kdoctools-devel kglobalaccel-devel ki18n-devel @@ -125726,7 +126014,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwindowsystem-devel kxmlgui-devel kidletime-devel - kscreenlocker-devel + kscreenlocker-devel libepoxy-devel libICE-devel libSM-devel @@ -125765,7 +126053,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libXi-devel extra-cmake-modules xorg-xwayland-devel - breeze-style + breeze-style libdrm-devel kirigami-devel pipewire-devel @@ -125792,7 +126080,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kcrash wayland kdeclarative - kdecorations + kdecorations kglobalaccel ki18n kiconthemes @@ -125852,7 +126140,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwin-devel Development files for kwin - kwin + kwin /usr/include @@ -125873,7 +126161,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol pipewire kidletime fontconfig - kwin + kwin /usr/bin/kwin_wayland @@ -125882,6 +126170,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -126268,7 +126563,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Plasma browser integration Components necessary to integrate browsers into the Plasma Desktop. - https://download.kde.org/stable/plasma/5.23.1/plasma-browser-integration-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/plasma-browser-integration-5.23.2.tar.xz cmake extra-cmake-modules @@ -126286,7 +126581,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol knotifications-devel kfilemetadata-devel kitemmodels-devel - plasma-workspace-devel + plasma-workspace-devel qt5-quickcontrols2-devel qt5-declarative-devel @@ -126319,6 +126614,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -126462,7 +126764,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol The KDE crash handler The KDE crash handler The KDE crash handler - https://download.kde.org/stable/plasma/5.23.1/drkonqi-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/drkonqi-5.23.2.tar.xz extra-cmake-modules qt5-base-devel @@ -126523,6 +126825,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -126916,7 +127225,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Breeze theme for Plymouth. Breeze theme for Plymouth. - mirrors://kde/stable/plasma/5.23.1/breeze-plymouth-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/breeze-plymouth-5.23.2.tar.xz extra-cmake-modules plymouth-devel @@ -126945,6 +127254,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -127319,7 +127635,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma The KDE Plasma Workspace Components The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. - mirrors://kde/stable/plasma/5.23.1/polkit-kde-agent-1-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/polkit-kde-agent-1-5.23.2.tar.xz qt5-base-devel kdoctools-devel @@ -127364,6 +127680,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -127738,7 +128061,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma The KDE5 Plasma Workspace Components The KDE5 Plasma Workspace Components - mirrors://kde/stable/plasma/5.23.1/plasma-workspace-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-workspace-5.23.2.tar.xz libgcc kio-devel @@ -127803,7 +128126,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol plasma-framework-devel kactivities-stats-devel networkmanager-qt-devel - kwin-devel + kwin-devel qt5-sql-odbc qt5-sql-mysql qt5-base-devel @@ -127944,7 +128267,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol plasma-workspace-devel Development files for kde5 plasma-workspace - plasma-workspace + plasma-workspace kio-devel zlib-devel baloo-devel @@ -128020,7 +128343,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol plasma-workspace-wayland Wayland support for Plasma - plasma-workspace + plasma-workspace xorg-xwayland @@ -128029,6 +128352,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -128451,11 +128781,11 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 plasma workspace This package contains the basic packages for a Plasma workspace. - mirrors://kde/stable/plasma/5.23.1/plasma-desktop-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-desktop-5.23.2.tar.xz qt5-base-devel boost-devel - breeze-style + breeze-style kdoctools-devel kactivities-stats-devel kio-devel @@ -128468,7 +128798,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kscreenlocker-devel kinit-devel kunitconversion-devel - kwin-devel + kwin-devel libX11-devel libXft-devel libxkbfile-devel @@ -128483,7 +128813,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol xorg-input-synaptics-devel pulseaudio-libs-devel fontconfig-devel - plasma-workspace-devel + plasma-workspace-devel plasma-framework-devel xorg-app-devel xkeyboard-config @@ -128531,6 +128861,9 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol qt5-phonon-devel libXcursor-devel + + af9aeecc.patch + desktop/kde/plasma/plasma-desktop/pspec.xml @@ -128586,7 +128919,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libXi libxkbfile plasma-framework - plasma-workspace + plasma-workspace libcanberra pulseaudio-libs xkeyboard-config @@ -128598,7 +128931,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol solid sonnet qt5-sql-sqlite - system-settings + system-settings ibus glib2 scim-libs @@ -128627,6 +128960,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -129020,7 +129360,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Provides integration plugins for various KDE frameworks for the wayland windowing system Provides integration plugins for various KDE frameworks for the wayland windowing system - mirrors://kde/stable/plasma/5.23.1/kwayland-integration-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kwayland-integration-5.23.2.tar.xz kguiaddons-devel kwayland-devel @@ -129060,6 +129400,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -129440,7 +129787,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Additional client tools for KDE applications Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.23.1/kdeplasma-addons-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kdeplasma-addons-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -129466,7 +129813,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kiconthemes-devel krunner-devel plasma-framework-devel - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules kconfigwidgets-devel kcoreaddons-devel @@ -129517,7 +129864,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwidgetsaddons kunitconversion kactivities - plasma-workspace + plasma-workspace ibus scim-libs xcb-util-keysyms @@ -129535,6 +129882,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -129914,7 +130268,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Breeze theme for GRUB. Breeze theme for GRUB. - mirrors://kde/stable/plasma/5.23.1/breeze-grub-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/breeze-grub-5.23.2.tar.xz desktop/kde/plasma/breeze-grub/pspec.xml @@ -129930,6 +130284,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -130296,7 +130657,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Additional client tools for KDE applications Tools based on KDE Frameworks 5 to better interact with the system - mirrors://kde/stable/plasma/5.23.1/kde-cli-tools-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kde-cli-tools-5.23.2.tar.xz qt5-base-devel qt5-x11extras-devel @@ -130324,7 +130685,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kdesignerplugin docbook-xsl kactivities-devel - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules kdeclarative-devel @@ -130352,7 +130713,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kconfig kdeclarative kactivities - plasma-workspace + plasma-workspace /usr/share @@ -130369,6 +130730,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -130749,7 +131117,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Library and components for secure lock screen architecture. Library and components for secure lock screen architecture. - mirrors://kde/stable/plasma/5.23.1/kscreenlocker-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kscreenlocker-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -130840,7 +131208,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol qt5-base-devel qt5-x11extras-devel layer-shell-qt-devel - kscreenlocker + kscreenlocker /usr/include @@ -130848,6 +131216,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -131311,6 +131686,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.22.0 @@ -131690,7 +132072,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Core components for the KDE Activity concept. System service to manage user's activities, track the usage patterns etc. - mirrors://kde/stable/plasma/5.23.1/kactivitymanagerd-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kactivitymanagerd-5.23.2.tar.xz extra-cmake-modules boost-devel @@ -131739,6 +132121,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -132112,7 +132501,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 info center KDE5 Utility that provides information about a computer system. - mirrors://kde/stable/plasma/5.23.1/kinfocenter-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kinfocenter-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -132205,6 +132594,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -132579,7 +132975,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol KSystemStats is a daemon that collects statistics about the running system KSystemStats, çalışan sistemle ilgili istatistikleri toplayan bir arka plan programıdır. KSystemStats, çalışan sistemle ilgili istatistikleri toplayan bir arka plan programıdır. - https://download.kde.org/stable/plasma/5.23.1/ksystemstats-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/ksystemstats-5.23.2.tar.xz kio-devel eudev-devel @@ -132626,6 +133022,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -132684,7 +133087,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 system settings manager System-settings is a control panel for KDE5 Plasma - mirrors://kde/stable/plasma/5.23.1/systemsettings-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/systemsettings-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -132714,7 +133117,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol extra-cmake-modules kitemmodels-devel kcrash-devel - plasma-workspace-devel + plasma-workspace-devel desktop/kde/plasma/system-settings/pspec.xml @@ -132758,6 +133161,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -133130,7 +133540,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Plugin based library to create window decorations Plugin based library to create window decorations - mirrors://kde/stable/plasma/5.23.1/kdecoration-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kdecoration-5.23.2.tar.xz qt5-base-devel ki18n-devel @@ -133158,7 +133568,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kdecorations-devel Development files for kdecorations - kdecorations + kdecorations /usr/include @@ -133167,6 +133577,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -133541,7 +133958,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma The KDE Plasma Workspace Components The KDE Plasma Workspace Components - mirrors://kde/stable/plasma/5.23.1/plasma-workspace-wallpapers-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-workspace-wallpapers-5.23.2.tar.xz https://sourceforge.net/projects/pisilinux/files/source/blue.tar.gz https://sourceforge.net/projects/pisilinux/files/source/Sweet-cat.tar.gz https://github.com/prdsmehmetstc/pisi-crocus-ancyrensis/releases/download/v1.0/pisi-crocus-ancyrensis.tar.gz @@ -133567,6 +133984,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -133945,7 +134369,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE Oxygen style KDE Oxygen style - mirrors://kde/stable/plasma/5.23.1/oxygen-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/oxygen-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -133964,8 +134388,8 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwayland-devel gtk3-devel kdoctools-devel - kdecorations-devel - plasma-workspace-devel + kdecorations-devel + plasma-workspace-devel extra-cmake-modules desktop/kde/plasma/oxygen/pspec.xml @@ -133982,7 +134406,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kguiaddons kcompletion kcoreaddons - kdecorations + kdecorations kwindowsystem qt5-x11extras kconfigwidgets @@ -134004,6 +134428,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -134377,7 +134808,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Plasma applet for audio volume management using PulseAudio. Plasma applet for audio volume management using PulseAudio. - mirrors://kde/stable/plasma/5.23.1/plasma-pa-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-pa-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -134428,6 +134859,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -134809,7 +135247,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Qt component to allow applications to make use of the Wayland wl-layer-shell protocol Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni - https://download.kde.org/stable/plasma/5.23.1/layer-shell-qt-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/layer-shell-qt-5.23.2.tar.xz wayland-devel wayland-client @@ -134840,7 +135278,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol layer-shell-qt-devel Development files for layer-shell-qt - layer-shell-qt + layer-shell-qt /usr/include @@ -134848,6 +135286,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -134906,7 +135351,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE power manager module KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - mirrors://kde/stable/plasma/5.23.1/powerdevil-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/powerdevil-5.23.2.tar.xz qt5-base-devel qt5-x11extras-devel @@ -134931,7 +135376,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kitemmodels-devel kemoticons-devel docbook-xsl - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules ki18n-devel bluez-qt-devel @@ -134985,6 +135430,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -135372,7 +135824,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma ssh-add helper that uses kwallet and kpassworddialog ssh-add helper that uses kwallet and kpassworddialog - mirrors://kde/stable/plasma/5.23.1/ksshaskpass-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/ksshaskpass-5.23.2.tar.xz qt5-base-devel kdoctools-devel @@ -135411,6 +135863,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -135785,7 +136244,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz - https://download.kde.org/stable/plasma/5.23.1/plasma-systemmonitor-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/plasma-systemmonitor-5.23.2.tar.xz cmake libgcc @@ -135805,7 +136264,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol extra-cmake-modules qt5-declarative-devel qt5-quickcontrols2-devel - libksysguard-devel + libksysguard-devel desktop/kde/plasma/plasma-systemmonitor/pspec.xml @@ -135840,6 +136299,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -135919,14 +136385,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 Plasma artwork Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.23.1/breeze-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/breeze-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel libxcb-devel qt5-x11extras-devel frameworkintegration-devel - kdecorations-devel + kdecorations-devel kcoreaddons-devel ki18n-devel kcmutils-devel @@ -135966,7 +136432,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwayland kiconthemes breeze-icons - kdecorations + kdecorations /usr/bin @@ -135991,7 +136457,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol breeze-cursors - breeze-style + breeze-style /usr/share/icons/breeze_cursors @@ -136001,13 +136467,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol breeze-wallpapers - breeze-style + breeze-style /usr/share/wallpapers/Next + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -136381,7 +136854,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Plasma applet written in QML for managing network connections Plasma applet written in QML for managing network connections - mirrors://kde/stable/plasma/5.23.1/plasma-nm-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-nm-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -136421,6 +136894,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol prison-devel kirigami-devel openconnect-devel + libproxy-devel desktop/kde/plasma/plasma-nm/pspec.xml @@ -136432,6 +136906,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kdeclarative openconnect kio + libproxy networkmanager-qt modemmanager-qt ki18n @@ -136465,6 +136940,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -136865,7 +137347,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Breeze widget theme for GTK 2 and 3 Breeze widget theme for GTK 2 and 3 - mirrors://kde/stable/plasma/5.23.1/breeze-gtk-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/breeze-gtk-5.23.2.tar.xz sassc cairo-devel @@ -136875,7 +137357,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol extra-cmake-modules libsass-devel gtk2-engines-murrine - breeze-style + breeze-style qt5-base-devel desktop/kde/plasma/breeze-gtk/pspec.xml @@ -136894,6 +137376,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -137267,7 +137756,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 hotkey daemon KDE hotkey daemon module allows you to configure custom keyboard shortcuts and mouse gestures. - mirrors://kde/stable/plasma/5.23.1/khotkeys-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/khotkeys-5.23.2.tar.xz libX11-devel qt5-base-devel @@ -137296,7 +137785,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kinit-devel kunitconversion-devel plasma-framework-devel - plasma-workspace-devel + plasma-workspace-devel libXtst-devel docbook-xsl kjobwidgets-devel @@ -137327,7 +137816,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kxmlgui libXtst kjobwidgets - plasma-workspace + plasma-workspace /usr/share @@ -137340,6 +137829,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -137714,7 +138210,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Plasma applet and services for creating encrypted vaults Şifreli kasaları oluşturmak için kullanılan plazma uygulaması ve hizmetleri Şifreli kasaları oluşturmak için kullanılan plazma uygulaması ve hizmetleri - https://download.kde.org/stable/plasma/5.23.1/plasma-vault-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/plasma-vault-5.23.2.tar.xz extra-cmake-modules qt5-base-devel @@ -137768,6 +138264,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -138071,7 +138574,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDedicated search application built on top of Baloo Dedicated search application built on top of Baloo - mirrors://kde/stable/plasma/5.23.1/milou-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/milou-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -138111,6 +138614,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -138491,7 +139001,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Adjust your monitor's gamma settings. Adjust your monitor's gamma settings. - mirrors://kde/stable/plasma/5.23.1/kgamma5-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kgamma5-5.23.2.tar.xz qt5-base-devel qt5-x11extras-devel @@ -138534,6 +139044,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -138913,7 +139430,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.misc KDE5 Config Module for SDDM KDE5 Config Module for SDDM - mirrors://kde/stable/plasma/5.23.1/sddm-kcm-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/sddm-kcm-5.23.2.tar.xz kcoreaddons-devel kdoctools-devel @@ -138978,6 +139495,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -139358,14 +139882,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Provides the interface and basic tools for the KDE workspace Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.23.1/kscreen-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kscreen-5.23.2.tar.xz qt5-base-devel qt5-sensors-devel qt5-graphicaleffects qt5-declarative-devel kglobalaccel-devel - libkscreen-devel + libkscreen-devel kconfigwidgets-devel kdbusaddons-devel ki18n-devel @@ -139414,6 +139938,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -139788,7 +140319,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Wayland server components built on KDE Frameworks KDE Çerçeveleri üzerine kurulu Wayland sunucu bileşenleri KDE Çerçeveleri üzerine kurulu Wayland sunucu bileşenleri - mirrors://kde/stable/plasma/5.23.1/kwayland-server-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kwayland-server-5.23.2.tar.xz doxygen mesa-devel @@ -139819,7 +140350,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kwayland-server-devel Development files for kwayland-server - kwayland-server + kwayland-server qt5-base-devel wayland-devel @@ -139829,6 +140360,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -139943,7 +140481,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 daemon listening for wall and write messages KDE5 daemon listening for wall and write messages - mirrors://kde/stable/plasma/5.23.1/kwrited-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kwrited-5.23.2.tar.xz qt5-base-devel ki18n-devel @@ -139974,6 +140512,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -140354,7 +140899,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 Plasma artwork Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.23.1/plasma-integration-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-integration-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -140428,7 +140973,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol plasma-integration-devel Development files for plasma-integration - plasma-integration + plasma-integration /usr/include @@ -140437,6 +140982,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -140823,7 +141375,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE and Plasma resources management GUI KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.23.1/discover-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/discover-5.23.2.tar.xz kio-devel fwupd-devel @@ -140900,7 +141452,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol discover-plugin-flatpak hardware.virtualization - discover + discover glib2 flatpak appstream-qt5 @@ -140919,6 +141471,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -141313,7 +141872,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Task management and system monitoring library Task management and system monitoring library - mirrors://kde/stable/plasma/5.23.1/libksysguard-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/libksysguard-5.23.2.tar.xz qt5-base-devel qt5-script-devel @@ -141400,7 +141959,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libksysguard-devel Development files for libksysguard - libksysguard + libksysguard /usr/include @@ -141409,6 +141968,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -141783,7 +142349,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma Applications useful for Plasma development Applications useful for Plasma development - mirrors://kde/stable/plasma/5.23.1/plasma-sdk-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/plasma-sdk-5.23.2.tar.xz qt5-base-devel qt5-webkit-devel @@ -141847,6 +142413,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -142227,7 +142800,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE 5 Bluetooth Stack Integrate the Bluetooth technology within KDE workspace and applications - mirrors://kde/stable/plasma/5.23.1/bluedevil-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/bluedevil-5.23.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -142281,6 +142854,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -142654,7 +143234,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KDE5 screen management library Dynamic display management library for KDE - mirrors://kde/stable/plasma/5.23.1/libkscreen-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/libkscreen-5.23.2.tar.xz qt5-base-devel qt5-wayland-devel @@ -142706,7 +143286,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libkscreen-devel Development files for libkscreen - libkscreen + libkscreen /usr/include @@ -142715,6 +143295,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -143089,7 +143676,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol A backend implementation for xdg-desktop-portal using Qt/KF5 A backend implementation for xdg-desktop-portal using Qt/KF5 A backend implementation for xdg-desktop-portal using Qt/KF5 - https://download.kde.org/stable/plasma/5.23.1/xdg-desktop-portal-kde-5.23.1.tar.xz + https://download.kde.org/stable/plasma/5.23.2/xdg-desktop-portal-kde-5.23.2.tar.xz extra-cmake-modules qt5-base-devel @@ -143148,6 +143735,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -143451,7 +144045,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol desktop.kde.plasma KWallet PAM integration. KWallet PAM integration. - mirrors://kde/stable/plasma/5.23.1/kwallet-pam-5.23.1.tar.xz + mirrors://kde/stable/plasma/5.23.2/kwallet-pam-5.23.2.tar.xz socat pam-devel @@ -143478,6 +144072,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-19 5.23.1 @@ -238991,13 +239592,20 @@ GNOME Session and the applications that run under it. python3-PyShellCode-devel Development headers for the python3-PyShellCode module - python3-PyShellCode + python3-PyShellCode /usr/include/ + + 2021-10-28 + 1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2020-01-09 1.0 @@ -239409,7 +240017,7 @@ GNOME Session and the applications that run under it. SQLAlchemy için bir veritabanı göç aracı. Alembic is a database migrations tool written by the author of SQLAlchemy. python3-alembic, SQLAlchemy için bir veritabanı göç aracı olan python kitaplığı sağlar. - https://pypi.org/packages/source/a/alembic/alembic-1.4.2.tar.gz + https://pypi.org/packages/source/a/alembic/alembic-1.7.4.tar.gz python3-setuptools python3-devel @@ -239434,6 +240042,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.7.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-27 1.4.2 @@ -239785,6 +240400,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 0.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-05 0.10.0 @@ -241544,11 +242166,18 @@ GNOME Session and the applications that run under it. python3-wheel - /usr/lib/python3.8/site-packages + /usr/lib/python3* /usr/share/doc/python-keyutils + + 2021-10-27 + 0.6 + Rebuild + Kamil Atlı + suvari@pisilinux.org + 2021-09-25 0.6 @@ -242307,6 +242936,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-29 1.1.0 @@ -243866,12 +244502,19 @@ GNOME Session and the applications that run under it. /usr/bin - /usr/lib/python3.8/site-packages + /usr/lib/python3* /usr/share/locale /usr/share/doc/python-docopt + + 2021-10-28 + 0.6.2 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + 2021-09-25 0.6.2 @@ -244165,6 +244808,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-05-16 1.4.4 @@ -246733,6 +247383,7 @@ GNOME Session and the applications that run under it. python-cryptography, Python geliştiricileri icin kriptografik tarifler ve ilkeler sunan bir pakettir. https://github.com/pyca/cryptography/archive/3.1.tar.gz + pip3 python3-devel openssl-devel python3-setuptools @@ -246760,13 +247411,20 @@ GNOME Session and the applications that run under it. python3-cryptography için belgelendirme dosyaları python3-cryptography-docs, python3-cryptography için belgelendirme dosyaları içerir. - python3-cryptography + python3-cryptography /usr/share/doc/python3-cryptography/html + + 2021-10-28 + 3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-30 3.1 @@ -247889,7 +248547,7 @@ GNOME Session and the applications that run under it. Python3 datetime için güçlü genişletmeler içeren python3 modülü The dateutil module provides powerful extensions to the standard datetime module, available in Python. python3-dateutil, Python3 standart datetime modülüne gelişmiş, güçlü ek özellikler katan genişleme kitaplığıdır. - https://github.com/dateutil/dateutil/archive/2.8.1.tar.gz + https://github.com/dateutil/dateutil/archive/2.8.2.tar.gz python3-setuptools-scm python3-setuptools @@ -247910,6 +248568,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 2.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2019-12-24 2.8.1 @@ -248865,10 +249530,11 @@ GNOME Session and the applications that run under it. Yazılımlarınız ve sunucularınız için bir parola hashi üreten python3 modülüdür. python-bcrypt is a good password hashing for your software and your servers python3-bcrypt, yazılımlarınız ve sunucularınız için iyi bir parola hashi üretecisidir. - https://github.com/pyca/bcrypt/archive/3.1.7.tar.gz + https://github.com/pyca/bcrypt/archive/3.2.0.tar.gz python3-setuptools python3-devel + pip3 programming/language/python3/python3-bcrypt/pspec.xml @@ -248885,6 +249551,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2019-12-13 3.1.7 @@ -249351,7 +250024,7 @@ GNOME Session and the applications that run under it. Asyncio için dosya desteği aiofiles is an Apache2 licensed library, written in Python, for handling local disk files in asyncio applications. python3-aiofiles, asyncio uygulamalarında yerel disk işlemlerini yönetebilen python ile yazılmış Apache lisanslı python kitaplığıdır. - https://github.com/Tinche/aiofiles/archive/v0.5.0.tar.gz + https://github.com/Tinche/aiofiles/archive/v0.7.0.tar.gz python3-setuptools python3-devel @@ -249371,6 +250044,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 0.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-04-22 0.5.0 @@ -249402,7 +250082,7 @@ GNOME Session and the applications that run under it. Curio - Concurrent I/O - Eşzamanlı G/Ç Curio is a library for performing concurrent I/O with coroutines in Python 3. python3-curio,Curio python3 ile eşzamanlı giriş/çıkış eşrutinleri yapabileceğiniz python3 kitaplığıdır. - https://github.com/dabeaz/curio/archive/1.2.tar.gz + https://github.com/dabeaz/curio/archive/1.5.tar.gz python3-setuptools python3-devel @@ -249422,6 +250102,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-04-07 1.2 @@ -249467,7 +250154,7 @@ GNOME Session and the applications that run under it. Sözcük katarı düzenleme uzaklıkları ve benzerliklerini çok hızlı işleyebilen bir pyton kitaplığıdır. The Levenshtein Python C extension module contains functions for fast computation of: Levenshtein (edit) distance, and edit operations, string similarity, approximate median strings, and generally string averaging, string sequence and set similarity.It supports both normal and Unicode strings. Levenshtein Python kitaplığı, Levenshtein (düzenleme) uzaklığı ve düzenleme işlemleri, sözcük katarı benzerlikleri, genel olarak söz dizisi ortalaması ve sözcük sırası gibi konuları hızlıca işleyebilen bir python kitaplığıdır. - https://files.pythonhosted.org/packages/42/a9/d1785c85ebf9b7dfacd08938dd028209c34a0ea3b1bcdb895208bd40a67d/python-Levenshtein-0.12.0.tar.gz + https://files.pythonhosted.org/packages/2a/dc/97f2b63ef0fa1fd78dcb7195aca577804f6b2b51e712516cc0e902a9a201/python-Levenshtein-0.12.2.tar.gz python3-setuptools python3-devel @@ -249486,6 +250173,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 0.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2019-12-23 0.12.0 @@ -249910,6 +250604,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 0.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-02-17 0.6.0 @@ -251700,7 +252401,7 @@ GNOME Session and the applications that run under it. 2020-11-19 5.0.6 - First build + First build. fury uglyside@yandex.ru @@ -252009,7 +252710,7 @@ GNOME Session and the applications that run under it. Ekran çıktısından ayıklama gibi uygulamalarda kolaylık sağlayan HTML/XML ayıklayıcısı Beautiful Soup parses arbitrarily invalid SGML and provides a variety of methods and Pythonic idioms for iterating and searching the parse tree. Beautiful Soup, geçersiz SGML'leri keyfi bir şekilde ayıklar ve ayıklanmış ağaç üzerinden ilerleme ve arama işlemleri için çeşitli Python deyimleri ve metodları sağlar. - https://pypi.io/packages/source/b/beautifulsoup4/beautifulsoup4-4.9.1.tar.gz + https://pypi.io/packages/source/b/beautifulsoup4/beautifulsoup4-4.10.0.tar.gz python3-devel python3-setuptools @@ -252029,6 +252730,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 4.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-05-19 4.9.1 @@ -252173,6 +252881,7 @@ GNOME Session and the applications that run under it. python3-setuptools python3-devel python3-pytest + python3-iniconfig programming/language/python3/python3-atomicwrites/pspec.xml @@ -252188,6 +252897,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-05-16 1.4.0 @@ -252376,8 +253092,9 @@ GNOME Session and the applications that run under it. Python 3.3'ten functions.lru_cache modülünün backportu Backport of functools.lru_cache from Python 3.3 as published at ActiveState. ActiveState tarafından yayımlandığı gibi Python 3.3'teki functools.lru_cache modülünün geriye dönüklüğünü sağlayan python3 kitaplığıdır. - https://github.com/jaraco/backports.functools_lru_cache/archive/v1.6.1.tar.gz + https://github.com/jaraco/backports.functools_lru_cache/archive/v1.6.4.tar.gz + pip3 python3-devel python3-setuptools python3-setuptools-scm @@ -252396,6 +253113,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 1.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2019-12-24 1.6.1 @@ -252438,6 +253162,13 @@ GNOME Session and the applications that run under it. + + 2021-10-28 + 3.11 + Rebuild + İdris Kalp + idriskalp@gmail.com + 2020-01-15 3.11 @@ -276574,7 +277305,7 @@ to create header files and sources from protocol files. Rust koduna C bağlamaları oluşturmak için bir araç https://github.com/eqrion/cbindgen/archive/v0.20.0.tar.gz - rust + rust llvm curl-devel @@ -276589,7 +277320,7 @@ to create header files and sources from protocol files. - 2021-10-17 + 2021-10-27 0.20.0 Version bump. Mustafa Cinasal @@ -280184,11 +280915,11 @@ contacts, tasks, and calendar information. python-Jinja2 blas-devel lapack-devel - ilmbase-devel disable-doc.patch fix-incorrect-template-parameter-type.patch + vigra-openexr3.patch programming/misc/vigra/pspec.xml @@ -280202,7 +280933,6 @@ contacts, tasks, and calendar information. libgcc libpng python - ilmbase openexr-libs libjpeg-turbo @@ -280217,7 +280947,7 @@ contacts, tasks, and calendar information. Development files for vigra vigra için geliştirme dosyaları - vigra + vigra /usr/include @@ -280225,6 +280955,13 @@ contacts, tasks, and calendar information. + + 2021-11-27 + 1.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-20 1.11.1 @@ -318228,13 +318965,14 @@ from a wide variety of machine architectures. https://github.com/opencv/opencv_contrib/archive/4.5.1.tar.gz cmake + hdf5-devel gtk2-devel gtk3-devel cairo-devel libv4l-devel openexr-libs jasper-devel - ilmbase-devel + imath-devel openexr-devel lapack-devel python-numpy @@ -318268,6 +319006,7 @@ from a wide variety of machine architectures. opencv gtk3 + hdf5 cairo zlib glib2 @@ -318275,7 +319014,7 @@ from a wide variety of machine architectures. libgcc libpng libv4l - ilmbase + imath libgphoto2 openexr-libs xine-lib @@ -322003,7 +322742,7 @@ from a wide variety of machine architectures. Krita ücretsiz bir dijital resim uygulamasıdır. Krita is a free and open source digital painting application. It is for artists who want to create professional work from start to end. Krita, ücretsiz ve açık kaynaklı bir dijital resim uygulamasıdır. Baştan sona profesyonel işler yaratmak isteyen sanatçılar içindir. - https://download.kde.org/stable/krita/4.4.2/krita-4.4.2.tar.xz + https://download.kde.org/stable/krita/4.4.8/krita-4.4.8.tar.xz eigen3 kio-devel @@ -322044,7 +322783,12 @@ from a wide variety of machine architectures. qt5-svg-devel qt5-designer-devel qt5-x11extras-devel + opencolorio-devel + + krita-openexr3.patch + krita-opencolorio2.patch + editor/krita/pspec.xml @@ -322066,7 +322810,6 @@ from a wide variety of machine architectures. quazip libgcc python3 - ilmbase kconfig qt5-svg karchive @@ -322086,6 +322829,7 @@ from a wide variety of machine architectures. qt5-declarative qt5-svg qt5-designer + opencolorio /etc @@ -322099,6 +322843,13 @@ from a wide variety of machine architectures. + + 2021-10-27 + 4.4.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-03-18 4.4.2 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 4fa2f4ca27..b4e0f8d5ea 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -bec2fa7bfac768817bd3d5983a9f86f69252c728 \ No newline at end of file +8cd62828d0dbdda7c799815b856dfbceff5b25fe \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 5f3e7d9263..8f4fa30ff8 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 b15138b763..d8359f5e4c 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -9fafd84a3b57cebe66f51c33accfcd255727302d \ No newline at end of file +94dc93b9f56d1f446f10fd3db169ba302e616b4b \ No newline at end of file